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