0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-12 00:08:59 +01:00
Bootstrap/site/docs/4.3/assets/scss/_nav.scss

72 lines
1.3 KiB
SCSS
Raw Normal View History

//
// Main navbar
//
.bd-navbar {
2017-05-28 03:12:45 +02:00
min-height: 4rem;
2017-05-28 05:10:35 +02:00
background-color: $bd-purple;
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
2016-07-25 21:30:10 +02:00
2017-05-29 02:49:46 +02:00
@include media-breakpoint-down(md) {
padding-right: .5rem;
padding-left: .5rem;
2017-05-29 02:49:46 +02:00
.navbar-nav-scroll {
max-width: 100%;
height: 2.5rem;
margin-top: .25rem;
2017-06-18 05:36:49 +02:00
overflow: hidden;
2017-05-29 02:49:46 +02:00
.navbar-nav {
padding-bottom: 2rem;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}
}
}
@include media-breakpoint-up(md) {
@supports (position: sticky) {
position: sticky;
top: 0;
z-index: 1071; // over everything in bootstrap
}
2017-05-29 02:49:46 +02:00
}
.navbar-nav {
.nav-link {
2017-05-29 02:49:46 +02:00
padding-right: .5rem;
padding-left: .5rem;
2017-05-28 05:10:35 +02:00
color: $bd-purple-light;
&.active,
2017-05-28 05:10:35 +02:00
&:hover {
color: $white;
background-color: transparent;
}
&.active {
font-weight: 600;
}
}
}
2015-08-19 03:45:08 +02:00
2017-05-28 02:31:55 +02:00
.navbar-nav-svg {
display: inline-block;
width: 1rem;
height: 1rem;
vertical-align: text-top;
}
2015-08-19 03:45:08 +02:00
.dropdown-menu {
@include font-size(.875rem);
2016-12-29 22:22:45 +01:00
}
2017-05-30 22:59:42 +02:00
.dropdown-item.active {
font-weight: 600;
color: $gray-900;
2019-07-21 16:53:36 +02:00
background: escape-svg($dropdown-active-icon) no-repeat .4rem .6rem/.75rem .75rem;
2017-05-30 22:59:42 +02:00
}
}