2013-12-23 17:36:32 -06:00
|
|
|
// Cyborg 2.3.2
|
2013-07-31 11:21:33 -05:00
|
|
|
// Bootswatch
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// TYPOGRAPHY
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
label, input, button, select, textarea,
|
|
|
|
.navbar .search-query:-moz-placeholder,
|
|
|
|
.navbar .search-query::-webkit-input-placeholder {
|
|
|
|
font-family: 'Droid Sans', sans-serif;
|
|
|
|
color: @gray;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 5px solid @grayDark;
|
|
|
|
|
|
|
|
&.pull-right {
|
|
|
|
border-right: 5px solid @grayDark;
|
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// SCAFFOLDING
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
html {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-height: 100%;
|
|
|
|
//#gradient > .vertical (@bodyBackground, #252A30);
|
|
|
|
//background: @bodyBackground;
|
2013-12-29 10:30:38 -06:00
|
|
|
background: @bodyBackground;
|
|
|
|
// url('../img/cubes.png') repeat right top;
|
2013-12-23 17:36:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
border-bottom: 1px solid @grayDark
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NAVBAR
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
|
|
|
|
.navbar-inner {
|
2013-12-23 17:36:32 -06:00
|
|
|
.border-radius(0);
|
|
|
|
.box-shadow(none);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.brand {
|
2013-12-23 17:36:32 -06:00
|
|
|
padding: 15px 20px 15px;
|
|
|
|
color: @grayLighter;
|
|
|
|
font-weight: normal;
|
|
|
|
text-shadow: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav > li > a {
|
|
|
|
padding: 15px 15px 14px;
|
|
|
|
border-bottom: 1px solid transparent;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav > li > a:hover,
|
|
|
|
.nav > .active > a,
|
|
|
|
.nav > .active > a:hover {
|
|
|
|
border-bottom: 1px solid @blue;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav > .active > a,
|
|
|
|
.nav > .active > a:hover,
|
|
|
|
.nav > .active > a:focus {
|
|
|
|
.box-shadow(none);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.navbar-text {
|
|
|
|
margin-bottom: 1px;
|
|
|
|
padding: 15px 15px 14px;
|
|
|
|
line-height: inherit;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.divider-vertical {
|
2013-12-23 17:36:32 -06:00
|
|
|
margin: 0;
|
|
|
|
border-left: 1px solid @grayDark;
|
|
|
|
border-right-width: 0;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.search-query,
|
|
|
|
.search-query:focus,
|
|
|
|
.search-query.focused {
|
|
|
|
.border-radius(1px);
|
|
|
|
background-color: @grayDark;
|
|
|
|
line-height: normal;
|
|
|
|
color: @grayLight;
|
|
|
|
text-shadow: none;
|
|
|
|
.placeholder(@gray);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&-inverse {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: @navbarCollapseWidth) {
|
|
|
|
|
|
|
|
.navbar .nav-collapse {
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav li > a {
|
|
|
|
border: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
color: @grayLighter;
|
2013-12-23 17:36:32 -06:00
|
|
|
font-weight: normal;
|
|
|
|
text-shadow: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: none;
|
|
|
|
background-color: @blue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav .active > a {
|
|
|
|
border: none;
|
|
|
|
background-color: @blue;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.dropdown-menu a:hover {
|
|
|
|
background-color: @blue;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-form,
|
|
|
|
.navbar-search {
|
2013-12-23 17:36:32 -06:00
|
|
|
border-top: none;
|
|
|
|
border-bottom: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-header {
|
2013-12-23 17:36:32 -06:00
|
|
|
color: rgba(128, 128, 128, 0.6);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-inverse .nav-collapse {
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav li > a:hover {
|
|
|
|
background-color: #111;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav .active > a {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav li.dropdown.open > .dropdown-toggle,
|
|
|
|
.nav li.dropdown.active > .dropdown-toggle,
|
|
|
|
.nav li.dropdown.open.active > .dropdown-toggle {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
2013-08-01 00:08:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
.dropdown-menu {
|
|
|
|
.border-radius(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
div.subnav {
|
|
|
|
|
|
|
|
margin: 0 1px;
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @grayDarker;
|
|
|
|
background-image: none;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid @grayDark;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav > li > a,
|
|
|
|
.nav > li:first-child > a,
|
|
|
|
.nav > li:first-child > a:hover {
|
|
|
|
padding: 11px 12px;
|
|
|
|
border: none;
|
|
|
|
background-color: @grayDarker;
|
|
|
|
color: @grayLight;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav > li > a:hover,
|
2013-07-31 11:21:33 -05:00
|
|
|
.nav > li.active > a,
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav > li.active > a:hover,
|
2013-07-31 11:21:33 -05:00
|
|
|
.nav > li:first-child > a:hover {
|
2013-12-23 17:36:32 -06:00
|
|
|
padding: 11px 12px;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid @blue;
|
|
|
|
color: @white;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav li.nav-header {
|
|
|
|
text-shadow: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
|
|
|
|
|
|
|
|
&-fixed {
|
2013-07-31 11:21:33 -05:00
|
|
|
top: @navbarHeight;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NAV
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.nav-tabs {
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2014-08-26 08:02:25 -05:00
|
|
|
border-bottom: 1px solid @fullEditBorder;
|
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
& > li > a {
|
2013-12-23 17:36:32 -06:00
|
|
|
.border-radius(0);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
li > a:hover,
|
2013-07-31 11:21:33 -05:00
|
|
|
li.active > a,
|
|
|
|
li.active > a:hover {
|
2014-08-25 15:39:40 -05:00
|
|
|
border-color: transparent;
|
|
|
|
background-color: transparent;
|
2014-08-26 02:32:30 -05:00
|
|
|
border-bottom: 2px solid @blue;
|
2013-12-23 17:36:32 -06:00
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.disabled > a {
|
|
|
|
color: @textColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.open .dropdown-toggle {
|
|
|
|
background-color: #060606;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-pills {
|
|
|
|
|
|
|
|
li > a:hover {
|
|
|
|
background-color: @blue;
|
2013-07-31 11:21:33 -05:00
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
li.disabled > a {
|
|
|
|
color: @textColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.open .dropdown-toggle {
|
|
|
|
background-color: #060606;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu li > a:hover {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list {
|
|
|
|
|
|
|
|
li > a {
|
|
|
|
text-shadow: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
li > a:hover {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @blue;
|
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-header {
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider {
|
2013-07-31 11:21:33 -05:00
|
|
|
background-color: transparent;
|
2013-12-23 17:36:32 -06:00
|
|
|
border-bottom: 1px solid @grayDark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-stacked {
|
|
|
|
|
|
|
|
li > a {
|
|
|
|
border: 1px solid @grayDark !important;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
li > a:hover,
|
|
|
|
li.active > a {
|
|
|
|
background-color: @blue;
|
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabbable {
|
|
|
|
.nav-tabs,
|
|
|
|
.nav-tabs li.active > a {
|
|
|
|
border-color: @grayDark;
|
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: transparent;
|
|
|
|
background-image: none;
|
|
|
|
border-width: 0;
|
|
|
|
.box-shadow(none);
|
|
|
|
font-size: 14px;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
li {
|
2013-12-23 17:36:32 -06:00
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li > a {
|
|
|
|
color: @blue;
|
|
|
|
text-shadow: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
|
|
|
|
ul {
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
ul > li > a:hover,
|
2013-07-31 11:21:33 -05:00
|
|
|
ul > .active > a,
|
2013-12-23 17:36:32 -06:00
|
|
|
ul > .active > span {
|
|
|
|
// color: @white;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ul > .disabled > a,
|
|
|
|
ul > .disabled > a:hover,
|
|
|
|
ul > .disabled > span,
|
|
|
|
ul > .disabled > span:hover {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pager {
|
|
|
|
|
|
|
|
li > a,
|
|
|
|
li > span {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @bodyBackground;
|
|
|
|
border: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
&:hover {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @blue;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
2013-09-06 15:20:12 -05:00
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
.disabled a,
|
|
|
|
.disabled a:hover {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @bodyBackground;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
2013-12-23 17:36:32 -06:00
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// BUTTONS
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
.btn {
|
2013-12-23 17:36:32 -06:00
|
|
|
padding: 5px 12px;
|
|
|
|
background-image: none;
|
|
|
|
.box-shadow(none);
|
|
|
|
border: none;
|
2014-08-26 02:46:15 -05:00
|
|
|
.border-radius(2px);
|
2013-12-23 17:36:32 -06:00
|
|
|
text-shadow: none;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
box-shadow: inset 0 2px 4px rgba(0,0,0,.15),~" "0 1px 2px rgba(0,0,0,.05);
|
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.btn-large {
|
|
|
|
padding: 22px 30px;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.btn-small {
|
|
|
|
padding: 2px 10px;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.btn-mini {
|
|
|
|
padding: 2px 6px;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.btn-group {
|
|
|
|
|
|
|
|
& > .btn:first-child,
|
|
|
|
& > .btn:last-child,
|
|
|
|
& > .dropdown-toggle {
|
|
|
|
.border-radius(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .btn + .dropdown-toggle {
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// FORMS
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
input, textarea, select {
|
|
|
|
border-width: 2px;
|
|
|
|
.border-radius(1px);
|
|
|
|
}
|
|
|
|
|
|
|
|
select, textarea,
|
|
|
|
input[type="text"], input[type="password"], input[type="datetime"],
|
|
|
|
input[type="datetime-local"], input[type="date"], input[type="month"],
|
|
|
|
input[type="time"], input[type="week"], input[type="number"],
|
|
|
|
input[type="email"], input[type="url"], input[type="search"],
|
|
|
|
input[type="tel"], input[type="color"], .uneditable-input {
|
|
|
|
color: @grayLight;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly], .uneditable-input {
|
|
|
|
border-color: #444;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
input.focused,
|
|
|
|
textarea.focused {
|
|
|
|
border-color: rgba(82,168,236,1);
|
|
|
|
outline: 0;
|
|
|
|
outline: thin dotted \9; /* IE6-9 */
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
input[type="file"]:focus,
|
|
|
|
input[type="radio"]:focus,
|
|
|
|
input[type="checkbox"]:focus,
|
|
|
|
select:focus {
|
|
|
|
.box-shadow(none); // override for file inputs
|
|
|
|
.tab-focus();
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
legend, label {
|
|
|
|
color: @textColor;
|
|
|
|
border-bottom: 0px solid #222;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.form-actions {
|
|
|
|
border-top: 1px solid #222;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// TABLES
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
.table {
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.border-radius(1px);
|
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
tbody tr.success td {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @green;
|
|
|
|
color: @white;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
tbody tr.error td {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @red;
|
|
|
|
color: @white;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
tbody tr.info td {
|
2013-12-23 17:36:32 -06:00
|
|
|
background-color: @blue;
|
|
|
|
color: @white;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
// ALERTS, LABELS, BADGES
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
.alert,
|
|
|
|
.alert .alert-heading,
|
|
|
|
.alert-success,
|
|
|
|
.alert-success .alert-heading,
|
|
|
|
.alert-danger,
|
|
|
|
.alert-error,
|
|
|
|
.alert-danger .alert-heading,
|
|
|
|
.alert-error .alert-heading,
|
|
|
|
.alert-info,
|
|
|
|
.alert-info .alert-heading {
|
|
|
|
color: @grayLighter;
|
|
|
|
text-shadow: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
2013-07-31 11:21:33 -05:00
|
|
|
color: @grayLighter;
|
|
|
|
}
|
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
.badge {
|
|
|
|
border-radius: 0;
|
|
|
|
font-weight: 200;
|
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label, .alert { background-color: darken(@gray, 20%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label:hover { background-color: darken(@gray, 30%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label-important,
|
|
|
|
.alert-danger,
|
|
|
|
.alert-error { background-color: @red; }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label-important:hover { background-color: darken(@red, 10%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label-warning { background-color: darken(@orange, 10%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label-warning:hover { background-color: darken(@orange, 20%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label-success, .alert-success { background-color: darken(@green, 3%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.label-success:hover { background-color: darken(@green, 13%); }
|
|
|
|
|
|
|
|
.label-info, .alert-info { background-color: darken(@blueDark, 10%); }
|
|
|
|
|
|
|
|
.label-info:hover { background-color: darken(@blueDark, 20%); }
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// MISC
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
2013-12-29 11:10:01 -06:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
.well, .hero-unit {
|
2013-12-29 10:30:38 -06:00
|
|
|
.border-radius(0px);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.well, .hero-unit {
|
|
|
|
border-top: solid 1px lighten(@grayDark, 5%);
|
|
|
|
.box-shadow(0 2px 4px rgba(0,0,0,.8));
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.thumbnail {
|
|
|
|
border-color: @grayDark;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.progress {
|
|
|
|
background-color: #060606;
|
|
|
|
background-image: none;
|
|
|
|
.border-radius(0);
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
2013-12-23 17:36:32 -06:00
|
|
|
.border-radius(1px);
|
|
|
|
border-top: solid 1px lighten(@grayDark, 5%);
|
2014-08-26 02:32:30 -05:00
|
|
|
background-color: @grafanaPanelBackground;
|
2013-12-23 17:36:32 -06:00
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.modal-header {
|
2014-08-26 04:12:26 -05:00
|
|
|
border-bottom: 1px solid @grafanaPanelBackground;
|
2013-12-23 17:36:32 -06:00
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.modal-footer {
|
2014-08-26 02:32:30 -05:00
|
|
|
background-color: @grafanaPanelBackground;
|
2014-08-26 04:12:26 -05:00
|
|
|
border-top: 1px solid @grafanaPanelBackground;
|
2013-12-29 10:30:38 -06:00
|
|
|
.border-radius(0 0 0px 0px);
|
2013-12-23 17:36:32 -06:00
|
|
|
.box-shadow(none);
|
|
|
|
}
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
.popover {
|
|
|
|
.border-radius(0);
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
border-bottom: none;
|
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
.footer {
|
|
|
|
border-top: 1px solid @grayDark;
|
2013-07-31 11:21:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// MEDIA QUERIES
|
|
|
|
// -----------------------------------------------------
|