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