mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
b6b96c174b
- Simplify display headings example markup - Simplify footer styles - Remove z-indices hacks in the docs - Remove redundant modal styling in docs - Use `escape-svg()` to escape docs sidebar chevron - Simplify sidebar chevron code - Cleanup masthead css & fix column width between `md` & `lg` - Easier to download logo's with the `download` attribute. - Changed some color codes into variables - Cleanup brands css
43 lines
908 B
SCSS
43 lines
908 B
SCSS
.bd-subnavbar {
|
|
background-color: rgba(#fff, .75);
|
|
backdrop-filter: blur(1rem);
|
|
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .15);
|
|
|
|
.dropdown-menu {
|
|
@include font-size(.875rem);
|
|
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05);
|
|
}
|
|
|
|
.dropdown-item.active {
|
|
font-weight: 600;
|
|
color: $gray-900;
|
|
background: escape-svg($dropdown-active-icon) no-repeat .4rem .6rem/.75rem .75rem;
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
@supports (position: sticky) {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: $zindex-sticky;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bd-search {
|
|
position: relative; // To contain the Algolia search
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
width: 100%;
|
|
}
|
|
|
|
.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;
|
|
}
|