2016-12-28 20:16:27 -05:00
|
|
|
// Contents
|
|
|
|
//
|
|
|
|
// Navbar
|
|
|
|
// Navbar brand
|
|
|
|
// Navbar nav
|
|
|
|
// Navbar text
|
|
|
|
// Navbar divider
|
|
|
|
// Responsive navbar
|
|
|
|
// Navbar position
|
|
|
|
// Navbar themes
|
|
|
|
|
|
|
|
|
|
|
|
// Navbar
|
2014-12-02 17:02:35 -05:00
|
|
|
//
|
|
|
|
// Provide a static navbar from which we expand to create full-width, fixed, and
|
|
|
|
// other navbar variations.
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
position: relative;
|
2016-12-28 01:14:30 -05:00
|
|
|
display: flex;
|
2016-12-28 19:49:55 -05:00
|
|
|
flex-direction: column;
|
2016-12-21 15:27:18 -05:00
|
|
|
padding: $navbar-padding-y $navbar-padding-x;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2016-12-21 03:40:31 -05:00
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
// Navbar brand
|
2015-08-18 02:43:59 -04:00
|
|
|
//
|
2016-12-28 20:16:27 -05:00
|
|
|
// Used for brand, project, or site names.
|
2014-12-02 17:02:35 -05:00
|
|
|
|
|
|
|
.navbar-brand {
|
2016-12-21 03:40:31 -05:00
|
|
|
display: inline-block;
|
2016-12-21 20:51:49 -05:00
|
|
|
padding-top: .25rem;
|
|
|
|
padding-bottom: .25rem;
|
2016-12-21 17:16:04 -05:00
|
|
|
margin-right: $navbar-padding-x;
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: $font-size-lg;
|
2016-10-18 21:47:08 -04:00
|
|
|
line-height: inherit;
|
2016-12-21 17:16:04 -05:00
|
|
|
white-space: nowrap;
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-18 02:43:59 -04:00
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
2016-12-21 16:19:14 -05:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-18 03:59:44 -04:00
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
// Navbar nav
|
|
|
|
//
|
|
|
|
// Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).
|
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column; // cannot use `inherit` to get the `.navbar`s value
|
|
|
|
padding-left: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
padding-right: 0;
|
2016-12-28 20:46:35 -05:00
|
|
|
padding-left: 0;
|
2015-08-18 03:59:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-15 15:29:56 -04:00
|
|
|
// Navbar text
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
.navbar-text {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: .425rem;
|
|
|
|
padding-bottom: .425rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
// Responsive navbar
|
2014-12-02 17:02:35 -05:00
|
|
|
//
|
2016-12-28 20:16:27 -05:00
|
|
|
// Custom styles for responsive collapsing and toggling of navbar contents.
|
|
|
|
// Powered by the collapse Bootstrap JavaScript plugin.
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2017-01-05 17:24:40 -05:00
|
|
|
// Button for toggling the navbar when in its collapsed state
|
2014-12-02 17:02:35 -05:00
|
|
|
.navbar-toggler {
|
2016-12-28 19:50:07 -05:00
|
|
|
align-self: flex-start; // Prevent toggler from growing to full width when it's the only visible navbar child
|
2016-05-13 11:15:48 -04:00
|
|
|
padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
|
2016-05-13 00:50:17 -04:00
|
|
|
font-size: $navbar-toggler-font-size;
|
2015-04-29 15:00:11 -04:00
|
|
|
line-height: 1;
|
2016-12-22 01:10:44 -05:00
|
|
|
background: transparent; // remove default button style
|
|
|
|
border: $border-width solid transparent; // remove default button style
|
2016-05-13 00:50:17 -04:00
|
|
|
@include border-radius($navbar-toggler-border-radius);
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 01:10:44 -05:00
|
|
|
// Keep as a separate element so folks can easily override it with another icon
|
|
|
|
// or image file as needed.
|
|
|
|
.navbar-toggler-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
vertical-align: middle;
|
2016-12-22 01:20:22 -05:00
|
|
|
content: "";
|
2016-12-22 01:10:44 -05:00
|
|
|
background: no-repeat center center;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
// Use `position` on the toggler to prevent it from being auto placed as a flex
|
|
|
|
// item and allow easy placement.
|
|
|
|
.navbar-toggler-left {
|
|
|
|
position: absolute;
|
|
|
|
left: $navbar-padding-x;
|
|
|
|
}
|
|
|
|
.navbar-toggler-right {
|
|
|
|
position: absolute;
|
|
|
|
right: $navbar-padding-x;
|
|
|
|
}
|
2015-04-18 21:12:10 -04:00
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
// Generate series of `.navbar-toggleable-*` responsive classes for configuring
|
|
|
|
// where your navbar collapses.
|
|
|
|
.navbar-toggleable {
|
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
$next: breakpoint-next($breakpoint, $grid-breakpoints);
|
|
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
2016-12-21 15:27:18 -05:00
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
&#{$infix} {
|
|
|
|
@include media-breakpoint-down($breakpoint) {
|
|
|
|
.navbar-nav {
|
|
|
|
.dropdown-menu {
|
|
|
|
position: static;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .container {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up($next) {
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
padding-right: .5rem;
|
|
|
|
padding-left: .5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// For nesting containers, have to redeclare for alignment purposes
|
|
|
|
> .container {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
// scss-lint:disable ImportantRule
|
|
|
|
.navbar-collapse {
|
|
|
|
display: flex !important;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
// scss-lint:enable ImportantRule
|
|
|
|
|
|
|
|
.navbar-toggler {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-21 15:27:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
|
|
|
|
// Navbar themes
|
|
|
|
//
|
|
|
|
// Styles for switching between navbars with light or dark background.
|
|
|
|
|
2015-08-18 03:46:29 -04:00
|
|
|
// Dark links against a light background
|
|
|
|
.navbar-light {
|
2016-05-12 14:24:09 -04:00
|
|
|
.navbar-brand,
|
|
|
|
.navbar-toggler {
|
2015-08-18 03:46:29 -04:00
|
|
|
color: $navbar-light-active-color;
|
2014-12-19 21:35:10 -05:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2015-08-18 03:46:29 -04:00
|
|
|
color: $navbar-light-active-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 03:46:29 -04:00
|
|
|
.navbar-nav {
|
|
|
|
.nav-link {
|
|
|
|
color: $navbar-light-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-18 03:46:29 -04:00
|
|
|
@include hover-focus {
|
|
|
|
color: $navbar-light-hover-color;
|
|
|
|
}
|
2016-11-26 03:19:13 -05:00
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
color: $navbar-light-disabled-color;
|
|
|
|
}
|
2015-08-18 03:46:29 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-18 03:46:29 -04:00
|
|
|
.open > .nav-link,
|
|
|
|
.active > .nav-link,
|
|
|
|
.nav-link.open,
|
|
|
|
.nav-link.active {
|
2016-12-28 17:51:04 -05:00
|
|
|
color: $navbar-light-active-color;
|
2015-08-18 03:46:29 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 03:59:44 -04:00
|
|
|
|
2016-09-12 01:25:42 -04:00
|
|
|
.navbar-toggler {
|
2016-10-18 00:05:22 -04:00
|
|
|
border-color: $navbar-light-toggler-border;
|
2016-09-12 01:25:42 -04:00
|
|
|
}
|
|
|
|
|
2016-12-22 01:10:44 -05:00
|
|
|
.navbar-toggler-icon {
|
|
|
|
background-image: $navbar-light-toggler-bg;
|
|
|
|
}
|
|
|
|
|
2016-10-30 14:37:47 -04:00
|
|
|
.navbar-text {
|
|
|
|
color: $navbar-light-color;
|
|
|
|
}
|
2015-08-18 03:46:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// White links against a dark background
|
2016-12-22 00:40:26 -05:00
|
|
|
.navbar-inverse {
|
2016-05-12 14:24:09 -04:00
|
|
|
.navbar-brand,
|
|
|
|
.navbar-toggler {
|
2016-12-22 00:40:26 -05:00
|
|
|
color: $navbar-inverse-active-color;
|
2015-08-18 02:43:59 -04:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2016-12-22 00:40:26 -05:00
|
|
|
color: $navbar-inverse-active-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav {
|
2015-08-18 02:43:59 -04:00
|
|
|
.nav-link {
|
2016-12-22 00:40:26 -05:00
|
|
|
color: $navbar-inverse-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2016-12-22 00:40:26 -05:00
|
|
|
color: $navbar-inverse-hover-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
2016-11-26 03:19:13 -05:00
|
|
|
|
|
|
|
&.disabled {
|
2016-12-22 00:40:26 -05:00
|
|
|
color: $navbar-inverse-disabled-color;
|
2016-11-26 03:19:13 -05:00
|
|
|
}
|
2015-08-18 02:43:59 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-18 02:43:59 -04:00
|
|
|
.open > .nav-link,
|
|
|
|
.active > .nav-link,
|
|
|
|
.nav-link.open,
|
|
|
|
.nav-link.active {
|
2016-12-28 17:51:04 -05:00
|
|
|
color: $navbar-inverse-active-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 03:59:44 -04:00
|
|
|
|
2016-09-12 01:25:42 -04:00
|
|
|
.navbar-toggler {
|
2016-12-22 00:40:26 -05:00
|
|
|
border-color: $navbar-inverse-toggler-border;
|
2016-09-12 01:25:42 -04:00
|
|
|
}
|
|
|
|
|
2016-12-22 01:10:44 -05:00
|
|
|
.navbar-toggler-icon {
|
|
|
|
background-image: $navbar-inverse-toggler-bg;
|
|
|
|
}
|
|
|
|
|
2016-10-30 14:37:47 -04:00
|
|
|
.navbar-text {
|
2016-12-22 00:40:26 -05:00
|
|
|
color: $navbar-inverse-color;
|
2016-10-30 14:37:47 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|