twbs--bootstrap/scss/_navbar.scss

283 lines
6.0 KiB
SCSS
Raw Normal View History

// Contents
//
// Navbar
// Navbar brand
// Navbar nav
// Navbar text
// Navbar divider
// Responsive navbar
// Navbar position
// Navbar themes
// Navbar
2014-12-02 22:02:35 +00:00
//
// Provide a static navbar from which we expand to create full-width, fixed, and
// other navbar variations.
.navbar {
position: relative;
display: flex;
flex-wrap: wrap; // allow us to do the line break for collapsing content
justify-content: space-between; // space out brand from logo
padding: $navbar-padding-y $navbar-padding-x;
// Because flex properties aren't inherited, we need to redeclare these first
// few properities so that content nested within behave properly.
> .container,
> .container-fluid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
@include media-breakpoint-down(nth(map-keys($grid-breakpoints), 1)) {
width: 100%; // prevent flex parent container(-fluid) from collapsing
margin-right: 0;
margin-left: 0;
}
}
2014-12-02 22:02:35 +00:00
}
2016-12-21 08:40:31 +00:00
// Navbar brand
2015-08-18 06:43:59 +00:00
//
// Used for brand, project, or site names.
2014-12-02 22:02:35 +00:00
.navbar-brand {
2016-12-21 08:40:31 +00:00
display: inline-block;
align-self: flex-start;
2016-12-22 01:51:49 +00:00
padding-top: .25rem;
padding-bottom: .25rem;
2016-12-21 22:16:04 +00:00
margin-right: $navbar-padding-x;
2014-12-02 22:02:35 +00:00
font-size: $font-size-lg;
line-height: inherit;
2016-12-21 22:16:04 +00:00
white-space: nowrap;
2014-12-02 22:02:35 +00:00
2015-08-18 06:43:59 +00:00
@include hover-focus {
text-decoration: none;
2014-12-02 22:02:35 +00:00
}
}
2014-12-02 22:02:35 +00:00
2015-08-18 07:59:44 +00: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 01:46:35 +00:00
padding-left: 0;
2015-08-18 07:59:44 +00:00
}
}
// Navbar text
//
//
.navbar-text {
display: inline-block;
padding-top: .425rem;
padding-bottom: .425rem;
}
// Responsive navbar
2014-12-02 22:02:35 +00:00
//
// Custom styles for responsive collapsing and toggling of navbar contents.
// Powered by the collapse Bootstrap JavaScript plugin.
2014-12-02 22:02:35 +00:00
// When collapsed, prevent the toggleable navbar contents from appearing in
// the default flexbox row orienation. Requires the use of `flex-wrap: wrap`
// on the `.navbar` parent.
.navbar-collapse {
flex-basis: 100%;
}
// Button for toggling the navbar when in its collapsed state
2014-12-02 22:02:35 +00:00
.navbar-toggler {
align-self: flex-start; // Prevent toggler from growing to full width when it's the only visible navbar child
2016-05-13 15:15:48 +00:00
padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
2016-05-13 04:50:17 +00:00
font-size: $navbar-toggler-font-size;
line-height: 1;
background: transparent; // remove default button style
border: $border-width solid transparent; // remove default button style
2016-05-13 04:50:17 +00:00
@include border-radius($navbar-toggler-border-radius);
2014-12-02 22:02:35 +00:00
@include hover-focus {
2014-12-02 22:02:35 +00:00
text-decoration: none;
}
}
// 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 06:20:22 +00:00
content: "";
background: no-repeat center center;
background-size: 100% 100%;
}
// 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($next, $grid-breakpoints);
&#{$infix} {
@include media-breakpoint-down($breakpoint) {
.navbar-nav {
.dropdown-menu {
position: static;
float: none;
}
}
2017-03-21 04:21:45 +00:00
> .container,
> .container-fluid {
padding-right: 0;
padding-left: 0;
}
}
@include media-breakpoint-up($next) {
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: flex-start;
.navbar-nav {
flex-direction: row;
.nav-link {
padding-right: .5rem;
padding-left: .5rem;
}
}
// For nesting containers, have to redeclare for alignment purposes
2017-03-21 04:21:45 +00:00
> .container,
> .container-fluid {
flex-wrap: nowrap;
align-items: center;
}
// scss-lint:disable ImportantRule
.navbar-collapse {
display: flex !important;
}
// scss-lint:enable ImportantRule
.navbar-toggler {
display: none;
}
}
}
}
}
// Navbar themes
//
// Styles for switching between navbars with light or dark background.
// Dark links against a light background
.navbar-light {
.navbar-brand,
.navbar-toggler {
color: $navbar-light-active-color;
2014-12-20 02:35:10 +00:00
@include hover-focus {
color: $navbar-light-active-color;
2014-12-02 22:02:35 +00:00
}
}
.navbar-nav {
.nav-link {
color: $navbar-light-color;
2014-12-02 22:02:35 +00:00
@include hover-focus {
color: $navbar-light-hover-color;
}
&.disabled {
color: $navbar-light-disabled-color;
}
}
2014-12-02 22:02:35 +00:00
.open > .nav-link,
.active > .nav-link,
.nav-link.open,
.nav-link.active {
color: $navbar-light-active-color;
}
}
2015-08-18 07:59:44 +00:00
.navbar-toggler {
2016-10-18 04:05:22 +00:00
border-color: $navbar-light-toggler-border;
}
.navbar-toggler-icon {
background-image: $navbar-light-toggler-bg;
}
.navbar-text {
color: $navbar-light-color;
}
}
// White links against a dark background
.navbar-inverse {
.navbar-brand,
.navbar-toggler {
color: $navbar-inverse-active-color;
2015-08-18 06:43:59 +00:00
@include hover-focus {
color: $navbar-inverse-active-color;
2014-12-02 22:02:35 +00:00
}
}
.navbar-nav {
2015-08-18 06:43:59 +00:00
.nav-link {
color: $navbar-inverse-color;
2014-12-02 22:02:35 +00:00
@include hover-focus {
color: $navbar-inverse-hover-color;
2014-12-02 22:02:35 +00:00
}
&.disabled {
color: $navbar-inverse-disabled-color;
}
2015-08-18 06:43:59 +00:00
}
2014-12-02 22:02:35 +00:00
2015-08-18 06:43:59 +00:00
.open > .nav-link,
.active > .nav-link,
.nav-link.open,
.nav-link.active {
color: $navbar-inverse-active-color;
2014-12-02 22:02:35 +00:00
}
}
2015-08-18 07:59:44 +00:00
.navbar-toggler {
border-color: $navbar-inverse-toggler-border;
}
.navbar-toggler-icon {
background-image: $navbar-inverse-toggler-bg;
}
.navbar-text {
color: $navbar-inverse-color;
}
2014-12-02 22:02:35 +00:00
}