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 {
|
|
|
|
padding: 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-01-15 20:55:14 -05:00
|
|
|
.clear_float();
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Navbar nav links
|
2013-01-16 19:14:41 -05:00
|
|
|
// -------------------------
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
.navbar {
|
|
|
|
.nav {
|
|
|
|
margin-top: 15px; // space out from .navbar .brand and .btn-navbar
|
|
|
|
}
|
|
|
|
.nav > li > a {
|
|
|
|
padding-top: (@navbar-height - @line-height-base) / 2;
|
|
|
|
padding-bottom: (@navbar-height - @line-height-base) / 2;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Navbar alignment options
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Static navbar
|
|
|
|
.navbar-static-top {
|
|
|
|
position: static;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fixed navbar
|
|
|
|
.navbar-fixed-top,
|
|
|
|
.navbar-fixed-bottom {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: @zindex-navbar-fixed;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.navbar-fixed-top { top: 0; }
|
|
|
|
.navbar-fixed-bottom { bottom: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Navbar optional components
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Brand/project name
|
2013-01-15 20:55:14 -05:00
|
|
|
.navbar .brand {
|
|
|
|
display: inline-block;
|
2013-01-16 19:20:29 -05:00
|
|
|
padding: 7px 15px;
|
2013-01-15 20:55:14 -05:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
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-01-15 20:55:14 -05:00
|
|
|
&:hover {
|
2013-01-16 19:14:41 -05:00
|
|
|
color: @navbar-brand-color-hover;
|
2013-01-15 20:55:14 -05:00
|
|
|
text-decoration: none;
|
2013-01-16 19:14:41 -05:00
|
|
|
background-color: @navbar-brand-bg-hover;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Collapsible navbar toggle
|
2013-01-15 20:55:14 -05:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Dividers in navbar
|
|
|
|
.navbar .divider-vertical {
|
|
|
|
height: @navbar-height * .6;
|
|
|
|
margin: (@navbar-height * .2) 9px;
|
|
|
|
border-left: 1px solid darken(@navbar-bg, 5%);
|
|
|
|
border-right: 1px solid lighten(@navbar-bg, 5%);
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
2013-01-16 19:14:41 -05:00
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Navbar form
|
|
|
|
.navbar-form {
|
|
|
|
.navbar-vertical-align(32px); // Vertically center in navbar
|
|
|
|
}
|
2013-01-17 14:20:19 -05:00
|
|
|
|
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-16 18:35:41 -05:00
|
|
|
background-color: @navbar-inverse-bg;
|
2013-01-15 20:55:14 -05:00
|
|
|
|
|
|
|
.brand {
|
2013-01-17 02:33:26 -05:00
|
|
|
color: @navbar-inverse-brand-color;
|
2013-01-15 20:55:14 -05:00
|
|
|
&:hover {
|
2013-01-17 02:33:26 -05:00
|
|
|
color: @navbar-inverse-brand-color-hover;
|
|
|
|
background-color: @navbar-inverse-brand-bg-hover;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
2013-01-17 02:33:26 -05:00
|
|
|
|
|
|
|
.navbar-text {
|
|
|
|
color: @navbar-inverse-text;
|
|
|
|
}
|
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
.nav > li > a {
|
2013-01-16 18:35:41 -05:00
|
|
|
color: @navbar-inverse-link-color;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
2013-01-16 18:35:41 -05:00
|
|
|
.nav > li > a:hover,
|
|
|
|
.nav > li > a:focus {
|
|
|
|
color: @navbar-inverse-link-color-hover;
|
|
|
|
background-color: @navbar-inverse-link-bg-hover;
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
2013-01-16 18:35:41 -05: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-15 20:55:14 -05:00
|
|
|
}
|
2013-01-17 14:34:46 -05:00
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
.btn-navbar {
|
|
|
|
background-color: #444;
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
.divider-vertical {
|
|
|
|
border-left-color: darken(@navbar-inverse-bg, 5%);
|
|
|
|
border-right-color: lighten(@navbar-inverse-bg, 5%);
|
|
|
|
}
|
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-01-17 14:34:46 -05:00
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
.navbar {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.navbar .brand {
|
|
|
|
float: left;
|
|
|
|
padding-top: (@navbar-height - @line-height-base) / 2;
|
|
|
|
padding-bottom: (@navbar-height - @line-height-base) / 2;
|
|
|
|
margin-left: -15px;
|
|
|
|
}
|
|
|
|
.navbar .nav {
|
|
|
|
float: left;
|
|
|
|
margin-top: 0; // undo top margin to make nav extend full height of navbar
|
|
|
|
.clear_float();
|
2013-01-15 20:55:14 -05:00
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
&.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.navbar .nav > li {
|
|
|
|
float: left;
|
|
|
|
}
|
2012-08-27 13:32:07 -04:00
|
|
|
|
2013-01-17 14:34:46 -05:00
|
|
|
// Required to make the collapsing navbar work on regular desktops
|
|
|
|
.navbar .btn-navbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.nav-collapse.collapse {
|
|
|
|
height: auto !important;
|
|
|
|
overflow: visible !important;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2012-11-30 18:33:56 -05:00
|
|
|
color: @navbar-link-color-hover;
|
2012-01-14 20:16:46 -05:00
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
|
2012-08-14 01:57:40 -04:00
|
|
|
// Dividers in navbar
|
|
|
|
// -------------------------
|
|
|
|
.navbar .divider-vertical {
|
2012-11-30 18:33:56 -05:00
|
|
|
height: @navbar-height;
|
2012-08-14 01:57:40 -04:00
|
|
|
margin: 0 9px;
|
2012-11-30 18:33:56 -05:00
|
|
|
border-left: 1px solid @navbar-background;
|
|
|
|
border-right: 1px solid @navbar-background-highlight;
|
2012-08-14 01:57:40 -04: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
|
|
|
}
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
// Navbar search
|
2012-08-24 17:45:02 -04:00
|
|
|
// -------------------------
|
2012-01-05 13:01:42 -05:00
|
|
|
.navbar-search {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
2012-07-24 04:44:12 -04:00
|
|
|
.navbarVerticalAlign(30px); // Vertically center in navbar
|
2012-01-05 13:01:42 -05:00
|
|
|
margin-bottom: 0;
|
|
|
|
.search-query {
|
2012-07-13 13:58:20 -04:00
|
|
|
margin-bottom: 0;
|
2012-07-24 04:44:12 -04:00
|
|
|
padding: 4px 14px;
|
2012-01-05 13:01:42 -05:00
|
|
|
#font > .sans-serif(13px, normal, 1);
|
2012-10-01 02:11:54 -04:00
|
|
|
border-radius: 15px; // redeclare because of specificity of the type attribute
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-08 00:09:02 -05:00
|
|
|
// Dropdown menus
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
// Menu position and menu carets
|
2012-08-14 17:29:31 -04:00
|
|
|
.navbar .nav > li > .dropdown-menu {
|
2012-01-08 00:09:02 -05:00
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
border-bottom: 7px solid #ccc;
|
2012-11-30 18:09:57 -05:00
|
|
|
border-bottom-color: @dropdown-border;
|
2012-01-08 00:09:02 -05:00
|
|
|
position: absolute;
|
|
|
|
top: -7px;
|
2012-01-12 18:29:16 -05:00
|
|
|
left: 9px;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-01-08 00:09:02 -05:00
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
border-left: 6px solid transparent;
|
|
|
|
border-right: 6px solid transparent;
|
2012-11-30 18:09:57 -05:00
|
|
|
border-bottom: 6px solid @dropdown-background;
|
2012-01-08 00:09:02 -05:00
|
|
|
position: absolute;
|
|
|
|
top: -6px;
|
2012-01-12 18:29:16 -05:00
|
|
|
left: 10px;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-01-08 00:09:02 -05:00
|
|
|
}
|
2012-03-05 23:20:42 -05:00
|
|
|
// Menu position and menu caret support for dropups via extra dropup class
|
2012-08-14 17:29:31 -04:00
|
|
|
.navbar-fixed-bottom .nav > li > .dropdown-menu {
|
2012-01-29 17:50:47 -05:00
|
|
|
&:before {
|
|
|
|
border-top: 7px solid #ccc;
|
2012-11-30 18:09:57 -05:00
|
|
|
border-top-color: @dropdown-border;
|
2012-01-29 17:50:47 -05:00
|
|
|
border-bottom: 0;
|
|
|
|
bottom: -7px;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
&:after {
|
2012-11-30 18:09:57 -05:00
|
|
|
border-top: 6px solid @dropdown-background;
|
2012-01-29 17:50:47 -05:00
|
|
|
border-bottom: 0;
|
|
|
|
bottom: -6px;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
}
|
2012-01-08 00:09:02 -05:00
|
|
|
|
2012-11-28 03:42:17 -05:00
|
|
|
// Caret should match text color on hover
|
|
|
|
.navbar .nav li.dropdown > a:hover .caret {
|
2013-01-13 07:26:52 -05:00
|
|
|
border-top-color: @navbar-link-color-hover;
|
|
|
|
border-bottom-color: @navbar-link-color-hover;
|
2012-11-28 03:42:17 -05:00
|
|
|
}
|
|
|
|
|
2012-01-08 00:09:02 -05:00
|
|
|
// Remove background color from open dropdown
|
2012-04-01 18:22:52 -04:00
|
|
|
.navbar .nav li.dropdown.open > .dropdown-toggle,
|
|
|
|
.navbar .nav li.dropdown.active > .dropdown-toggle,
|
|
|
|
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
|
2012-11-30 18:33:56 -05:00
|
|
|
background-color: @navbar-link-background-active;
|
|
|
|
color: @navbar-link-color-active;
|
2012-01-08 00:09:02 -05:00
|
|
|
}
|
2012-07-30 13:08:27 -04:00
|
|
|
.navbar .nav li.dropdown > .dropdown-toggle .caret {
|
2012-11-30 18:33:56 -05:00
|
|
|
border-top-color: @navbar-link-color;
|
|
|
|
border-bottom-color: @navbar-link-color;
|
2012-07-30 13:08:27 -04: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-11-30 18:33:56 -05:00
|
|
|
border-top-color: @navbar-link-color-active;
|
|
|
|
border-bottom-color: @navbar-link-color-active;
|
2012-01-12 18:29:16 -05:00
|
|
|
}
|
|
|
|
|
2012-01-08 00:09:02 -05:00
|
|
|
// Right aligned menus need alt position
|
2012-08-14 19:24:58 -04:00
|
|
|
.navbar .pull-right > li > .dropdown-menu,
|
|
|
|
.navbar .nav > li > .dropdown-menu.pull-right {
|
2012-01-28 00:25:35 -05:00
|
|
|
left: auto;
|
2012-01-08 00:09:02 -05:00
|
|
|
right: 0;
|
|
|
|
&:before {
|
|
|
|
left: auto;
|
|
|
|
right: 12px;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-01-08 00:09:02 -05:00
|
|
|
&:after {
|
|
|
|
left: auto;
|
|
|
|
right: 13px;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-08-14 17:32:03 -04:00
|
|
|
.dropdown-menu {
|
|
|
|
left: auto;
|
|
|
|
right: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: -1px;
|
2012-10-01 02:11:54 -04:00
|
|
|
border-radius: 6px 0 6px 6px;
|
2012-08-14 17:32:03 -04:00
|
|
|
}
|
2012-06-15 16:07:44 -04:00
|
|
|
}
|
2012-06-25 00:03:39 -04:00
|
|
|
|
|
|
|
|
2012-07-30 13:08:27 -04:00
|
|
|
// Inverted navbar
|
|
|
|
// -------------------------
|
2012-06-25 00:03:39 -04:00
|
|
|
|
2012-07-30 13:08:27 -04:00
|
|
|
.navbar-inverse {
|
2012-08-14 01:57:40 -04:00
|
|
|
|
2012-07-30 13:08:27 -04:00
|
|
|
// Dropdowns
|
|
|
|
.nav li.dropdown.open > .dropdown-toggle,
|
|
|
|
.nav li.dropdown.active > .dropdown-toggle,
|
|
|
|
.nav li.dropdown.open.active > .dropdown-toggle {
|
2012-11-30 18:33:56 -05:00
|
|
|
background-color: @navbar-inverse-link-background-active;
|
|
|
|
color: @navbar-inverse-link-color-active;
|
2012-07-30 13:08:27 -04:00
|
|
|
}
|
2012-11-28 03:42:17 -05:00
|
|
|
.nav li.dropdown > a:hover .caret {
|
2012-11-30 18:33:56 -05:00
|
|
|
border-top-color: @navbar-inverse-link-color-active;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color-active;
|
2012-11-28 03:42:17 -05:00
|
|
|
}
|
2012-07-30 13:08:27 -04:00
|
|
|
.nav li.dropdown > .dropdown-toggle .caret {
|
2012-11-30 18:33:56 -05:00
|
|
|
border-top-color: @navbar-inverse-link-color;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color;
|
2012-07-30 13:08:27 -04:00
|
|
|
}
|
|
|
|
.nav li.dropdown.open > .dropdown-toggle .caret,
|
|
|
|
.nav li.dropdown.active > .dropdown-toggle .caret,
|
|
|
|
.nav li.dropdown.open.active > .dropdown-toggle .caret {
|
2012-11-30 18:33:56 -05:00
|
|
|
border-top-color: @navbar-inverse-link-color-active;
|
|
|
|
border-bottom-color: @navbar-inverse-link-color-active;
|
2012-07-30 13:08:27 -04:00
|
|
|
}
|
2012-06-25 00:03:39 -04:00
|
|
|
|
2012-07-30 13:08:27 -04:00
|
|
|
// Navbar search
|
|
|
|
.navbar-search {
|
|
|
|
.search-query {
|
2012-11-30 18:05:23 -05:00
|
|
|
color: #fff;
|
2012-11-30 18:33:56 -05:00
|
|
|
background-color: @navbar-inverse-search-background;
|
|
|
|
border-color: @navbar-inverse-search-border;
|
2012-09-12 18:53:29 -04:00
|
|
|
.box-shadow(~"inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15)");
|
2012-07-30 13:08:27 -04:00
|
|
|
.transition(none);
|
2012-11-30 18:33:56 -05:00
|
|
|
.placeholder(@navbar-inverse-search-placeholder-color);
|
2012-07-30 13:08:27 -04:00
|
|
|
|
2012-09-26 01:07:53 -04:00
|
|
|
// Focus states (we use .focused since IE8 and down doesn't support :focus)
|
2012-07-30 13:08:27 -04:00
|
|
|
&:focus,
|
|
|
|
&.focused {
|
|
|
|
padding: 5px 15px;
|
|
|
|
color: @grayDark;
|
2012-11-30 18:05:23 -05:00
|
|
|
text-shadow: 0 1px 0 #fff;
|
2012-11-30 18:33:56 -05:00
|
|
|
background-color: @navbar-inverse-search-background-focus;
|
2012-07-30 13:08:27 -04:00
|
|
|
border: 0;
|
|
|
|
.box-shadow(0 0 3px rgba(0,0,0,.15));
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-05 13:37:23 -04:00
|
|
|
|
2012-06-25 00:03:39 -04:00
|
|
|
}
|
2013-01-15 20:55:14 -05:00
|
|
|
|
|
|
|
*/
|