2012-06-29 00:46:45 -04:00
|
|
|
//
|
2013-01-15 20:55:14 -05:00
|
|
|
// Navbars
|
2012-06-29 00:46:45 -04:00
|
|
|
// --------------------------------------------------
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
// Wrapper and base class
|
|
|
|
.navbar {
|
2013-02-18 04:28:35 -05:00
|
|
|
position: relative;
|
2013-04-28 10:08:48 -04:00
|
|
|
padding: 0px 15px;
|
2013-01-16 18:35:41 -05:00
|
|
|
background-color: @navbar-bg;
|
2013-01-16 19:14:41 -05:00
|
|
|
border-radius: @border-radius-base;
|
|
|
|
// Prevent floats from breaking the navbar
|
2013-03-30 16:23:18 -04:00
|
|
|
.clearfix();
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Navbar nav links
|
2013-01-16 19:14:41 -05:00
|
|
|
// -------------------------
|
|
|
|
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-nav {
|
|
|
|
// Space out from .navbar .brand and .btn-navbar
|
2013-04-28 17:27:48 -04:00
|
|
|
margin-top: 5px;
|
2013-04-27 21:28:39 -04:00
|
|
|
|
|
|
|
> li > a {
|
2013-03-06 11:38:20 -05:00
|
|
|
padding-top: ((@navbar-height - @line-height-base) / 2);
|
|
|
|
padding-bottom: ((@navbar-height - @line-height-base) / 2);
|
2013-01-17 14:34:46 -05:00
|
|
|
color: @navbar-link-color;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
2013-04-27 21:28:39 -04:00
|
|
|
> li > a:hover,
|
|
|
|
> li > a:focus {
|
2013-03-31 20:56:31 -04:00
|
|
|
color: @navbar-link-hover-color;
|
|
|
|
background-color: @navbar-link-hover-bg;
|
2013-01-17 14:34:46 -05:00
|
|
|
}
|
2013-04-27 21:28:39 -04:00
|
|
|
> .active > a,
|
|
|
|
> .active > a:hover,
|
|
|
|
> .active > a:focus {
|
2013-03-31 20:56:31 -04:00
|
|
|
color: @navbar-link-active-color;
|
|
|
|
background-color: @navbar-link-active-bg;
|
2013-01-17 14:34:46 -05:00
|
|
|
}
|
2013-04-27 21:28:39 -04:00
|
|
|
> .disabled > a,
|
|
|
|
> .disabled > a:hover,
|
|
|
|
> .disabled > a:focus {
|
2013-03-31 20:56:31 -04:00
|
|
|
color: @navbar-link-disabled-color;
|
|
|
|
background-color: @navbar-link-disabled-bg;
|
2013-03-01 02:20:25 -05:00
|
|
|
}
|
2013-01-17 14:34:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Navbar alignment options
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Static navbar
|
|
|
|
.navbar-static-top {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:33:55 -05:00
|
|
|
// Fix the top/bottom navbars when screen real estate supports it
|
2013-01-17 14:34:46 -05:00
|
|
|
.navbar-fixed-top,
|
|
|
|
.navbar-fixed-bottom {
|
2013-02-17 21:33:55 -05:00
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: @zindex-navbar-fixed;
|
2013-01-17 14:34:46 -05:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
2013-02-17 21:33:55 -05:00
|
|
|
.navbar-fixed-top { top: 0; }
|
|
|
|
.navbar-fixed-bottom { bottom: 0; }
|
2013-01-17 14:34:46 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Navbar optional components
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Brand/project name
|
2013-02-18 04:28:35 -05:00
|
|
|
.navbar-brand {
|
|
|
|
display: block;
|
|
|
|
max-width: 200px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2013-04-27 21:28:39 -04:00
|
|
|
padding: 15px;
|
2013-01-15 20:55:14 -05:00
|
|
|
font-size: 18px;
|
2013-01-17 23:30:40 -05:00
|
|
|
font-weight: 500;
|
2013-01-16 19:14:41 -05:00
|
|
|
line-height: @line-height-base;
|
2013-01-16 18:35:41 -05:00
|
|
|
color: @navbar-brand-color;
|
2013-02-18 04:28:35 -05:00
|
|
|
text-align: center;
|
2013-02-05 22:53:44 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-03-31 20:56:31 -04:00
|
|
|
color: @navbar-brand-hover-color;
|
2013-01-15 20:55:14 -05:00
|
|
|
text-decoration: none;
|
2013-03-31 20:56:31 -04:00
|
|
|
background-color: @navbar-brand-hover-bg;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Collapsible navbar toggle
|
2013-02-18 04:28:35 -05:00
|
|
|
.navbar-toggle {
|
|
|
|
position: absolute;
|
2013-04-28 17:27:48 -04:00
|
|
|
top: 18px;
|
2013-02-18 04:28:35 -05:00
|
|
|
right: 10px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid #ddd;
|
2013-01-15 20:55:14 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
|
2013-02-18 04:28:35 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
// Bars
|
|
|
|
.icon-bar {
|
|
|
|
display: block;
|
2013-02-18 04:28:35 -05:00
|
|
|
width: 22px;
|
2013-01-15 20:55:14 -05:00
|
|
|
height: 2px;
|
2013-03-01 03:18:10 -05:00
|
|
|
background-color: #ccc;
|
2013-01-15 20:55:14 -05:00
|
|
|
border-radius: 1px;
|
|
|
|
}
|
|
|
|
.icon-bar + .icon-bar {
|
2013-02-18 04:28:35 -05:00
|
|
|
margin-top: 4px;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Navbar form
|
|
|
|
.navbar-form {
|
2013-01-31 21:09:49 -05:00
|
|
|
.navbar-vertical-align(34px); // Vertically center in navbar
|
2013-01-17 14:34:46 -05:00
|
|
|
}
|
2013-01-17 14:20:19 -05:00
|
|
|
|
2013-01-17 14:55:37 -05:00
|
|
|
// Dropdown menus
|
|
|
|
|
|
|
|
// Menu position and menu carets
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-nav > li > .dropdown-menu {
|
2013-01-17 14:55:37 -05:00
|
|
|
margin-top: 0;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
|
|
|
// Menu position and menu caret support for dropups via extra dropup class
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
2013-01-17 14:55:37 -05:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dropdown menu items and carets
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-nav {
|
2013-01-17 14:55:37 -05:00
|
|
|
// Caret should match text color on hover
|
2013-02-05 22:53:44 -05:00
|
|
|
li.dropdown > a:hover .caret,
|
|
|
|
li.dropdown > a:focus .caret {
|
2013-03-31 20:56:31 -04:00
|
|
|
border-top-color: @navbar-link-hover-color;
|
|
|
|
border-bottom-color: @navbar-link-hover-color;
|
2013-01-17 14:55:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remove background color from open dropdown
|
|
|
|
li.dropdown.open > .dropdown-toggle,
|
|
|
|
li.dropdown.active > .dropdown-toggle,
|
|
|
|
li.dropdown.open.active > .dropdown-toggle {
|
2013-03-31 20:56:31 -04:00
|
|
|
background-color: @navbar-link-active-bg;
|
|
|
|
color: @navbar-link-active-color;
|
2013-01-17 14:55:37 -05:00
|
|
|
}
|
|
|
|
li.dropdown > .dropdown-toggle .caret {
|
|
|
|
border-top-color: @navbar-link-color;
|
|
|
|
border-bottom-color: @navbar-link-color;
|
|
|
|
}
|
|
|
|
li.dropdown.open > .dropdown-toggle .caret,
|
|
|
|
li.dropdown.active > .dropdown-toggle .caret,
|
|
|
|
li.dropdown.open.active > .dropdown-toggle .caret {
|
2013-03-31 20:56:31 -04:00
|
|
|
border-top-color: @navbar-link-active-color;
|
|
|
|
border-bottom-color: @navbar-link-active-color;
|
2013-01-17 14:55:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Right aligned menus need alt position
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-nav.pull-right > li > .dropdown-menu,
|
|
|
|
.navbar-nav > li > .dropdown-menu.pull-right {
|
2013-01-17 14:55:37 -05:00
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2013-01-16 19:14:41 -05:00
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
|
|
|
|
// Inverse navbar
|
2013-01-17 14:34:46 -05:00
|
|
|
// --------------------------------------------------
|
2013-01-16 19:14:41 -05:00
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
.navbar-inverse {
|
2013-01-17 14:55:37 -05:00
|
|
|
background-color: @navbar-inverse-bg;
|
2013-01-15 20:55:14 -05:00
|
|
|
|
2013-02-18 04:28:35 -05:00
|
|
|
.navbar-brand {
|
2013-01-17 02:33:26 -05:00
|
|
|
color: @navbar-inverse-brand-color;
|
2013-01-02 17:39:21 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-04-07 17:47:53 -04:00
|
|
|
color: @navbar-inverse-brand-hover-color;
|
|
|
|
background-color: @navbar-inverse-brand-hover-bg;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
2013-01-17 02:33:26 -05:00
|
|
|
|
|
|
|
.navbar-text {
|
|
|
|
color: @navbar-inverse-text;
|
|
|
|
}
|
|
|
|
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-nav {
|
|
|
|
> li > a {
|
|
|
|
color: @navbar-inverse-link-color;
|
|
|
|
}
|
|
|
|
> li > a:hover,
|
|
|
|
> li > a:focus {
|
|
|
|
color: @navbar-inverse-link-hover-color;
|
|
|
|
background-color: @navbar-inverse-link-hover-bg;
|
|
|
|
}
|
|
|
|
> .active > a,
|
|
|
|
> .active > a:hover,
|
|
|
|
> .active > a:focus {
|
|
|
|
color: @navbar-inverse-link-active-color;
|
|
|
|
background-color: @navbar-inverse-link-active-bg;
|
|
|
|
}
|
|
|
|
> .disabled > a,
|
|
|
|
> .disabled > a:hover,
|
|
|
|
> .disabled > a:focus {
|
|
|
|
color: @navbar-inverse-link-disabled-color;
|
|
|
|
background-color: @navbar-inverse-link-disabled-bg;
|
|
|
|
}
|
2013-03-01 02:20:25 -05:00
|
|
|
}
|
2013-01-17 14:34:46 -05:00
|
|
|
|
2013-01-17 14:55:37 -05:00
|
|
|
// Darken the responsive nav toggle
|
2013-02-18 04:28:35 -05:00
|
|
|
.navbar-toggle {
|
|
|
|
border-color: #333;
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
2013-03-01 03:18:10 -05:00
|
|
|
.icon-bar {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
|
2013-01-17 14:55:37 -05:00
|
|
|
// Dropdowns
|
2013-04-27 21:28:39 -04:00
|
|
|
.navbar-nav {
|
|
|
|
li.dropdown.open > .dropdown-toggle,
|
|
|
|
li.dropdown.active > .dropdown-toggle,
|
|
|
|
li.dropdown.open.active > .dropdown-toggle {
|
|
|
|
background-color: @navbar-inverse-link-active-bg;
|
|
|
|
color: @navbar-inverse-link-active-color;
|
|
|
|
}
|
|
|
|
li.dropdown > a:hover .caret {
|
|
|
|
border-top-color: @navbar-inverse-link-hover-color;
|
|
|
|
border-bottom-color: @navbar-inverse-link-hover-color;
|
|
|
|
}
|
|
|
|
li.dropdown > .dropdown-toggle .caret {
|
|
|
|
border-top-color: @navbar-inverse-link-color;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color;
|
|
|
|
}
|
|
|
|
li.dropdown.open > .dropdown-toggle .caret,
|
|
|
|
li.dropdown.active > .dropdown-toggle .caret,
|
|
|
|
li.dropdown.open.active > .dropdown-toggle .caret {
|
|
|
|
border-top-color: @navbar-inverse-link-active-color;
|
|
|
|
border-bottom-color: @navbar-inverse-link-active-color;
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:55:37 -05:00
|
|
|
}
|
2013-01-16 19:14:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Inverse navbar
|
2013-01-16 19:14:41 -05:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-04-27 12:47:47 -04:00
|
|
|
@media screen and (min-width: @screen-tablet) {
|
2013-04-27 21:28:39 -04:00
|
|
|
|
2013-02-18 04:28:35 -05:00
|
|
|
.navbar-brand {
|
2013-01-17 14:34:46 -05:00
|
|
|
float: left;
|
2013-04-27 21:28:39 -04:00
|
|
|
margin-left: -5px;
|
|
|
|
margin-right: 5px;
|
2013-01-17 14:34:46 -05:00
|
|
|
}
|
|
|
|
.navbar .nav {
|
|
|
|
float: left;
|
|
|
|
margin-top: 0; // undo top margin to make nav extend full height of navbar
|
2013-04-27 21:28:39 -04:00
|
|
|
|
|
|
|
> li {
|
|
|
|
float: left;
|
|
|
|
}
|
2013-01-15 20:55:14 -05:00
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
&.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2012-08-27 13:32:07 -04:00
|
|
|
|
2013-02-02 01:56:09 -05:00
|
|
|
// Dividers go vertical
|
|
|
|
// Change the height and height, disable bottom border, then add right border
|
|
|
|
.navbar .nav > .divider {
|
|
|
|
width: 1px;
|
2013-03-06 11:38:20 -05:00
|
|
|
height: (@navbar-height * .6);
|
2013-02-02 01:56:09 -05:00
|
|
|
margin: (@navbar-height * .2) 9px;
|
|
|
|
border-bottom: 0;
|
|
|
|
border-right: 1px solid lighten(@navbar-bg, 5%);
|
|
|
|
}
|
|
|
|
// Since we override the border, we need to specify it again for inverted navbars
|
|
|
|
.navbar-inverse .nav > .divider {
|
|
|
|
border-right-color: lighten(@navbar-inverse-bg, 5%);
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Required to make the collapsing navbar work on regular desktops
|
2013-02-18 04:28:35 -05:00
|
|
|
.navbar-toggle {
|
|
|
|
position: relative;
|
|
|
|
top: auto;
|
|
|
|
left: auto;
|
2013-01-17 14:34:46 -05:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.nav-collapse.collapse {
|
|
|
|
height: auto !important;
|
|
|
|
overflow: visible !important;
|
|
|
|
}
|
2013-01-17 14:55:37 -05:00
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
}
|
2012-01-18 03:24:10 -05:00
|
|
|
|
2013-01-17 03:13:12 -05:00
|
|
|
/*
|
2012-07-30 13:08:27 -04:00
|
|
|
|
|
|
|
// Janky solution for now to account for links outside the .nav
|
|
|
|
// -------------------------
|
|
|
|
.navbar-link {
|
2012-11-30 18:33:56 -05:00
|
|
|
color: @navbar-link-color;
|
2012-07-30 13:08:27 -04:00
|
|
|
&:hover {
|
2013-03-31 20:56:31 -04:00
|
|
|
color: @navbar-link-hover-color;
|
2012-01-14 20:16:46 -05:00
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
|
2012-07-30 13:08:27 -04:00
|
|
|
// Buttons in navbar
|
|
|
|
// -------------------------
|
|
|
|
.navbar .btn,
|
|
|
|
.navbar .btn-group {
|
2012-08-27 13:04:58 -04:00
|
|
|
.navbarVerticalAlign(30px); // Vertically center in navbar
|
2012-07-30 13:08:27 -04:00
|
|
|
}
|
2012-08-27 13:52:11 -04:00
|
|
|
.navbar .btn-group .btn,
|
|
|
|
.navbar .input-prepend .btn,
|
|
|
|
.navbar .input-append .btn {
|
2012-08-24 17:45:02 -04:00
|
|
|
margin-top: 0; // then undo the margin here so we don't accidentally double it
|
2012-07-30 13:08:27 -04:00
|
|
|
}
|
|
|
|
|
2012-01-07 02:59:22 -05:00
|
|
|
// Navbar forms
|
2012-08-24 17:45:02 -04:00
|
|
|
// -------------------------
|
2012-01-07 02:59:22 -05:00
|
|
|
.navbar-form {
|
|
|
|
margin-bottom: 0; // remove default bottom margin
|
2012-01-30 11:20:37 -05:00
|
|
|
.clearfix();
|
2012-01-07 03:26:58 -05:00
|
|
|
input,
|
2012-02-20 22:14:26 -05:00
|
|
|
select,
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
2012-07-30 15:15:08 -04:00
|
|
|
.navbarVerticalAlign(30px); // Vertically center in navbar
|
2012-02-20 22:14:26 -05:00
|
|
|
}
|
|
|
|
input,
|
2012-07-10 00:01:29 -04:00
|
|
|
select,
|
|
|
|
.btn {
|
2012-01-07 03:26:58 -05:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2012-01-28 17:50:56 -05:00
|
|
|
input[type="image"],
|
|
|
|
input[type="checkbox"],
|
|
|
|
input[type="radio"] {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2012-02-12 23:28:22 -05:00
|
|
|
.input-append,
|
|
|
|
.input-prepend {
|
2012-11-16 04:19:15 -05:00
|
|
|
margin-top: 5px;
|
2012-02-12 23:28:22 -05:00
|
|
|
white-space: nowrap; // preven two items from separating within a .navbar-form that has .pull-left
|
|
|
|
input {
|
|
|
|
margin-top: 0; // remove the margin on top since it's on the parent
|
|
|
|
}
|
|
|
|
}
|
2012-01-07 02:59:22 -05:00
|
|
|
}
|
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
*/
|