2013-07-31 21:02:41 -04:00
|
|
|
|
2013-08-17 21:59:50 -04:00
|
|
|
//
|
|
|
|
// Load core variables and mixins
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
@import "variables.less";
|
|
|
|
@import "mixins.less";
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-31 21:02:41 -04:00
|
|
|
//
|
|
|
|
// Buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-08-17 21:59:50 -04:00
|
|
|
// Common styles
|
|
|
|
.btn-default,
|
|
|
|
.btn-primary,
|
|
|
|
.btn-success,
|
|
|
|
.btn-warning,
|
|
|
|
.btn-danger {
|
2013-07-31 21:02:41 -04:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
|
2014-07-09 00:19:14 -04:00
|
|
|
@shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
|
|
|
|
.box-shadow(@shadow);
|
2013-07-31 21:02:41 -04:00
|
|
|
|
|
|
|
// Reset the shadow
|
2013-08-17 21:59:50 -04:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-17 22:14:13 -04:00
|
|
|
// Mixin for generating new styles
|
2013-09-16 08:07:03 -04:00
|
|
|
.btn-styles(@btn-color: #555) {
|
2013-08-23 13:36:37 -04:00
|
|
|
#gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
|
2013-10-21 01:41:57 -04:00
|
|
|
.reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
|
2013-08-23 13:36:37 -04:00
|
|
|
background-repeat: repeat-x;
|
|
|
|
border-color: darken(@btn-color, 14%);
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: darken(@btn-color, 12%);
|
|
|
|
background-position: 0 -15px;
|
|
|
|
}
|
2013-08-17 21:59:50 -04:00
|
|
|
|
2013-07-31 21:02:41 -04:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2013-08-23 13:36:37 -04:00
|
|
|
background-color: darken(@btn-color, 12%);
|
|
|
|
border-color: darken(@btn-color, 14%);
|
2013-07-31 21:02:41 -04:00
|
|
|
}
|
2014-06-18 22:14:26 -04:00
|
|
|
|
|
|
|
&:disabled,
|
|
|
|
&[disabled] {
|
|
|
|
background-color: darken(@btn-color, 12%);
|
|
|
|
background-image: none;
|
|
|
|
}
|
2013-07-31 21:02:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Common styles
|
|
|
|
.btn {
|
|
|
|
// Remove the gradient for the pressed/active state
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply the mixin to the buttons
|
2014-07-08 20:09:47 -04:00
|
|
|
.btn-primary { .btn-styles(@btn-primary-bg); }
|
|
|
|
.btn-secondary { .btn-styles(@btn-secondary-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
|
2014-07-08 20:30:11 -04:00
|
|
|
.btn-info { .btn-styles(@btn-info-bg); }
|
2014-07-08 20:09:47 -04:00
|
|
|
.btn-success { .btn-styles(@btn-success-bg); }
|
|
|
|
.btn-warning { .btn-styles(@btn-warning-bg); }
|
|
|
|
.btn-danger { .btn-styles(@btn-danger-bg); }
|
2013-07-31 21:02:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-17 21:59:50 -04:00
|
|
|
//
|
|
|
|
// Images
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.img-thumbnail {
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(0 1px 2px rgba(0,0,0,.075));
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Dropdowns
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.dropdown-menu > li > a:hover,
|
2013-09-01 05:00:40 -04:00
|
|
|
.dropdown-menu > li > a:focus {
|
|
|
|
#gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));
|
|
|
|
background-color: darken(@dropdown-link-hover-bg, 5%);
|
|
|
|
}
|
2013-08-17 21:59:50 -04:00
|
|
|
.dropdown-menu > .active > a,
|
|
|
|
.dropdown-menu > .active > a:hover,
|
|
|
|
.dropdown-menu > .active > a:focus {
|
2013-09-01 05:00:40 -04:00
|
|
|
#gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
|
|
|
|
background-color: darken(@dropdown-link-active-bg, 5%);
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-31 21:02:41 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Navbar
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-08-23 13:44:13 -04:00
|
|
|
// Default navbar
|
|
|
|
.navbar-default {
|
2013-09-16 07:55:53 -04:00
|
|
|
#gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);
|
2013-10-13 22:57:14 -04:00
|
|
|
.reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
|
2014-07-08 19:25:01 -04:00
|
|
|
.border-radius(@navbar-border-radius);
|
2014-07-09 00:19:14 -04:00
|
|
|
@shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
|
|
|
|
.box-shadow(@shadow);
|
2013-08-06 21:42:10 -04:00
|
|
|
|
|
|
|
.navbar-nav > .active > a {
|
2013-09-16 07:55:53 -04:00
|
|
|
#gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%));
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
|
2013-08-06 21:42:10 -04:00
|
|
|
}
|
2013-07-31 21:02:41 -04:00
|
|
|
}
|
2013-08-17 21:59:50 -04:00
|
|
|
.navbar-brand,
|
|
|
|
.navbar-nav > li > a {
|
|
|
|
text-shadow: 0 1px 0 rgba(255,255,255,.25);
|
|
|
|
}
|
2013-07-31 21:02:41 -04:00
|
|
|
|
|
|
|
// Inverted navbar
|
|
|
|
.navbar-inverse {
|
2013-09-16 07:55:53 -04:00
|
|
|
#gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
|
2013-10-13 22:57:14 -04:00
|
|
|
.reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
|
2013-08-06 21:42:10 -04:00
|
|
|
|
|
|
|
.navbar-nav > .active > a {
|
2013-09-16 07:55:53 -04:00
|
|
|
#gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%));
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
|
2013-08-06 21:42:10 -04:00
|
|
|
}
|
2013-08-17 21:59:50 -04:00
|
|
|
|
|
|
|
.navbar-brand,
|
|
|
|
.navbar-nav > li > a {
|
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Undo rounded corners in static and fixed navbars
|
|
|
|
.navbar-static-top,
|
|
|
|
.navbar-fixed-top,
|
|
|
|
.navbar-fixed-bottom {
|
2014-07-08 19:25:01 -04:00
|
|
|
.border-radius(0);
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Alerts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Common styles
|
|
|
|
.alert {
|
|
|
|
text-shadow: 0 1px 0 rgba(255,255,255,.2);
|
2014-07-09 00:19:14 -04:00
|
|
|
@shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
|
|
|
|
.box-shadow(@shadow);
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
|
2013-08-17 22:14:13 -04:00
|
|
|
// Mixin for generating new styles
|
2013-08-17 21:59:50 -04:00
|
|
|
.alert-styles(@color) {
|
|
|
|
#gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));
|
|
|
|
border-color: darken(@color, 15%);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply the mixin to the alerts
|
|
|
|
.alert-success { .alert-styles(@alert-success-bg); }
|
|
|
|
.alert-info { .alert-styles(@alert-info-bg); }
|
2013-08-18 22:57:25 -04:00
|
|
|
.alert-warning { .alert-styles(@alert-warning-bg); }
|
2013-08-17 21:59:50 -04:00
|
|
|
.alert-danger { .alert-styles(@alert-danger-bg); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Progress bars
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Give the progress background some depth
|
|
|
|
.progress {
|
2013-09-16 07:55:53 -04:00
|
|
|
#gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
|
2013-08-17 22:14:13 -04:00
|
|
|
// Mixin for generating new styles
|
2013-08-17 21:59:50 -04:00
|
|
|
.progress-bar-styles(@color) {
|
|
|
|
#gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply the mixin to the progress bars
|
|
|
|
.progress-bar { .progress-bar-styles(@progress-bar-bg); }
|
|
|
|
.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }
|
|
|
|
.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }
|
|
|
|
.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }
|
|
|
|
.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }
|
|
|
|
|
2014-06-19 21:14:56 -04:00
|
|
|
// Reset the striped class because our mixins don't do multiple gradients and
|
|
|
|
// the above custom styles override the new `.progress-bar-striped` in v3.2.0.
|
|
|
|
.progress-bar-striped {
|
|
|
|
#gradient > .striped();
|
|
|
|
}
|
2013-08-17 21:59:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// List groups
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.list-group {
|
2014-07-08 19:25:01 -04:00
|
|
|
.border-radius(@border-radius-base);
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(0 1px 2px rgba(0,0,0,.075));
|
2013-08-17 21:59:50 -04:00
|
|
|
}
|
|
|
|
.list-group-item.active,
|
|
|
|
.list-group-item.active:hover,
|
|
|
|
.list-group-item.active:focus {
|
|
|
|
text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);
|
|
|
|
#gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));
|
|
|
|
border-color: darken(@list-group-active-border, 7.5%);
|
|
|
|
}
|