2016-12-28 20:16:27 -05:00
|
|
|
// Contents
|
|
|
|
//
|
|
|
|
// Navbar
|
|
|
|
// Navbar brand
|
|
|
|
// Navbar nav
|
|
|
|
// Navbar text
|
|
|
|
// 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;
|
2017-03-21 00:23:11 -04:00
|
|
|
flex-wrap: wrap; // allow us to do the line break for collapsing content
|
2017-04-08 06:57:45 -04:00
|
|
|
align-items: center;
|
2017-03-21 00:23:11 -04:00
|
|
|
justify-content: space-between; // space out brand from logo
|
2019-10-27 23:26:52 -04:00
|
|
|
padding-top: $navbar-padding-y;
|
|
|
|
padding-right: $navbar-padding-x; // default: null
|
|
|
|
padding-bottom: $navbar-padding-y;
|
|
|
|
padding-left: $navbar-padding-x; // default: null
|
2020-04-14 10:28:20 -04:00
|
|
|
@include gradient-bg();
|
2017-01-21 16:06:00 -05:00
|
|
|
|
2017-03-21 00:23:11 -04:00
|
|
|
// Because flex properties aren't inherited, we need to redeclare these first
|
2018-07-09 20:59:22 -04:00
|
|
|
// few properties so that content nested within behave properly.
|
2020-01-07 15:32:46 -05:00
|
|
|
// The `flex-wrap` property is inherited to simplify the expanded navbars
|
2019-08-05 15:12:16 -04:00
|
|
|
%container-flex-properties {
|
2017-03-21 00:23:11 -04:00
|
|
|
display: flex;
|
2020-01-07 15:32:46 -05:00
|
|
|
flex-wrap: inherit;
|
2017-04-08 06:57:45 -04:00
|
|
|
align-items: center;
|
2017-03-21 00:23:11 -04:00
|
|
|
justify-content: space-between;
|
2017-01-21 16:06:00 -05:00
|
|
|
}
|
2019-08-05 15:12:16 -04:00
|
|
|
|
2020-01-07 15:32:46 -05:00
|
|
|
> .container,
|
|
|
|
> .container-fluid {
|
2019-08-05 15:12:16 -04:00
|
|
|
@extend %container-flex-properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
@each $breakpoint, $container-max-width in $container-max-widths {
|
|
|
|
> .container#{breakpoint-infix($breakpoint, $container-max-widths)} {
|
|
|
|
@extend %container-flex-properties;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2017-01-14 01:52:05 -05:00
|
|
|
padding-top: $navbar-brand-padding-y;
|
|
|
|
padding-bottom: $navbar-brand-padding-y;
|
2020-06-26 10:06:20 -04:00
|
|
|
margin-right: $navbar-brand-margin-end;
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($navbar-brand-font-size);
|
2020-03-31 14:42:38 -04:00
|
|
|
text-decoration: if($link-decoration == none, null, none);
|
2016-12-21 17:16:04 -05:00
|
|
|
white-space: nowrap;
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2020-03-31 14:42:38 -04:00
|
|
|
text-decoration: if($link-hover-decoration == underline, none, null);
|
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
|
|
|
}
|
2017-05-22 10:20:58 -04:00
|
|
|
|
|
|
|
.dropdown-menu {
|
2017-06-04 11:56:51 -04:00
|
|
|
position: static;
|
2017-05-22 10:20:58 -04:00
|
|
|
}
|
2015-08-18 03:59:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-15 15:29:56 -04:00
|
|
|
// Navbar text
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
.navbar-text {
|
2017-01-14 01:52:05 -05:00
|
|
|
padding-top: $nav-link-padding-y;
|
|
|
|
padding-bottom: $nav-link-padding-y;
|
2016-05-15 15:29:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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-03-21 00:23:11 -04:00
|
|
|
// When collapsed, prevent the toggleable navbar contents from appearing in
|
2018-07-09 20:59:22 -04:00
|
|
|
// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`
|
2017-03-21 00:23:11 -04:00
|
|
|
// on the `.navbar` parent.
|
|
|
|
.navbar-collapse {
|
2021-02-09 13:54:37 -05:00
|
|
|
flex-basis: 100%;
|
2021-01-27 14:27:02 -05:00
|
|
|
flex-grow: 1;
|
2017-08-04 18:15:25 -04:00
|
|
|
// For always expanded or extra full navbars, ensure content aligns itself
|
|
|
|
// properly vertically. Can be easily overridden with flex utilities.
|
|
|
|
align-items: center;
|
2017-03-21 00:23:11 -04: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-05-13 11:15:48 -04:00
|
|
|
padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($navbar-toggler-font-size);
|
2015-04-29 15:00:11 -04:00
|
|
|
line-height: 1;
|
2017-11-05 19:23:36 -05:00
|
|
|
background-color: transparent; // remove default button style
|
2016-12-22 01:10:44 -05:00
|
|
|
border: $border-width solid transparent; // remove default button style
|
2016-05-13 00:50:17 -04:00
|
|
|
@include border-radius($navbar-toggler-border-radius);
|
2020-01-28 07:28:44 -05:00
|
|
|
@include transition($navbar-toggler-transition);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
&:focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
text-decoration: none;
|
2020-01-28 07:28:44 -05:00
|
|
|
outline: 0;
|
|
|
|
box-shadow: 0 0 0 $navbar-toggler-focus-width;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2019-12-25 11:38:41 -05:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 100%;
|
2016-12-22 01:10:44 -05:00
|
|
|
}
|
|
|
|
|
2021-01-19 00:32:18 -05:00
|
|
|
.navbar-nav-scroll {
|
2021-02-03 14:42:24 -05:00
|
|
|
max-height: var(--#{$variable-prefix}scroll-height, 75vh);
|
2021-01-19 00:32:18 -05:00
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2021-02-10 22:29:59 -05:00
|
|
|
// scss-docs-start navbar-expand-loop
|
2017-03-22 01:00:46 -04:00
|
|
|
// Generate series of `.navbar-expand-*` responsive classes for configuring
|
2016-12-28 20:16:27 -05:00
|
|
|
// where your navbar collapses.
|
2017-03-22 01:00:46 -04:00
|
|
|
.navbar-expand {
|
2016-12-28 20:16:27 -05:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
2017-01-14 00:33:21 -05:00
|
|
|
$next: breakpoint-next($breakpoint, $grid-breakpoints);
|
|
|
|
$infix: breakpoint-infix($next, $grid-breakpoints);
|
2016-12-21 15:27:18 -05:00
|
|
|
|
2020-06-23 06:07:58 -04:00
|
|
|
// stylelint-disable-next-line scss/selector-no-union-class-name
|
2016-12-28 20:16:27 -05:00
|
|
|
&#{$infix} {
|
2017-01-14 00:33:21 -05:00
|
|
|
@include media-breakpoint-up($next) {
|
2020-01-07 15:32:46 -05:00
|
|
|
flex-wrap: nowrap;
|
2017-03-21 00:23:11 -04:00
|
|
|
justify-content: flex-start;
|
2016-12-28 20:16:27 -05:00
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
flex-direction: row;
|
|
|
|
|
2017-04-08 11:10:20 -04:00
|
|
|
.dropdown-menu {
|
2017-06-04 11:56:51 -04:00
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
.nav-link {
|
2017-12-29 06:18:13 -05:00
|
|
|
padding-right: $navbar-nav-link-padding-x;
|
|
|
|
padding-left: $navbar-nav-link-padding-x;
|
2016-12-28 20:16:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-19 00:32:18 -05:00
|
|
|
.navbar-nav-scroll {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
2016-12-28 20:16:27 -05:00
|
|
|
.navbar-collapse {
|
2019-01-07 23:46:29 -05:00
|
|
|
display: flex !important; // stylelint-disable-line declaration-no-important
|
2021-02-09 13:54:37 -05:00
|
|
|
flex-basis: auto;
|
2016-12-28 20:16:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-toggler {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-04-01 13:24:17 -04:00
|
|
|
|
|
|
|
.offcanvas-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.offcanvas {
|
|
|
|
position: inherit;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
flex-grow: 1;
|
2021-08-04 10:49:34 -04:00
|
|
|
visibility: visible !important; // stylelint-disable-line declaration-no-important
|
2021-04-01 13:24:17 -04:00
|
|
|
background-color: transparent;
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
|
|
|
@include transition(none);
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
.offcanvas-top,
|
|
|
|
.offcanvas-bottom {
|
|
|
|
height: auto;
|
|
|
|
border-top: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.offcanvas-body {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-y: visible;
|
|
|
|
}
|
2016-12-28 20:16:27 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-21 15:27:18 -05:00
|
|
|
}
|
|
|
|
}
|
2021-02-10 22:29:59 -05:00
|
|
|
// scss-docs-end navbar-expand-loop
|
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 {
|
2017-02-14 11:38:08 -05:00
|
|
|
.navbar-brand {
|
2018-09-11 06:56:56 -04:00
|
|
|
color: $navbar-light-brand-color;
|
2014-12-19 21:35:10 -05:00
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-09-11 06:56:56 -04:00
|
|
|
color: $navbar-light-brand-hover-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
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2015-08-18 03:46:29 -04:00
|
|
|
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
|
|
|
|
2017-04-08 19:30:18 -04:00
|
|
|
.show > .nav-link,
|
2015-08-18 03:46:29 -04:00
|
|
|
.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 {
|
2017-02-14 11:38:08 -05:00
|
|
|
color: $navbar-light-color;
|
2017-04-16 18:45:10 -04:00
|
|
|
border-color: $navbar-light-toggler-border-color;
|
2016-09-12 01:25:42 -04:00
|
|
|
}
|
|
|
|
|
2016-12-22 01:10:44 -05:00
|
|
|
.navbar-toggler-icon {
|
2019-07-19 21:57:12 -04:00
|
|
|
background-image: escape-svg($navbar-light-toggler-icon-bg);
|
2016-12-22 01:10:44 -05:00
|
|
|
}
|
|
|
|
|
2016-10-30 14:37:47 -04:00
|
|
|
.navbar-text {
|
|
|
|
color: $navbar-light-color;
|
2017-10-02 13:11:11 -04:00
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
a,
|
|
|
|
a:hover,
|
|
|
|
a:focus {
|
|
|
|
color: $navbar-light-active-color;
|
2017-10-02 13:11:11 -04:00
|
|
|
}
|
2016-10-30 14:37:47 -04:00
|
|
|
}
|
2015-08-18 03:46:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// White links against a dark background
|
2017-06-25 21:29:43 -04:00
|
|
|
.navbar-dark {
|
2017-02-14 11:38:08 -05:00
|
|
|
.navbar-brand {
|
2018-09-11 06:56:56 -04:00
|
|
|
color: $navbar-dark-brand-color;
|
2015-08-18 02:43:59 -04:00
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-09-11 06:56:56 -04:00
|
|
|
color: $navbar-dark-brand-hover-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav {
|
2015-08-18 02:43:59 -04:00
|
|
|
.nav-link {
|
2017-06-25 21:29:43 -04:00
|
|
|
color: $navbar-dark-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2018-09-17 19:10:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2017-06-25 21:29:43 -04:00
|
|
|
color: $navbar-dark-hover-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
2016-11-26 03:19:13 -05:00
|
|
|
|
|
|
|
&.disabled {
|
2017-06-25 21:29:43 -04:00
|
|
|
color: $navbar-dark-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
|
|
|
|
2017-04-08 19:30:18 -04:00
|
|
|
.show > .nav-link,
|
2015-08-18 02:43:59 -04:00
|
|
|
.nav-link.active {
|
2017-06-25 21:29:43 -04:00
|
|
|
color: $navbar-dark-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 {
|
2017-06-25 21:29:43 -04:00
|
|
|
color: $navbar-dark-color;
|
|
|
|
border-color: $navbar-dark-toggler-border-color;
|
2016-09-12 01:25:42 -04:00
|
|
|
}
|
|
|
|
|
2016-12-22 01:10:44 -05:00
|
|
|
.navbar-toggler-icon {
|
2019-07-19 21:57:12 -04:00
|
|
|
background-image: escape-svg($navbar-dark-toggler-icon-bg);
|
2016-12-22 01:10:44 -05:00
|
|
|
}
|
|
|
|
|
2016-10-30 14:37:47 -04:00
|
|
|
.navbar-text {
|
2017-06-25 21:29:43 -04:00
|
|
|
color: $navbar-dark-color;
|
2018-09-17 19:10:07 -04:00
|
|
|
a,
|
|
|
|
a:hover,
|
|
|
|
a:focus {
|
2017-10-02 13:11:11 -04:00
|
|
|
color: $navbar-dark-active-color;
|
|
|
|
}
|
2016-10-30 14:37:47 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|