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 {
|
|
|
|
padding: 15px;
|
2013-01-17 07:35:41 +08:00
|
|
|
background-color: @navbar-bg;
|
2013-01-16 09:55:14 +08:00
|
|
|
.clear_float();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Brand/project name
|
|
|
|
.navbar .brand {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 7px 15px;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1;
|
2013-01-17 07:35:41 +08:00
|
|
|
color: @navbar-brand-color;
|
2013-01-16 09:55:14 +08:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Responsive navbar button
|
|
|
|
.btn-navbar {
|
|
|
|
float: right;
|
|
|
|
padding: 10px 12px;
|
|
|
|
background-color: #ddd;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
// Bars
|
|
|
|
.icon-bar {
|
|
|
|
display: block;
|
|
|
|
width: 20px;
|
|
|
|
height: 2px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 1px;
|
|
|
|
}
|
|
|
|
.icon-bar + .icon-bar {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nav links
|
|
|
|
.navbar {
|
|
|
|
.nav {
|
|
|
|
margin-top: 15px; // space out from .navbar .brand and .btn-navbar
|
|
|
|
}
|
|
|
|
.nav > li > a {
|
2013-01-17 07:35:41 +08:00
|
|
|
color: @navbar-link-color;
|
2013-01-16 09:55:14 +08:00
|
|
|
line-height: 20px;
|
|
|
|
}
|
2013-01-17 07:35:41 +08:00
|
|
|
.nav > li > a:hover,
|
|
|
|
.nav > li > a:focus {
|
|
|
|
color: @navbar-link-color-hover;
|
|
|
|
background-color: @navbar-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-link-color-active;
|
|
|
|
background-color: @navbar-link-bg-active;
|
2013-01-16 09:55:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inverse navbar
|
|
|
|
.navbar-inverse {
|
2013-01-17 07:35:41 +08:00
|
|
|
background-color: @navbar-inverse-bg;
|
2013-01-16 09:55:14 +08:00
|
|
|
|
|
|
|
.brand {
|
|
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.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
|
|
|
}
|
|
|
|
.btn-navbar {
|
|
|
|
background-color: #444;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2012-01-06 02:01:42 +08:00
|
|
|
|
2012-01-18 16:24:10 +08:00
|
|
|
// COMMON STYLES
|
|
|
|
// -------------
|
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Base class and wrapper
|
2012-01-06 02:01:42 +08:00
|
|
|
.navbar {
|
2012-07-31 01:08:27 +08:00
|
|
|
overflow: visible;
|
2012-09-26 13:48:02 +08:00
|
|
|
padding: 0 20px;
|
2012-12-01 06:45:25 +08:00
|
|
|
margin-bottom: @line-height-base;
|
2012-12-21 16:50:28 +08:00
|
|
|
background-color: @navbar-background;
|
2012-12-01 06:45:25 +08:00
|
|
|
border-radius: @border-radius-base;
|
2012-08-28 01:32:07 +08:00
|
|
|
|
|
|
|
// Prevent floats from breaking the navbar
|
|
|
|
.clearfix();
|
2012-01-06 02:01:42 +08:00
|
|
|
}
|
2012-01-18 16:24:10 +08:00
|
|
|
|
2012-02-22 15:15:43 +08:00
|
|
|
// Set width to auto for default container
|
|
|
|
// We then reset it for fixed navbars in the #gridSystem mixin
|
|
|
|
.navbar .container {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2012-01-30 06:07:14 +08:00
|
|
|
// Override the default collapsed state
|
2012-01-29 14:03:14 +08:00
|
|
|
.nav-collapse.collapse {
|
2012-01-30 06:07:14 +08:00
|
|
|
height: auto;
|
2012-09-21 01:27:59 +08:00
|
|
|
overflow: visible;
|
2012-01-29 14:03:14 +08:00
|
|
|
}
|
|
|
|
|
2012-01-29 07:09:23 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Brand: website or project name
|
|
|
|
// -------------------------
|
|
|
|
.navbar .brand {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
2012-12-01 07:33:56 +08:00
|
|
|
// Vertically center the text given @navbar-height
|
|
|
|
padding: ((@navbar-height - @line-height-base) / 2) 20px ((@navbar-height - @line-height-base) / 2);
|
2012-07-31 01:08:27 +08:00
|
|
|
margin-left: -20px; // negative indent to left-align the text down the page
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 200;
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-brand-color;
|
|
|
|
text-shadow: 0 1px 0 @navbar-background-highlight;
|
2012-07-31 01:08:27 +08:00
|
|
|
&:hover {
|
2012-01-06 02:01:42 +08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Plain text in topbar
|
|
|
|
// -------------------------
|
|
|
|
.navbar-text {
|
|
|
|
margin-bottom: 0;
|
2012-12-01 07:33:56 +08:00
|
|
|
line-height: @navbar-height;
|
|
|
|
color: @navbar-text;
|
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-08-14 13:57:40 +08:00
|
|
|
// Dividers in navbar
|
|
|
|
// -------------------------
|
|
|
|
.navbar .divider-vertical {
|
2012-12-01 07:33:56 +08:00
|
|
|
height: @navbar-height;
|
2012-08-14 13:57:40 +08:00
|
|
|
margin: 0 9px;
|
2012-12-01 07:33:56 +08:00
|
|
|
border-left: 1px solid @navbar-background;
|
|
|
|
border-right: 1px solid @navbar-background-highlight;
|
2012-08-14 13:57:40 +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
|
|
|
}
|
|
|
|
|
2012-01-06 02:01:42 +08:00
|
|
|
// Navbar search
|
2012-08-25 05:45:02 +08:00
|
|
|
// -------------------------
|
2012-01-06 02:01:42 +08:00
|
|
|
.navbar-search {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
2012-07-24 16:44:12 +08:00
|
|
|
.navbarVerticalAlign(30px); // Vertically center in navbar
|
2012-01-06 02:01:42 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
.search-query {
|
2012-07-14 01:58:20 +08:00
|
|
|
margin-bottom: 0;
|
2012-07-24 16:44:12 +08:00
|
|
|
padding: 4px 14px;
|
2012-01-06 02:01:42 +08:00
|
|
|
#font > .sans-serif(13px, normal, 1);
|
2012-10-01 14:11:54 +08:00
|
|
|
border-radius: 15px; // redeclare because of specificity of the type attribute
|
2012-01-06 02:01:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-22 13:12:16 +08:00
|
|
|
|
2012-08-18 02:46:23 +08:00
|
|
|
// Static navbar
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
.navbar-static-top {
|
|
|
|
position: static;
|
|
|
|
margin-bottom: 0; // remove 18px margin for default navbar
|
2012-10-01 14:11:54 +08:00
|
|
|
border-radius: 0;
|
2012-08-18 02:46:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Fixed navbar
|
|
|
|
// -------------------------
|
2012-01-28 05:20:02 +08:00
|
|
|
|
2012-02-22 13:12:16 +08:00
|
|
|
// Shared (top/bottom) styles
|
|
|
|
.navbar-fixed-top,
|
|
|
|
.navbar-fixed-bottom {
|
2012-01-06 02:01:42 +08:00
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2012-12-01 07:23:13 +08:00
|
|
|
z-index: @zindex-navbar-fixed;
|
2012-08-18 02:46:23 +08:00
|
|
|
margin-bottom: 0; // remove 18px margin for default navbar
|
2012-10-01 14:11:54 +08:00
|
|
|
border-radius: 0;
|
2012-01-29 15:40:52 +08:00
|
|
|
}
|
2012-01-06 02:01:42 +08:00
|
|
|
|
2012-08-15 05:53:45 +08:00
|
|
|
// Reset container width
|
2012-08-20 12:12:52 +08:00
|
|
|
// Required here as we reset the width earlier on and the grid mixins don't override early enough
|
|
|
|
.navbar-static-top .container,
|
2012-02-28 14:34:25 +08:00
|
|
|
.navbar-fixed-top .container,
|
|
|
|
.navbar-fixed-bottom .container {
|
2012-12-01 07:43:07 +08:00
|
|
|
#grid > .core > .span(@grid-columns);
|
2012-02-28 14:34:25 +08:00
|
|
|
}
|
|
|
|
|
2012-02-22 13:12:16 +08:00
|
|
|
// Fixed to top
|
|
|
|
.navbar-fixed-top {
|
|
|
|
top: 0;
|
2012-08-20 12:12:52 +08:00
|
|
|
}
|
2012-02-22 13:12:16 +08:00
|
|
|
|
|
|
|
// Fixed to bottom
|
|
|
|
.navbar-fixed-bottom {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-06 02:01:42 +08:00
|
|
|
|
|
|
|
// NAVIGATION
|
|
|
|
// ----------
|
|
|
|
|
2012-01-08 12:40:28 +08:00
|
|
|
.navbar .nav {
|
2012-01-06 02:01:42 +08:00
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin: 0 10px 0 0;
|
2012-01-08 13:09:02 +08:00
|
|
|
}
|
|
|
|
.navbar .nav.pull-right {
|
|
|
|
float: right; // redeclare due to specificity
|
2012-08-24 00:38:56 +08:00
|
|
|
margin-right: 0; // remove margin on float right nav
|
2012-01-08 13:09:02 +08:00
|
|
|
}
|
|
|
|
.navbar .nav > li {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Links
|
|
|
|
.navbar .nav > li > a {
|
|
|
|
float: none;
|
2012-12-01 07:33:56 +08:00
|
|
|
// Vertically center the text given @navbar-height
|
|
|
|
padding: ((@navbar-height - @line-height-base) / 2) 15px ((@navbar-height - @line-height-base) / 2);
|
|
|
|
color: @navbar-link-color;
|
2012-01-08 13:09:02 +08:00
|
|
|
text-decoration: none;
|
2012-12-01 07:33:56 +08:00
|
|
|
text-shadow: 0 1px 0 @navbar-background-highlight;
|
2012-01-08 13:09:02 +08:00
|
|
|
}
|
2012-06-25 11:42:31 +08:00
|
|
|
.navbar .nav .dropdown-toggle .caret {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
2012-01-08 13:09:02 +08:00
|
|
|
// Hover
|
2012-05-17 15:23:11 +08:00
|
|
|
.navbar .nav > li > a:focus,
|
2012-01-08 13:09:02 +08:00
|
|
|
.navbar .nav > li > a:hover {
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-link-background-hover; // "transparent" is default to differentiate :hover from .active
|
|
|
|
color: @navbar-link-color-hover;
|
2012-01-08 13:09:02 +08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Active nav items
|
2012-08-18 02:22:45 +08:00
|
|
|
.navbar .nav > .active > a,
|
|
|
|
.navbar .nav > .active > a:hover,
|
|
|
|
.navbar .nav > .active > a:focus {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-link-color-active;
|
2012-01-09 06:33:14 +08:00
|
|
|
text-decoration: none;
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-link-background-active;
|
2012-01-08 13:09:02 +08:00
|
|
|
}
|
|
|
|
|
2012-04-02 06:22:52 +08:00
|
|
|
// Navbar button for toggling navbar items in responsive layouts
|
|
|
|
// These definitions need to come after '.navbar .btn'
|
|
|
|
.navbar .btn-navbar {
|
|
|
|
display: none;
|
|
|
|
float: right;
|
|
|
|
padding: 7px 10px;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
2012-12-01 07:33:56 +08:00
|
|
|
.buttonBackground(darken(@navbar-background-highlight, 5%), darken(@navbar-background, 5%));
|
2012-09-13 06:48:56 +08:00
|
|
|
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)");
|
2012-04-02 06:22:52 +08:00
|
|
|
}
|
|
|
|
.navbar .btn-navbar .icon-bar {
|
|
|
|
display: block;
|
|
|
|
width: 18px;
|
|
|
|
height: 2px;
|
|
|
|
background-color: #f5f5f5;
|
2012-10-01 14:11:54 +08:00
|
|
|
border-radius: 1px;
|
2012-04-02 06:22:52 +08:00
|
|
|
.box-shadow(0 1px 0 rgba(0,0,0,.25));
|
|
|
|
}
|
|
|
|
.btn-navbar .icon-bar + .icon-bar {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2012-01-08 13:09:02 +08:00
|
|
|
|
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
|
2012-01-08 13:09:02 +08:00
|
|
|
// Dropdown menus
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
// Menu position and menu carets
|
2012-08-15 05:29:31 +08:00
|
|
|
.navbar .nav > li > .dropdown-menu {
|
2012-01-08 13:09:02 +08:00
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
border-bottom: 7px solid #ccc;
|
2012-12-01 07:09:57 +08:00
|
|
|
border-bottom-color: @dropdown-border;
|
2012-01-08 13:09:02 +08:00
|
|
|
position: absolute;
|
|
|
|
top: -7px;
|
2012-01-13 07:29:16 +08:00
|
|
|
left: 9px;
|
2012-01-06 02:01:42 +08:00
|
|
|
}
|
2012-01-08 13:09:02 +08:00
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
border-left: 6px solid transparent;
|
|
|
|
border-right: 6px solid transparent;
|
2012-12-01 07:09:57 +08:00
|
|
|
border-bottom: 6px solid @dropdown-background;
|
2012-01-08 13:09:02 +08:00
|
|
|
position: absolute;
|
|
|
|
top: -6px;
|
2012-01-13 07:29:16 +08:00
|
|
|
left: 10px;
|
2012-01-06 02:01:42 +08:00
|
|
|
}
|
2012-01-08 13:09:02 +08:00
|
|
|
}
|
2012-03-06 12:20:42 +08:00
|
|
|
// Menu position and menu caret support for dropups via extra dropup class
|
2012-08-15 05:29:31 +08:00
|
|
|
.navbar-fixed-bottom .nav > li > .dropdown-menu {
|
2012-01-30 06:50:47 +08:00
|
|
|
&:before {
|
|
|
|
border-top: 7px solid #ccc;
|
2012-12-01 07:09:57 +08:00
|
|
|
border-top-color: @dropdown-border;
|
2012-01-30 06:50:47 +08:00
|
|
|
border-bottom: 0;
|
|
|
|
bottom: -7px;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
&:after {
|
2012-12-01 07:09:57 +08:00
|
|
|
border-top: 6px solid @dropdown-background;
|
2012-01-30 06:50:47 +08:00
|
|
|
border-bottom: 0;
|
|
|
|
bottom: -6px;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
}
|
2012-01-08 13:09:02 +08:00
|
|
|
|
2012-11-28 16:42:17 +08:00
|
|
|
// Caret should match text color on hover
|
|
|
|
.navbar .nav li.dropdown > a:hover .caret {
|
2013-01-13 20:26:52 +08:00
|
|
|
border-top-color: @navbar-link-color-hover;
|
|
|
|
border-bottom-color: @navbar-link-color-hover;
|
2012-11-28 16:42:17 +08:00
|
|
|
}
|
|
|
|
|
2012-01-08 13:09:02 +08:00
|
|
|
// Remove background color from open dropdown
|
2012-04-02 06:22:52 +08:00
|
|
|
.navbar .nav li.dropdown.open > .dropdown-toggle,
|
|
|
|
.navbar .nav li.dropdown.active > .dropdown-toggle,
|
|
|
|
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-link-background-active;
|
|
|
|
color: @navbar-link-color-active;
|
2012-01-08 13:09:02 +08:00
|
|
|
}
|
2012-07-31 01:08:27 +08:00
|
|
|
.navbar .nav li.dropdown > .dropdown-toggle .caret {
|
2012-12-01 07:33:56 +08:00
|
|
|
border-top-color: @navbar-link-color;
|
|
|
|
border-bottom-color: @navbar-link-color;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
|
|
|
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
|
|
|
|
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
|
|
|
|
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
|
2012-12-01 07:33:56 +08:00
|
|
|
border-top-color: @navbar-link-color-active;
|
|
|
|
border-bottom-color: @navbar-link-color-active;
|
2012-01-13 07:29:16 +08:00
|
|
|
}
|
|
|
|
|
2012-01-08 13:09:02 +08:00
|
|
|
// Right aligned menus need alt position
|
2012-08-15 07:24:58 +08:00
|
|
|
.navbar .pull-right > li > .dropdown-menu,
|
|
|
|
.navbar .nav > li > .dropdown-menu.pull-right {
|
2012-01-28 13:25:35 +08:00
|
|
|
left: auto;
|
2012-01-08 13:09:02 +08:00
|
|
|
right: 0;
|
|
|
|
&:before {
|
|
|
|
left: auto;
|
|
|
|
right: 12px;
|
2012-01-06 02:01:42 +08:00
|
|
|
}
|
2012-01-08 13:09:02 +08:00
|
|
|
&:after {
|
|
|
|
left: auto;
|
|
|
|
right: 13px;
|
2012-01-06 02:01:42 +08:00
|
|
|
}
|
2012-08-15 05:32:03 +08:00
|
|
|
.dropdown-menu {
|
|
|
|
left: auto;
|
|
|
|
right: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: -1px;
|
2012-10-01 14:11:54 +08:00
|
|
|
border-radius: 6px 0 6px 6px;
|
2012-08-15 05:32:03 +08:00
|
|
|
}
|
2012-06-16 04:07:44 +08:00
|
|
|
}
|
2012-06-25 12:03:39 +08:00
|
|
|
|
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Inverted navbar
|
|
|
|
// -------------------------
|
2012-06-25 12:03:39 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
.navbar-inverse {
|
2012-12-21 16:50:28 +08:00
|
|
|
background-color: @navbar-inverse-background;
|
2012-06-25 12:03:39 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
.brand,
|
|
|
|
.nav > li > a {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-link-color;
|
2012-07-31 01:08:27 +08:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
|
|
|
&:hover {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-link-color-hover;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
|
|
|
}
|
2012-07-05 14:31:30 +08:00
|
|
|
|
2012-11-11 09:58:00 +08:00
|
|
|
.brand {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-brand-color;
|
2012-11-11 09:58:00 +08:00
|
|
|
}
|
|
|
|
|
2012-11-05 14:50:07 +08:00
|
|
|
.navbar-text {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-text;
|
2012-11-05 14:50:07 +08:00
|
|
|
}
|
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
.nav > li > a:focus,
|
|
|
|
.nav > li > a:hover {
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-inverse-link-background-hover;
|
|
|
|
color: @navbar-inverse-link-color-hover;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
2012-07-05 14:31:30 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
.nav .active > a,
|
|
|
|
.nav .active > a:hover,
|
|
|
|
.nav .active > a:focus {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-link-color-active;
|
|
|
|
background-color: @navbar-inverse-link-background-active;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
2012-06-25 12:03:39 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Inline text links
|
|
|
|
.navbar-link {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-link-color;
|
2012-07-31 01:08:27 +08:00
|
|
|
&:hover {
|
2012-12-01 07:33:56 +08:00
|
|
|
color: @navbar-inverse-link-color-hover;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
|
|
|
}
|
2012-06-29 12:20:40 +08:00
|
|
|
|
2012-08-14 13:57:40 +08:00
|
|
|
// Dividers in navbar
|
|
|
|
.divider-vertical {
|
2012-12-01 07:33:56 +08:00
|
|
|
border-left-color: @navbar-inverse-background;
|
|
|
|
border-right-color: @navbar-inverse-background-highlight;
|
2012-08-14 13:57:40 +08:00
|
|
|
}
|
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Dropdowns
|
|
|
|
.nav li.dropdown.open > .dropdown-toggle,
|
|
|
|
.nav li.dropdown.active > .dropdown-toggle,
|
|
|
|
.nav li.dropdown.open.active > .dropdown-toggle {
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-inverse-link-background-active;
|
|
|
|
color: @navbar-inverse-link-color-active;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
2012-11-28 16:42:17 +08:00
|
|
|
.nav li.dropdown > a:hover .caret {
|
2012-12-01 07:33:56 +08:00
|
|
|
border-top-color: @navbar-inverse-link-color-active;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color-active;
|
2012-11-28 16:42:17 +08:00
|
|
|
}
|
2012-07-31 01:08:27 +08:00
|
|
|
.nav li.dropdown > .dropdown-toggle .caret {
|
2012-12-01 07:33:56 +08:00
|
|
|
border-top-color: @navbar-inverse-link-color;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
|
|
|
.nav li.dropdown.open > .dropdown-toggle .caret,
|
|
|
|
.nav li.dropdown.active > .dropdown-toggle .caret,
|
|
|
|
.nav li.dropdown.open.active > .dropdown-toggle .caret {
|
2012-12-01 07:33:56 +08:00
|
|
|
border-top-color: @navbar-inverse-link-color-active;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color-active;
|
2012-07-31 01:08:27 +08:00
|
|
|
}
|
2012-06-25 12:03:39 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Navbar search
|
|
|
|
.navbar-search {
|
|
|
|
.search-query {
|
2012-12-01 07:05:23 +08:00
|
|
|
color: #fff;
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-inverse-search-background;
|
|
|
|
border-color: @navbar-inverse-search-border;
|
2012-09-13 06:53:29 +08:00
|
|
|
.box-shadow(~"inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15)");
|
2012-07-31 01:08:27 +08:00
|
|
|
.transition(none);
|
2012-12-01 07:33:56 +08:00
|
|
|
.placeholder(@navbar-inverse-search-placeholder-color);
|
2012-07-31 01:08:27 +08:00
|
|
|
|
2012-09-26 13:07:53 +08:00
|
|
|
// Focus states (we use .focused since IE8 and down doesn't support :focus)
|
2012-07-31 01:08:27 +08:00
|
|
|
&:focus,
|
|
|
|
&.focused {
|
|
|
|
padding: 5px 15px;
|
|
|
|
color: @grayDark;
|
2012-12-01 07:05:23 +08:00
|
|
|
text-shadow: 0 1px 0 #fff;
|
2012-12-01 07:33:56 +08:00
|
|
|
background-color: @navbar-inverse-search-background-focus;
|
2012-07-31 01:08:27 +08:00
|
|
|
border: 0;
|
|
|
|
.box-shadow(0 0 3px rgba(0,0,0,.15));
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-06 01:37:23 +08:00
|
|
|
|
2012-07-31 01:08:27 +08:00
|
|
|
// Navbar collapse button
|
|
|
|
.btn-navbar {
|
2012-12-01 07:33:56 +08:00
|
|
|
.buttonBackground(darken(@navbar-inverse-background-highlight, 5%), darken(@navbar-inverse-background, 5%));
|
2012-07-06 01:37:23 +08:00
|
|
|
}
|
|
|
|
|
2012-06-25 12:03:39 +08:00
|
|
|
}
|
2013-01-16 09:55:14 +08:00
|
|
|
|
|
|
|
*/
|