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