twbs--bootstrap/scss/_navbar.scss

282 lines
5.3 KiB
SCSS
Raw Normal View History

2014-12-02 22:02:35 +00: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;
padding: $navbar-padding-y $navbar-padding-x;
2014-12-02 22:02:35 +00:00
}
2016-12-21 08:40:31 +00:00
.navbar-toggler-left {
position: absolute;
left: $navbar-padding-x;
}
.navbar-toggler-right {
position: absolute;
right: $navbar-padding-x;
}
2014-12-02 22:02:35 +00:00
// Navbar alignment options
//
// Display the navbar across the entirety of the page or fixed it to the top or
// bottom of the page.
// 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;
}
2014-12-02 22:02:35 +00:00
.navbar-fixed-top {
top: 0;
}
2014-12-02 22:02:35 +00:00
.navbar-fixed-bottom {
bottom: 0;
}
2015-04-14 02:00:59 +00:00
.navbar-sticky-top {
position: sticky;
top: 0;
z-index: $zindex-navbar-sticky;
}
2014-12-02 22:02:35 +00:00
2015-08-18 06:43:59 +00:00
//
2014-12-02 22:02:35 +00:00
// Brand/project name
2015-08-18 06:43:59 +00:00
//
2014-12-02 22:02:35 +00:00
.navbar-brand {
2016-12-21 08:40:31 +00:00
display: inline-block;
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-divider {
float: left;
width: $border-width;
2016-05-13 15:15:48 +00:00
padding-top: $navbar-divider-padding-y;
padding-bottom: $navbar-divider-padding-y;
margin-right: $navbar-padding-x;
margin-left: $navbar-padding-x;
2015-08-23 08:00:22 +00:00
overflow: hidden;
2015-08-18 07:59:44 +00:00
&::before {
2015-08-23 08:00:22 +00:00
content: "\00a0";
2015-08-18 07:59:44 +00:00
}
}
// Navbar text
//
//
.navbar-text {
display: inline-block;
padding-top: .425rem;
padding-bottom: .425rem;
}
2014-12-02 22:02:35 +00:00
// Navbar toggle
//
// Custom button for toggling the `.navbar-collapse`, powered by the collapse
2015-06-23 00:37:52 +00:00
// Bootstrap JavaScript plugin.
2014-12-02 22:02:35 +00:00
.navbar-toggler {
width: 2.5em;
height: 2em;
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 no-repeat center center;
background-size: 24px 24px;
2015-08-18 06:43:59 +00:00
border: $border-width solid transparent;
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;
}
}
2015-08-18 06:43:59 +00:00
// Navigation
//
2015-08-18 06:43:59 +00:00
// Custom navbar navigation built on the base `.nav` styles.
.navbar-nav {
flex-grow: 10; // high number to force alignment
.nav-link {
display: block;
padding-top: .425rem;
padding-bottom: .425rem;
}
}
2014-12-02 22:02:35 +00:00
// 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 {
@include plain-hover-focus {
color: $navbar-light-active-color;
}
}
}
2015-08-18 07:59:44 +00:00
.navbar-toggler {
background-image: $navbar-light-toggler-bg;
2016-10-18 04:05:22 +00:00
border-color: $navbar-light-toggler-border;
}
2015-08-18 07:59:44 +00:00
.navbar-divider {
background-color: rgba(0,0,0,.075);
}
.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 {
@include plain-hover-focus {
color: $navbar-inverse-active-color;
}
2014-12-02 22:02:35 +00:00
}
}
2015-08-18 07:59:44 +00:00
.navbar-toggler {
background-image: $navbar-inverse-toggler-bg;
border-color: $navbar-inverse-toggler-border;
}
2015-08-18 07:59:44 +00:00
.navbar-divider {
background-color: rgba(255,255,255,.075);
}
.navbar-text {
color: $navbar-inverse-color;
}
2014-12-02 22:02:35 +00:00
}
// Navbar toggleable
//
// Custom override for collapse plugin in navbar.
// Placed at the end of the file so it can override some CSS properties
// scss-lint:disable ImportantRule
.navbar-toggleable {
@each $breakpoint in map-keys($grid-breakpoints) {
$next: breakpoint-next($breakpoint, $grid-breakpoints);
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
&#{$infix} {
@include media-breakpoint-down($breakpoint) {
.navbar-nav {
.dropdown-menu {
position: static;
float: none;
}
}
> .container {
padding-left: 0;
padding-right: 0;
}
}
@include media-breakpoint-up($next) {
display: flex;
flex-wrap: nowrap;
align-items: center;
// For nesting containers, have to redeclare for alignment purposes
> .container {
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.navbar-collapse {
display: flex !important;
width: 100%;
}
.nav-item {
display: inline-block;
}
.nav-link {
padding-right: .5rem;
padding-left: .5rem;
}
}
}
}
}
// scss-lint:enable ImportantRule