2014-12-02 14:02:35 -08:00
|
|
|
// Wrapper and base class
|
|
|
|
//
|
|
|
|
// Provide a static navbar from which we expand to create full-width, fixed, and
|
|
|
|
// other navbar variations.
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
position: relative;
|
2015-12-08 01:30:23 -08:00
|
|
|
padding: $navbar-padding-y $navbar-padding-x;
|
2014-12-11 14:47:10 -08:00
|
|
|
@include clearfix;
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2014-12-29 13:40:19 -08:00
|
|
|
@include media-breakpoint-up(sm) {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include border-radius($navbar-border-radius);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Navbar alignment options
|
|
|
|
//
|
|
|
|
// Display the navbar across the entirety of the page or fixed it to the top or
|
|
|
|
// bottom of the page.
|
|
|
|
|
2015-09-05 20:58:28 -07:00
|
|
|
// A static, full width modifier with no rounded corners.
|
|
|
|
.navbar-full {
|
2014-12-02 14:02:35 -08:00
|
|
|
z-index: $zindex-navbar;
|
|
|
|
|
2014-12-29 13:40:19 -08:00
|
|
|
@include media-breakpoint-up(sm) {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include border-radius(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix the top/bottom navbars when screen real estate supports it
|
|
|
|
.navbar-fixed-top,
|
|
|
|
.navbar-fixed-bottom {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: $zindex-navbar-fixed;
|
|
|
|
|
|
|
|
// Undo the rounded corners
|
2014-12-29 13:40:19 -08:00
|
|
|
@include media-breakpoint-up(sm) {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include border-radius(0);
|
|
|
|
}
|
|
|
|
}
|
2014-12-11 14:47:10 -08:00
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
.navbar-fixed-top {
|
|
|
|
top: 0;
|
|
|
|
}
|
2014-12-11 14:47:10 -08:00
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
.navbar-fixed-bottom {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2015-04-13 19:00:59 -07:00
|
|
|
.navbar-sticky-top {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: $zindex-navbar-sticky;
|
2015-05-27 15:49:55 -07:00
|
|
|
width: 100%;
|
2015-04-13 19:00:59 -07:00
|
|
|
|
|
|
|
// Undo the rounded corners
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
@include border-radius(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-17 23:43:59 -07:00
|
|
|
//
|
2014-12-02 14:02:35 -08:00
|
|
|
// Brand/project name
|
2015-08-17 23:43:59 -07:00
|
|
|
//
|
2014-12-02 14:02:35 -08:00
|
|
|
|
|
|
|
.navbar-brand {
|
2016-10-17 22:08:49 -07:00
|
|
|
float: left;
|
|
|
|
padding-top: $navbar-brand-padding-y;
|
2016-02-16 23:11:25 -08:00
|
|
|
padding-bottom: $navbar-brand-padding-y;
|
2016-10-17 22:08:49 -07:00
|
|
|
margin-right: 1rem;
|
2014-12-02 14:02:35 -08:00
|
|
|
font-size: $font-size-lg;
|
2016-10-18 18:47:08 -07:00
|
|
|
line-height: inherit;
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-17 23:43:59 -07:00
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-18 00:59:44 -07:00
|
|
|
.navbar-divider {
|
|
|
|
float: left;
|
2016-02-16 22:48:41 -08:00
|
|
|
width: $border-width;
|
2016-05-13 08:15:48 -07:00
|
|
|
padding-top: $navbar-divider-padding-y;
|
|
|
|
padding-bottom: $navbar-divider-padding-y;
|
2015-12-08 01:30:23 -08:00
|
|
|
margin-right: $navbar-padding-x;
|
|
|
|
margin-left: $navbar-padding-x;
|
2015-08-23 01:00:22 -07:00
|
|
|
overflow: hidden;
|
2015-08-18 00:59:44 -07:00
|
|
|
|
2015-08-19 16:31:31 -04:00
|
|
|
&::before {
|
2015-08-23 01:00:22 -07:00
|
|
|
content: "\00a0";
|
2015-08-18 00:59:44 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-15 12:29:56 -07:00
|
|
|
// Navbar text
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
.navbar-text {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: .425rem;
|
|
|
|
padding-bottom: .425rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
// Navbar toggle
|
|
|
|
//
|
|
|
|
// Custom button for toggling the `.navbar-collapse`, powered by the collapse
|
2015-06-22 17:37:52 -07:00
|
|
|
// Bootstrap JavaScript plugin.
|
2014-12-02 14:02:35 -08:00
|
|
|
|
|
|
|
.navbar-toggler {
|
2016-09-11 22:25:42 -07:00
|
|
|
width: 2.5em;
|
|
|
|
height: 2em;
|
2016-05-13 08:15:48 -07:00
|
|
|
padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
|
2016-05-12 21:50:17 -07:00
|
|
|
font-size: $navbar-toggler-font-size;
|
2015-04-29 12:00:11 -07:00
|
|
|
line-height: 1;
|
2016-09-11 22:25:42 -07:00
|
|
|
background: transparent no-repeat center center;
|
|
|
|
background-size: 24px 24px;
|
2015-08-17 23:43:59 -07:00
|
|
|
border: $border-width solid transparent;
|
2016-05-12 21:50:17 -07:00
|
|
|
@include border-radius($navbar-toggler-border-radius);
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
2014-12-02 14:02:35 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-06 12:28:18 -08:00
|
|
|
// scss-lint:disable ImportantRule
|
2015-04-16 18:50:32 -07:00
|
|
|
.navbar-toggleable {
|
2016-10-16 21:51:26 -07:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
2016-10-17 21:05:07 -07:00
|
|
|
$next: breakpoint-next($breakpoint, $grid-breakpoints);
|
2016-10-17 22:08:49 -07:00
|
|
|
|
2016-10-16 21:51:26 -07:00
|
|
|
&-#{$breakpoint} {
|
|
|
|
@include clearfix;
|
|
|
|
|
2016-10-17 22:08:49 -07:00
|
|
|
@include media-breakpoint-down($breakpoint) {
|
2016-10-16 21:51:26 -07:00
|
|
|
.navbar-brand {
|
2016-10-17 22:08:49 -07:00
|
|
|
display: block;
|
2016-10-17 22:17:02 -07:00
|
|
|
float: none;
|
2016-10-17 22:08:49 -07:00
|
|
|
margin-top: .5rem;
|
|
|
|
margin-right: 0;
|
2016-10-16 21:51:26 -07:00
|
|
|
}
|
2016-10-17 22:08:49 -07:00
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
margin-top: .5rem;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
position: static;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up($next) {
|
|
|
|
display: block;
|
2016-10-16 21:51:26 -07:00
|
|
|
}
|
2015-09-02 22:08:52 +01:00
|
|
|
}
|
|
|
|
}
|
2015-04-16 18:50:32 -07:00
|
|
|
}
|
2016-02-06 12:28:18 -08:00
|
|
|
// scss-lint:enable ImportantRule
|
2015-04-16 18:50:32 -07:00
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-17 23:43:59 -07:00
|
|
|
// Navigation
|
2015-06-22 16:30:31 -07:00
|
|
|
//
|
2015-08-17 23:43:59 -07:00
|
|
|
// Custom navbar navigation built on the base `.nav` styles.
|
2015-04-18 18:12:10 -07:00
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
.nav-item {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
display: block;
|
2015-08-18 01:06:14 -07:00
|
|
|
padding-top: .425rem;
|
|
|
|
padding-bottom: .425rem;
|
|
|
|
|
|
|
|
+ .nav-link {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item + .nav-item {
|
|
|
|
margin-left: 1rem;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 00:46:29 -07:00
|
|
|
// Dark links against a light background
|
|
|
|
.navbar-light {
|
2016-05-12 11:24:09 -07:00
|
|
|
.navbar-brand,
|
|
|
|
.navbar-toggler {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-light-active-color;
|
2014-12-19 18:35:10 -08:00
|
|
|
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-light-active-color;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 00:46:29 -07:00
|
|
|
.navbar-nav {
|
|
|
|
.nav-link {
|
|
|
|
color: $navbar-light-color;
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-18 00:46:29 -07:00
|
|
|
@include hover-focus {
|
|
|
|
color: $navbar-light-hover-color;
|
|
|
|
}
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-18 00:46:29 -07:00
|
|
|
.open > .nav-link,
|
|
|
|
.active > .nav-link,
|
|
|
|
.nav-link.open,
|
|
|
|
.nav-link.active {
|
|
|
|
@include plain-hover-focus {
|
|
|
|
color: $navbar-light-active-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-18 00:59:44 -07:00
|
|
|
|
2016-09-11 22:25:42 -07:00
|
|
|
.navbar-toggler {
|
|
|
|
background-image: $navbar-light-toggler-bg;
|
2016-10-17 21:05:22 -07:00
|
|
|
border-color: $navbar-light-toggler-border;
|
2016-09-11 22:25:42 -07:00
|
|
|
}
|
|
|
|
|
2015-08-18 00:59:44 -07:00
|
|
|
.navbar-divider {
|
|
|
|
background-color: rgba(0,0,0,.075);
|
|
|
|
}
|
2016-10-30 21:57:04 +03:00
|
|
|
|
2016-10-30 21:37:47 +03:00
|
|
|
.navbar-text {
|
|
|
|
color: $navbar-light-color;
|
|
|
|
}
|
2015-08-18 00:46:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// White links against a dark background
|
|
|
|
.navbar-dark {
|
2016-05-12 11:24:09 -07:00
|
|
|
.navbar-brand,
|
|
|
|
.navbar-toggler {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-dark-active-color;
|
2015-08-17 23:43:59 -07:00
|
|
|
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-dark-active-color;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav {
|
2015-08-17 23:43:59 -07:00
|
|
|
.nav-link {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-dark-color;
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-dark-hover-color;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
2015-08-17 23:43:59 -07:00
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-17 23:43:59 -07:00
|
|
|
.open > .nav-link,
|
|
|
|
.active > .nav-link,
|
|
|
|
.nav-link.open,
|
|
|
|
.nav-link.active {
|
|
|
|
@include plain-hover-focus {
|
2015-08-18 00:46:29 -07:00
|
|
|
color: $navbar-dark-active-color;
|
2015-06-22 23:24:55 -07:00
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 00:59:44 -07:00
|
|
|
|
2016-09-11 22:25:42 -07:00
|
|
|
.navbar-toggler {
|
|
|
|
background-image: $navbar-dark-toggler-bg;
|
2016-10-17 21:05:22 -07:00
|
|
|
border-color: $navbar-dark-toggler-border;
|
2016-09-11 22:25:42 -07:00
|
|
|
}
|
|
|
|
|
2015-08-18 00:59:44 -07:00
|
|
|
.navbar-divider {
|
|
|
|
background-color: rgba(255,255,255,.075);
|
|
|
|
}
|
2016-10-30 21:51:16 +03:00
|
|
|
|
2016-10-30 21:37:47 +03:00
|
|
|
.navbar-text {
|
|
|
|
color: $navbar-dark-color;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
2016-07-26 20:16:23 -07:00
|
|
|
|
|
|
|
|
|
|
|
// Navbar toggleable
|
|
|
|
//
|
|
|
|
// Custom override for collapse plugin in navbar.
|
|
|
|
|
|
|
|
.navbar-toggleable {
|
|
|
|
&-xs {
|
|
|
|
@include clearfix;
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
|
|
.navbar-nav .nav-item {
|
|
|
|
float: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-sm {
|
|
|
|
@include clearfix;
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
.navbar-nav .nav-item {
|
|
|
|
float: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-md {
|
|
|
|
@include clearfix;
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
.navbar-nav .nav-item {
|
|
|
|
float: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|