mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
107 lines
2.1 KiB
SCSS
107 lines
2.1 KiB
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
.bd-sidebar {
|
|
order: 0;
|
|
}
|
|
|
|
.bd-links {
|
|
@include media-breakpoint-up(md) {
|
|
@supports (position: sticky) {
|
|
position: sticky;
|
|
top: 5rem;
|
|
z-index: 1000;
|
|
}
|
|
}
|
|
|
|
// Override collapse behaviors
|
|
@include media-breakpoint-up(md) {
|
|
display: block !important;
|
|
}
|
|
}
|
|
|
|
.bd-search {
|
|
position: relative; // To contain the Algolia search
|
|
|
|
.form-control:focus {
|
|
border-color: $bd-purple-bright;
|
|
box-shadow: 0 0 0 3px rgba($bd-purple-bright, .25);
|
|
}
|
|
}
|
|
|
|
.bd-search-docs-toggle {
|
|
line-height: 1;
|
|
color: $gray-900;
|
|
}
|
|
|
|
.bd-sidenav {
|
|
display: none;
|
|
}
|
|
|
|
.bd-sidenav-group-link {
|
|
padding: .25rem .625rem .25rem .5rem;
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, .65);
|
|
@include border-radius(.25rem);
|
|
|
|
> * { pointer-events: none; }
|
|
|
|
&:hover {
|
|
color: rgba(0, 0, 0, .85);
|
|
text-decoration: none;
|
|
background-color: rgba($bd-purple-bright, .1);
|
|
}
|
|
}
|
|
|
|
.bd-sidenav-group {
|
|
&.has-children .bd-sidenav-group-link::before {
|
|
display: inline-block;
|
|
width: .875rem;
|
|
height: .875rem;
|
|
margin-right: .25rem;
|
|
content: "";
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
opacity: .5;
|
|
}
|
|
|
|
&.active {
|
|
.bd-sidenav-group-link::before {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
> .bd-sidenav-group-link {
|
|
color: rgba(0, 0, 0, .85);
|
|
}
|
|
|
|
> .bd-sidenav {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
// All levels of nav
|
|
.bd-sidebar .nav {
|
|
padding-left: 1.25rem;
|
|
|
|
> li > a {
|
|
display: inline-block;
|
|
padding: .25rem .5rem;
|
|
@include font-size(.875rem);
|
|
color: rgba(0, 0, 0, .65);
|
|
@include border-radius(.25rem);
|
|
|
|
&:hover {
|
|
color: rgba(0, 0, 0, .85);
|
|
text-decoration: none;
|
|
background-color: rgba($bd-purple-bright, .1);
|
|
}
|
|
}
|
|
|
|
> .active > a,
|
|
> .active:hover > a {
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, .85);
|
|
}
|
|
}
|