fix: more nesting

pull/108/head
nevfy 2024-02-04 23:35:17 +04:00
parent 4f786bf803
commit 34d991ff50
2 changed files with 18 additions and 22 deletions

View File

@ -88,21 +88,20 @@
} }
body { body {
background-color: whitesmoke; background-color: $bg-color;
} }
a.nav-link.sp-coming-soon { a.nav-link.sp-coming-soon {
pointer-events: none; pointer-events: none;
cursor: default; cursor: default;
color: #616161; color: #616161;
&::after {
content: "Coming soon!";
display: inline-block;
background-color: #616161;
color: $dark;
margin-left: .5rem;
padding: .1rem .5rem;
border-radius: .1rem;
}
} }
a.nav-link.sp-coming-soon::after {
content: "Coming soon!";
display: inline-block;
background-color: #616161;
color: $dark;
margin-left: .5rem;
padding: .1rem .5rem;
border-radius: .1rem;
}

View File

@ -7,10 +7,10 @@
.nav-link { .nav-link {
color: $secondary !important; color: $secondary !important;
font-weight: 600; font-weight: 600;
} &:hover, &.nav-link.active{
.nav-link:hover, .nav-link.active{ background-color: $gray;
background-color: $gray; border-radius: 5px;
border-radius: 5px; }
} }
.td-navbar-nav-scroll { .td-navbar-nav-scroll {
height: unset !important; height: unset !important;
@ -32,10 +32,9 @@
ul.ul-2>.td-sidebar-nav__section-title a { ul.ul-2>.td-sidebar-nav__section-title a {
color: $gray !important; color: $gray !important;
font-weight: 400; font-weight: 400;
} &:hover {
color: $blue !important;
ul.ul-2>.td-sidebar-nav__section-title a:hover { }
color: $blue !important;
} }
.td-toc { .td-toc {
@ -55,6 +54,7 @@ ul.ul-2>.td-sidebar-nav__section-title a:hover {
.tab-pane { .tab-pane {
border: 1px solid rgba(0, 0, 0, 0.125) !important; border: 1px solid rgba(0, 0, 0, 0.125) !important;
border-radius: 0px .25rem .25rem .25rem; border-radius: 0px .25rem .25rem .25rem;
max-width: 100% !important;
} }
ul li, ol li { ul li, ol li {
margin-bottom: unset !important; margin-bottom: unset !important;
@ -62,9 +62,6 @@ ul.ul-2>.td-sidebar-nav__section-title a:hover {
div { div {
transition: none; transition: none;
} }
.tab-pane {
max-width: 100% !important;
}
} }
.nav-tabs { .nav-tabs {