2012-06-28 21:46:45 -07:00
//
// Mixins
// --------------------------------------------------
2011-06-27 16:47:12 -07:00
2011-08-16 22:58:01 -07:00
2012-12-19 17:49:20 -08:00
// Utilities
// -------------------------
2012-01-17 23:52:49 -08:00
// Clearfix
2012-12-19 17:49:20 -08:00
// Source: http://nicolasgallagher.com/micro-clearfix-hack/
//
// For modern browsers
// 1. The space content is one way to avoid an Opera bug when the
// contenteditable attribute is included anywhere else in the document.
// Otherwise it causes space to appear at the top and bottom of elements
// that are clearfixed.
// 2. The use of `table` rather than `block` is only necessary if using
// `:before` to contain the top-margins of child elements.
2013-03-30 13:23:18 -07:00
.clearfix() {
2011-09-29 01:40:27 -07:00
&:before,
2011-09-10 15:29:38 -07:00
&:after {
2012-12-19 17:49:20 -08:00
content: " "; /* 1 */
display: table; /* 2 */
2011-09-29 01:40:27 -07:00
}
&:after {
2011-06-27 16:47:12 -07:00
clear: both;
2011-09-29 01:40:27 -07:00
}
2011-06-27 16:47:12 -07:00
}
2012-01-27 18:33:25 -08:00
// Webkit-style focus
.tab-focus() {
// Default
2012-02-16 21:25:40 -08:00
outline: thin dotted #333;
2012-01-27 18:33:25 -08:00
// Webkit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
2011-06-27 16:47:12 -07:00
// Center-align a block level element
2011-09-12 20:07:26 -07:00
.center-block() {
2011-09-29 01:40:27 -07:00
display: block;
2011-09-02 21:00:01 -07:00
margin-left: auto;
margin-right: auto;
2011-06-27 16:47:12 -07:00
}
// Sizing shortcuts
2013-08-02 15:31:13 -04:00
.size(@width; @height) {
2011-09-29 01:40:27 -07:00
width: @width;
2011-11-17 01:28:42 -08:00
height: @height;
2011-06-27 16:47:12 -07:00
}
2012-03-31 21:06:16 -07:00
.square(@size) {
2013-08-02 15:31:13 -04:00
.size(@size; @size);
2011-06-27 16:47:12 -07:00
}
2012-01-17 23:52:49 -08:00
// Placeholder text
2012-11-30 15:27:13 -08:00
.placeholder(@color: @input-color-placeholder) {
2013-02-08 08:32:29 -08:00
&:-moz-placeholder { color: @color; } // Firefox 4-18
&::-moz-placeholder { color: @color; } // Firefox 19+
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
2011-06-27 16:47:12 -07:00
}
2012-02-05 01:49:36 -08:00
// Text overflow
// Requires inline-block or block for proper styling
.text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2012-03-14 12:00:27 -07:00
// CSS image replacement
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
2012-09-26 08:59:57 -07:00
.hide-text() {
2013-07-01 10:51:08 +12:00
font: ~"0/0" a;
2012-03-14 12:00:27 -07:00
color: transparent;
2012-04-16 15:09:05 -07:00
text-shadow: none;
2012-03-14 12:00:27 -07:00
background-color: transparent;
2012-04-16 15:09:05 -07:00
border: 0;
2012-03-11 21:12:59 -07:00
}
2012-01-17 23:52:49 -08:00
2012-03-11 21:21:51 -07:00
2012-02-07 00:13:52 -08:00
2012-01-17 23:52:49 -08:00
// CSS3 PROPERTIES
// --------------------------------------------------
2012-12-01 14:25:28 -08:00
// Single side border-radius
2012-06-21 01:50:28 +03:00
.border-top-radius(@radius) {
2012-12-01 14:25:28 -08:00
border-top-right-radius: @radius;
border-top-left-radius: @radius;
2012-06-21 01:50:28 +03:00
}
.border-right-radius(@radius) {
2012-12-01 14:25:28 -08:00
border-bottom-right-radius: @radius;
border-top-right-radius: @radius;
2012-06-20 19:36:06 -07:00
}
.border-bottom-radius(@radius) {
2012-12-01 14:25:28 -08:00
border-bottom-right-radius: @radius;
border-bottom-left-radius: @radius;
2012-06-20 19:36:06 -07:00
}
.border-left-radius(@radius) {
2012-12-01 14:25:28 -08:00
border-bottom-left-radius: @radius;
border-top-left-radius: @radius;
2012-06-21 01:50:28 +03:00
}
2011-06-27 16:47:12 -07:00
// Drop shadows
2012-09-12 16:11:03 -07:00
.box-shadow(@shadow) {
2012-09-30 23:17:07 -07:00
-webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
2012-09-12 15:53:29 -07:00
box-shadow: @shadow;
2011-06-27 16:47:12 -07:00
}
// Transitions
2012-03-25 12:42:47 -07:00
.transition(@transition) {
-webkit-transition: @transition;
transition: @transition;
2011-09-29 01:40:27 -07:00
}
2012-08-26 13:09:10 +08:00
.transition-delay(@transition-delay) {
-webkit-transition-delay: @transition-delay;
transition-delay: @transition-delay;
}
2012-12-28 16:19:12 +08:00
.transition-duration(@transition-duration) {
-webkit-transition-duration: @transition-duration;
transition-duration: @transition-duration;
}
2013-07-26 22:09:31 -07:00
.transition-transform(@transition) {
-webkit-transition: -webkit-transform @transition;
-moz-transition: -moz-transform @transition;
-o-transition: -o-transform @transition;
transition: transform @transition;
}
2011-09-29 01:40:27 -07:00
2012-01-14 16:45:01 -08:00
// Transformations
2012-01-25 15:03:44 -08:00
.rotate(@degrees) {
2011-09-29 01:40:27 -07:00
-webkit-transform: rotate(@degrees);
2013-08-05 08:11:13 -07:00
-ms-transform: rotate(@degrees); // IE9+
2011-09-29 01:40:27 -07:00
transform: rotate(@degrees);
}
2012-01-25 15:03:44 -08:00
.scale(@ratio) {
-webkit-transform: scale(@ratio);
2013-08-05 08:11:13 -07:00
-ms-transform: scale(@ratio); // IE9+
2012-01-25 15:03:44 -08:00
transform: scale(@ratio);
2011-06-27 16:47:12 -07:00
}
2013-08-02 15:31:13 -04:00
.translate(@x; @y) {
2011-10-04 00:55:35 -07:00
-webkit-transform: translate(@x, @y);
2013-08-05 08:11:13 -07:00
-ms-transform: translate(@x, @y); // IE9+
2011-10-04 00:55:35 -07:00
transform: translate(@x, @y);
}
2013-08-02 15:31:13 -04:00
.skew(@x; @y) {
2012-01-30 07:54:47 -08:00
-webkit-transform: skew(@x, @y);
2013-08-05 08:11:13 -07:00
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
2012-01-30 07:54:47 -08:00
transform: skew(@x, @y);
}
2013-08-02 15:31:13 -04:00
.translate3d(@x; @y; @z) {
2012-08-20 14:26:38 -07:00
-webkit-transform: translate3d(@x, @y, @z);
transform: translate3d(@x, @y, @z);
2012-02-06 23:48:48 -08:00
}
2011-06-27 16:47:12 -07:00
2012-03-28 18:25:27 -07:00
// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
2013-07-16 10:49:59 -07:00
// Default value is `visible`, but can be changed to `hidden`
2012-03-28 18:25:27 -07:00
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
2012-03-31 21:06:16 -07:00
.backface-visibility(@visibility){
2013-07-31 18:11:11 +02:00
-webkit-backface-visibility: @visibility;
-moz-backface-visibility: @visibility;
backface-visibility: @visibility;
2012-03-28 15:05:49 +01:00
}
2012-01-07 15:52:57 -08:00
// Box sizing
.box-sizing(@boxmodel) {
-webkit-box-sizing: @boxmodel;
-moz-box-sizing: @boxmodel;
box-sizing: @boxmodel;
}
2012-01-17 23:52:49 -08:00
// User select
// For selecting text on the page
.user-select(@select) {
-webkit-user-select: @select;
-moz-user-select: @select;
2013-08-05 08:11:13 -07:00
-ms-user-select: @select; // IE10+
2012-01-17 23:52:49 -08:00
-o-user-select: @select;
user-select: @select;
}
2011-10-26 23:11:56 -07:00
// Resize anything
2012-03-31 21:06:16 -07:00
.resizable(@direction) {
2011-10-26 23:11:56 -07:00
resize: @direction; // Options: horizontal, vertical, both
overflow: auto; // Safari fix
}
2011-06-27 16:47:12 -07:00
// CSS3 Content Columns
2013-08-02 15:31:13 -04:00
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
2012-12-05 11:05:10 -08:00
-webkit-column-count: @column-count;
-moz-column-count: @column-count;
column-count: @column-count;
-webkit-column-gap: @column-gap;
-moz-column-gap: @column-gap;
column-gap: @column-gap;
2011-06-27 16:47:12 -07:00
}
2012-05-01 17:01:26 +02:00
// Optional hyphenation
.hyphens(@mode: auto) {
2012-05-13 14:31:31 -07:00
word-wrap: break-word;
2012-05-01 17:01:26 +02:00
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
2013-08-05 08:11:13 -07:00
-ms-hyphens: @mode; // IE10+
2012-05-01 17:54:53 +02:00
-o-hyphens: @mode;
2012-05-01 17:01:26 +02:00
hyphens: @mode;
}
2012-01-17 23:52:49 -08:00
// Opacity
2012-03-31 21:06:16 -07:00
.opacity(@opacity) {
2013-02-28 19:46:49 -08:00
opacity: @opacity;
// IE8 filter
2013-03-06 16:38:20 +00:00
@opacity-ie: (@opacity * 100);
2013-02-28 19:46:49 -08:00
filter: ~"alpha(opacity=@{opacity-ie})";
2012-01-17 23:52:49 -08:00
}
2013-05-25 13:16:15 -07:00
// GRADIENTS
2012-01-17 23:52:49 -08:00
// --------------------------------------------------
2011-06-27 16:47:12 -07:00
#gradient {
2013-05-25 13:16:15 -07:00
// Horizontal gradient, from left to right
//
// Creates two color stops, start and end, by specifying a color and position for each color stop.
// Color stops are not available in IE9 and below.
2013-08-05 08:45:51 -07:00
.horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
2013-05-25 13:16:15 -07:00
background-image: -webkit-gradient(linear, @start-percent top, @end-percent top, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1+, Chrome 10+
background-image: -moz-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // FF 3.6+
background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10
2011-09-29 01:40:27 -07:00
background-repeat: repeat-x;
2013-05-25 13:16:15 -07:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
2011-06-27 16:47:12 -07:00
}
2013-05-25 13:16:15 -07:00
// Vertical gradient, from top to bottom
//
// Creates two color stops, start and end, by specifying a color and position for each color stop.
// Color stops are not available in IE9 and below.
2013-08-05 08:45:51 -07:00
.vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
2013-05-25 13:16:15 -07:00
background-image: -webkit-gradient(linear, left @start-percent, left @end-percent, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(top, @start-color, @start-percent, @end-color, @end-percent); // Safari 5.1+, Chrome 10+
background-image: -moz-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // FF 3.6+
background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10
2011-09-29 01:40:27 -07:00
background-repeat: repeat-x;
2013-05-25 13:16:15 -07:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
2011-06-27 16:47:12 -07:00
}
2013-05-25 13:16:15 -07:00
2013-08-02 15:31:13 -04:00
.directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
2011-06-27 16:47:12 -07:00
background-repeat: repeat-x;
2013-05-25 13:16:15 -07:00
background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1+, Chrome 10+
background-image: -moz-linear-gradient(@deg, @start-color, @end-color); // FF 3.6+
background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10
2011-06-27 16:47:12 -07:00
}
2013-08-02 15:31:13 -04:00
.horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
2013-05-25 13:16:15 -07:00
background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));
background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
background-image: -moz-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
2013-01-24 03:37:52 -02:00
background-repeat: no-repeat;
2013-05-25 13:16:15 -07:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
2013-01-24 03:37:52 -02:00
}
2013-08-02 15:31:13 -04:00
.vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
2013-05-25 13:16:15 -07:00
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));
background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
background-image: -moz-linear-gradient(top, @start-color, @mid-color @color-stop, @end-color);
background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
2011-09-29 01:40:27 -07:00
background-repeat: no-repeat;
2013-05-25 13:16:15 -07:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
2011-06-27 16:47:12 -07:00
}
2013-08-02 15:31:13 -04:00
.radial(@inner-color: #555; @outer-color: #333) {
2013-05-25 13:16:15 -07:00
background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@inner-color), to(@outer-color));
background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
background-image: -moz-radial-gradient(circle, @inner-color, @outer-color);
background-image: radial-gradient(circle, @inner-color, @outer-color);
2011-09-29 01:40:27 -07:00
background-repeat: no-repeat;
}
2013-08-02 15:31:13 -04:00
.striped(@color: #555; @angle: 45deg) {
2012-01-07 15:52:57 -08:00
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
2011-11-26 19:41:17 +01:00
}
2011-06-27 16:47:12 -07:00
}
2013-05-25 13:16:15 -07:00
2012-01-28 13:13:01 -08:00
// Reset filters for IE
2013-05-25 13:16:15 -07:00
//
// When you need to remove a gradient background, don't forget to use this to reset
// the IE filter for IE9 and below.
2012-01-28 13:13:01 -08:00
.reset-filter() {
2012-03-22 17:31:09 -07:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
2012-01-28 13:13:01 -08:00
}
2011-06-27 16:47:12 -07:00
2011-11-16 23:58:36 -08:00
2013-05-25 13:16:15 -07:00
2013-08-15 00:46:18 -07:00
// Retina images
//
2013-03-16 17:19:05 -07:00
// Short retina mixin for setting background-image and -size
2013-08-15 00:46:18 -07:00
2013-08-02 15:31:13 -04:00
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
2013-03-16 17:19:05 -07:00
background-image: url("@{file-1x}");
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
background-image: url("@{file-2x}");
background-size: @width-1x @height-1x;
}
2013-02-11 18:23:21 -08:00
}
2012-02-20 12:38:49 -08:00
2013-08-15 00:46:18 -07:00
// Responsive image
//
// Keep images from scaling beyond the width of their parents.
.img-responsive(@display: block;) {
display: @display;
max-width: 100%; // Part 1: Set a maximum relative to the parent
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
}
2012-02-20 12:38:49 -08:00
// COMPONENT MIXINS
// --------------------------------------------------
2012-02-20 19:14:26 -08:00
// Horizontal dividers
2012-02-20 12:38:49 -08:00
// -------------------------
// Dividers (basically an hr) within dropdowns and nav lists
2013-07-23 23:18:53 -07:00
.nav-divider(@color: #e5e5e5) {
height: 1px;
2013-05-10 09:21:27 -06:00
margin: ((@line-height-computed / 2) - 1) 0;
2012-04-16 16:34:08 -07:00
overflow: hidden;
2013-07-23 23:18:53 -07:00
background-color: @color;
2012-02-20 12:38:49 -08:00
}
2013-08-07 20:15:12 +02:00
// Panels
// -------------------------
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
border-color: @border;
2013-08-14 16:40:26 +02:00
& > .panel-heading {
2013-08-07 20:15:12 +02:00
color: @heading-text-color;
background-color: @heading-bg-color;
border-color: @heading-border;
2013-08-12 23:36:25 -07:00
+ .panel-collapse .panel-body {
border-top-color: @border;
}
}
2013-08-14 16:40:26 +02:00
& > .panel-footer {
2013-08-12 23:36:25 -07:00
+ .panel-collapse .panel-body {
border-bottom-color: @border;
}
2013-08-07 20:15:12 +02:00
}
}
2013-07-06 22:01:34 -07:00
// Alerts
// -------------------------
2013-08-02 15:31:13 -04:00
.alert-variant(@background; @border; @text-color) {
2013-07-06 22:01:34 -07:00
background-color: @background;
border-color: @border;
color: @text-color;
hr {
border-top-color: darken(@border, 5%);
}
.alert-link {
color: darken(@text-color, 10%);
}
}
2013-08-14 21:16:45 +02:00
// Tables
// -------------------------
.table-row-variant(@state; @background; @border) {
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.
.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
> td.@{state},
> th.@{state},
&.@{state} > td,
&.@{state} > th {
background-color: @background;
border-color: @border;
}
}
2013-08-15 00:46:18 -07:00
2013-08-14 21:16:45 +02:00
// Hover states for `.table-hover`
// Note: this is not available for cells or rows within `thead` or `tfoot`.
.table-hover > tbody > tr {
> td.@{state}:hover,
> th.@{state}:hover,
&.@{state}:hover > td {
background-color: darken(@background, 5%);
border-color: darken(@border, 5%);
}
}
}
2013-08-12 13:55:09 +02:00
// Button variants
2013-02-02 19:16:15 -08:00
// -------------------------
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons
2013-08-12 13:55:09 +02:00
.button-variant(@color; @background; @border) {
2013-05-07 18:07:06 -07:00
color: @color;
2013-02-02 19:16:15 -08:00
background-color: @background;
border-color: @border;
2012-01-27 16:39:27 -05:00
2012-12-19 22:25:56 -08:00
&:hover,
2013-02-02 19:16:15 -08:00
&:focus,
2013-03-16 12:34:07 -07:00
&:active,
2013-08-15 15:16:46 -07:00
&.active,
.open .dropdown-toggle& {
2013-08-05 09:02:59 -07:00
color: @color;
2013-08-05 08:52:22 -07:00
background-color: darken(@background, 8%);
border-color: darken(@border, 12%);
2012-12-19 22:54:04 -08:00
}
2013-08-15 16:17:44 -07:00
&:active,
&.active,
.open .dropdown-toggle& {
background-image: none;
}
2012-12-19 23:37:33 -08:00
&.disabled,
2013-02-02 19:16:15 -08:00
&[disabled],
2012-12-19 23:37:33 -08:00
fieldset[disabled] & {
2013-05-26 18:14:25 +02:00
&,
2013-02-02 19:16:15 -08:00
&:hover,
&:focus,
2013-03-16 12:34:07 -07:00
&:active,
&.active {
2013-02-02 19:16:15 -08:00
background-color: @background;
border-color: @border
}
2012-01-27 16:39:27 -05:00
}
}
2013-08-12 14:07:19 +02:00
// Button sizes
// -------------------------
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
padding: @padding-vertical @padding-horizontal;
font-size: @font-size;
line-height: @line-height;
border-radius: @border-radius;
}
2013-08-13 13:27:45 +02:00
// Pagination
// -------------------------
2013-08-13 14:25:05 +02:00
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
2013-08-13 13:27:45 +02:00
> li {
> a,
> span {
padding: @padding-vertical @padding-horizontal;
font-size: @font-size;
}
&:first-child {
> a,
> span {
.border-left-radius(@border-radius);
}
}
&:last-child {
> a,
> span {
.border-right-radius(@border-radius);
}
}
}
}
2013-07-07 14:26:51 -07:00
// Labels
// -------------------------
.label-variant(@color) {
background-color: @color;
&[href] {
&:hover,
&:focus {
background-color: darken(@color, 10%);
}
}
}
2012-02-20 19:14:26 -08:00
// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
2013-08-01 14:39:28 +01:00
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
2013-01-16 16:14:41 -08:00
.navbar-vertical-align(@element-height) {
2013-03-06 16:38:20 +00:00
margin-top: ((@navbar-height - @element-height) / 2);
margin-bottom: ((@navbar-height - @element-height) / 2);
2012-02-20 19:14:26 -08:00
}
2013-07-07 15:06:16 -07:00
// Progress bars
// -------------------------
.progress-bar-variant(@color) {
background-color: @color;
.progress-striped & {
#gradient > .striped(@color);
}
}
2013-06-25 13:32:21 -07:00
// Responsive utilities
// -------------------------
// More easily include all the states for responsive-utilities.less.
.responsive-visibility() {
display: block !important;
tr& { display: table-row !important; }
th&,
td& { display: table-cell !important; }
}
2013-07-01 21:13:57 +02:00
.responsive-invisibility() {
display: none !important;
tr& { display: none !important; }
th&,
td& { display: none !important; }
}
2012-02-21 23:16:06 -08:00
// Grid System
// -----------
2012-03-11 15:15:55 -07:00
// Centered container element
2012-02-21 23:16:06 -08:00
.container-fixed() {
margin-right: auto;
2012-04-16 15:37:17 -07:00
margin-left: auto;
2013-03-30 13:23:18 -07:00
.clearfix();
2012-02-21 23:16:06 -08:00
}
2013-03-15 23:21:10 -07:00
// Creates a wrapper for a series of columns
2013-08-06 21:00:12 -07:00
.make-row(@gutter: @grid-gutter-width) {
2013-03-15 23:21:10 -07:00
// Then clear the floated columns
2013-03-30 13:23:18 -07:00
.clearfix();
2013-04-01 12:55:48 -07:00
2013-08-06 21:11:16 -07:00
.container & {
@media (min-width: @screen-small) {
margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
}
2013-06-02 13:38:45 -07:00
}
2013-04-01 12:55:48 -07:00
// Negative margin nested rows out to align the content of columns
.row {
2013-08-06 21:00:12 -07:00
margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
2013-04-01 12:55:48 -07:00
}
2012-03-11 15:15:55 -07:00
}
2013-07-18 00:56:36 -07:00
2013-08-12 11:52:51 -07:00
// Generate the extra small columns
.make-xs-column(@columns; @gutter: @grid-gutter-width) {
2013-08-07 21:15:01 +02:00
position: relative;
float: left;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
@max-width: (@screen-small - 1);
// Calculate width based on number of columns available
@media (max-width: @max-width) {
width: percentage((@columns / @grid-columns));
}
}
// Generate the small columns
2013-08-12 00:36:22 -07:00
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
2013-04-30 13:03:10 -07:00
position: relative;
2013-03-15 23:21:10 -07:00
// Prevent columns from collapsing when empty
min-height: 1px;
2013-04-26 23:59:51 -07:00
// Inner gutter via padding
2013-08-06 21:00:12 -07:00
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-04-30 13:03:10 -07:00
// Calculate width based on number of columns available
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-small) {
2013-06-27 19:54:30 -07:00
float: left;
2013-04-30 13:03:10 -07:00
width: percentage((@columns / @grid-columns));
}
2013-01-17 10:49:10 -08:00
}
2013-07-18 00:56:36 -07:00
2013-08-07 21:15:01 +02:00
// Generate the small column offsets
2013-08-12 00:36:22 -07:00
.make-sm-column-offset(@columns) {
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-small) {
2013-03-15 23:21:10 -07:00
margin-left: percentage((@columns / @grid-columns));
}
}
2013-08-12 00:36:22 -07:00
.make-sm-column-push(@columns) {
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-small) {
2013-03-15 23:21:10 -07:00
left: percentage((@columns / @grid-columns));
}
}
2013-08-12 00:36:22 -07:00
.make-sm-column-pull(@columns) {
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-small) {
2013-03-15 23:21:10 -07:00
right: percentage((@columns / @grid-columns));
}
2012-03-11 15:15:55 -07:00
}
2013-04-30 13:03:10 -07:00
2013-08-12 00:36:22 -07:00
// Generate the medium columns
.make-md-column(@columns; @gutter: @grid-gutter-width) {
2013-06-26 01:05:45 +02:00
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
2013-08-06 21:00:12 -07:00
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-07-18 00:56:36 -07:00
2013-06-26 01:05:45 +02:00
// Calculate width based on number of columns available
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-medium) {
float: left;
2013-06-26 01:05:45 +02:00
width: percentage((@columns / @grid-columns));
}
}
2013-03-17 11:33:07 -07:00
2013-08-07 21:15:01 +02:00
// Generate the large column offsets
2013-08-12 00:36:22 -07:00
.make-md-column-offset(@columns) {
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-medium) {
margin-left: percentage((@columns / @grid-columns));
}
}
2013-08-12 00:36:22 -07:00
.make-md-column-push(@columns) {
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-medium) {
left: percentage((@columns / @grid-columns));
}
}
2013-08-12 00:36:22 -07:00
.make-md-column-pull(@columns) {
2013-08-07 21:15:01 +02:00
@media (min-width: @screen-medium) {
right: percentage((@columns / @grid-columns));
}
}
2013-08-12 00:36:22 -07:00
// Generate the large columns
.make-lg-column(@columns; @gutter: @grid-gutter-width) {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
// Calculate width based on number of columns available
@media (min-width: @screen-large) {
float: left;
width: percentage((@columns / @grid-columns));
}
}
// Generate the large column offsets
.make-lg-column-offset(@columns) {
@media (min-width: @screen-large) {
margin-left: percentage((@columns / @grid-columns));
}
}
.make-lg-column-push(@columns) {
@media (min-width: @screen-large) {
left: percentage((@columns / @grid-columns));
}
}
.make-lg-column-pull(@columns) {
@media (min-width: @screen-large) {
right: percentage((@columns / @grid-columns));
}
}
2013-03-17 11:33:07 -07:00
2013-07-25 19:45:14 -07:00
// Form validation states
//
// Used in forms.less to generate the form validation CSS for warnings, errors,
// and successes.
2013-08-02 15:31:13 -04:00
.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
2013-07-25 19:45:14 -07:00
// Color the label and help text
2013-07-01 18:21:19 -07:00
.help-block,
2013-03-17 11:33:07 -07:00
.control-label {
color: @text-color;
}
// Set the border and box shadow on specific inputs to match
2013-07-25 19:45:14 -07:00
.form-control {
2013-03-17 11:33:07 -07:00
border-color: @border-color;
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
&:focus {
border-color: darken(@border-color, 10%);
@shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
.box-shadow(@shadow);
}
}
2013-06-05 23:14:58 +03:00
// Set validation states also for addons
.input-group-addon {
color: @text-color;
border-color: @border-color;
background-color: @background-color;
2013-06-25 13:32:21 -07:00
}
2013-03-17 11:33:07 -07:00
}
2013-08-04 23:05:54 -07:00
// Form control focus state
//
// Generate a customized focus state and for any input with the specified color,
// which defaults to the `@input-focus-border` variable.
//
// We highly encourage you to not customize the default value, but instead use
// this to tweak colors on an as-needed basis. This aesthetic change is based on
// WebKit's default styles, but applicable to a wider range of browsers. Its
// usability and accessibility should be taken into account with any change.
//
// Example usage: change the default blue border and shadow to white for better
// contrast against a dark gray background.
.form-control-focus(@color: @input-border-focus) {
@color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
&:focus {
border-color: @color;
outline: 0;
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
}
}
2013-08-13 19:06:02 +02:00
// Form control sizing
//
// Relative text size, padding, and border-radii changes for form controls. For
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
// element gets special love because it's special, and that's a fact!
.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
height: @input-height;
padding: @padding-vertical @padding-horizontal;
font-size: @font-size;
line-height: @line-height;
border-radius: @border-radius;
2013-08-15 00:46:18 -07:00
2013-08-13 19:06:02 +02:00
select& {
height: @input-height;
line-height: @input-height;
}
2013-08-15 00:46:18 -07:00
2013-08-13 19:06:02 +02:00
textarea& {
height: auto;
}
}