2012-06-29 06:46:45 +02:00
//
// Mixins
// --------------------------------------------------
2014-03-10 00:13:37 +01:00
//
2014-03-10 00:25:27 +01:00
// TABLE OF CONTENTS
2014-03-10 00:13:37 +01:00
//
// UTILITIES
// -------------------------
// - Clearfix
// - WebKit-style focus
// - Center-align a block level element
// - Sizing shortcuts
// - Placeholder text
// - Text overflow
// - Requires inline-block or block for proper styling
// - CSS image replacement
//
// CSS3 PROPERTIES
// --------------------------------------------------
// - Single side border-radius
// - Drop shadows
// - Transitions
// - Transformations
// - Animations
// - Backface visibility
// - Prevent browsers from flickering when using CSS 3D transforms.
// - Box sizing
// - User select
// - For selecting text on the page
// - Resize anything
// - CSS3 Content Columns
// - Optional hyphenation
// - Opacity
//
// GRADIENTS
// --------------------------------------------------
// - Reset filters for IE
// - Retina images
// - Responsive image
//
// COMPONENT MIXINS
// --------------------------------------------------
// - Horizontal dividers
// - Dividers (basically an hr) within dropdowns and nav lists
// - Panels
// - Alerts
// - Tables
// - List Groups
// - Button variants
// - Button sizes
// - Pagination
// - Labels
// - Contextual backgrounds
// - Typography
// - Navbar vertical align
2014-03-10 00:25:27 +01:00
// - Vertically center elements in the navbar
2014-03-10 00:13:37 +01:00
// - Progress bars
//
// RESPONSIVE UTILITIES
// -------------------------
// Grid System
// -----------
// - Centered container element
// - Generate the extra small columns
// - Generate the small columns
// - Generate the medium columns
// - Generate the large columns
// - Framework grid generation
2014-03-10 00:25:27 +01:00
// - Loop to generate grid all grid classes
2014-03-10 00:13:37 +01:00
// - Form validation states
// - Form control focus state
2011-06-28 01:47:12 +02:00
2011-08-17 07:58:01 +02:00
2012-12-20 02:49:20 +01:00
// Utilities
// -------------------------
2012-01-18 08:52:49 +01:00
// Clearfix
2012-12-20 02:49:20 +01: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 21:23:18 +01:00
.clearfix() {
2011-09-29 10:40:27 +02:00
&:before,
2011-09-11 00:29:38 +02:00
&:after {
2013-11-07 16:57:55 +01:00
content: " "; // 1
display: table; // 2
2011-09-29 10:40:27 +02:00
}
&:after {
2011-06-28 01:47:12 +02:00
clear: both;
2011-09-29 10:40:27 +02:00
}
2011-06-28 01:47:12 +02:00
}
2013-10-25 04:20:08 +02:00
// WebKit-style focus
2012-01-28 03:33:25 +01:00
.tab-focus() {
// Default
2013-11-20 04:24:26 +01:00
outline: thin dotted;
2013-11-19 09:20:33 +01:00
// WebKit
2012-01-28 03:33:25 +01:00
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
2011-06-28 01:47:12 +02:00
// Center-align a block level element
2011-09-13 05:07:26 +02:00
.center-block() {
2011-09-29 10:40:27 +02:00
display: block;
2011-09-03 06:00:01 +02:00
margin-left: auto;
margin-right: auto;
2011-06-28 01:47:12 +02:00
}
// Sizing shortcuts
2013-08-02 21:31:13 +02:00
.size(@width; @height) {
2011-09-29 10:40:27 +02:00
width: @width;
2011-11-17 10:28:42 +01:00
height: @height;
2011-06-28 01:47:12 +02:00
}
2012-04-01 06:06:16 +02:00
.square(@size) {
2013-08-02 21:31:13 +02:00
.size(@size; @size);
2011-06-28 01:47:12 +02:00
}
2012-01-18 08:52:49 +01:00
// Placeholder text
2012-12-01 00:27:13 +01:00
.placeholder(@color: @input-color-placeholder) {
2014-02-01 14:20:41 +01:00
&::-moz-placeholder { color: @color; // Firefox
2013-11-18 23:22:17 +01:00
opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
2013-02-08 17:32:29 +01:00
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
2011-06-28 01:47:12 +02:00
}
2012-02-05 10:49:36 +01:00
// Text overflow
// Requires inline-block or block for proper styling
.text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2012-03-14 20:00:27 +01:00
// CSS image replacement
2013-08-24 07:11:41 +02:00
//
// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for
// mixins being reused as classes with the same name, this doesn't hold up. As
2014-03-08 10:49:48 +01:00
// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
2013-08-24 07:11:41 +02:00
//
2012-03-14 20:00:27 +01:00
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
2013-08-24 07:11:41 +02:00
2013-08-24 07:19:58 +02:00
// Deprecated as of v3.0.1 (will be removed in v4)
.hide-text() {
font: ~"0/0" a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
// New mixin to use as of v3.0.1
2013-08-24 07:11:41 +02:00
.text-hide() {
2013-12-01 09:18:27 +01:00
.hide-text();
2012-03-12 05:12:59 +01:00
}
2012-01-18 08:52:49 +01:00
2012-03-12 05:21:51 +01:00
2012-02-07 09:13:52 +01:00
2012-01-18 08:52:49 +01:00
// CSS3 PROPERTIES
// --------------------------------------------------
2012-12-01 23:25:28 +01:00
// Single side border-radius
2012-06-21 00:50:28 +02:00
.border-top-radius(@radius) {
2012-12-01 23:25:28 +01:00
border-top-right-radius: @radius;
border-top-left-radius: @radius;
2012-06-21 00:50:28 +02:00
}
.border-right-radius(@radius) {
2012-12-01 23:25:28 +01:00
border-bottom-right-radius: @radius;
border-top-right-radius: @radius;
2012-06-21 04:36:06 +02:00
}
.border-bottom-radius(@radius) {
2012-12-01 23:25:28 +01:00
border-bottom-right-radius: @radius;
border-bottom-left-radius: @radius;
2012-06-21 04:36:06 +02:00
}
.border-left-radius(@radius) {
2012-12-01 23:25:28 +01:00
border-bottom-left-radius: @radius;
border-top-left-radius: @radius;
2012-06-21 00:50:28 +02:00
}
2011-06-28 01:47:12 +02:00
// Drop shadows
2014-01-27 02:31:11 +01:00
//
// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
// supported browsers that have box shadow capabilities now support the
// standard `box-shadow` property.
2012-09-13 01:11:03 +02:00
.box-shadow(@shadow) {
2012-10-01 08:17:07 +02:00
-webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
2012-09-13 00:53:29 +02:00
box-shadow: @shadow;
2011-06-28 01:47:12 +02:00
}
// Transitions
2014-02-22 11:17:58 +01:00
//
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2012-03-25 21:42:47 +02:00
.transition(@transition) {
-webkit-transition: @transition;
2014-02-22 11:17:58 +01:00
-o-transition: @transition;
2012-03-25 21:42:47 +02:00
transition: @transition;
2011-09-29 10:40:27 +02:00
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-23 09:22:54 +02:00
.transition-property(@transition-property) {
-webkit-transition-property: @transition-property;
transition-property: @transition-property;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2012-08-26 07:09:10 +02:00
.transition-delay(@transition-delay) {
-webkit-transition-delay: @transition-delay;
transition-delay: @transition-delay;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2012-12-28 09:19:12 +01:00
.transition-duration(@transition-duration) {
-webkit-transition-duration: @transition-duration;
transition-duration: @transition-duration;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-03-05 07:49:14 +01:00
.transition-timing-function(@timing-function) {
2014-03-07 09:50:05 +01:00
-webkit-transition-timing-function: @timing-function;
transition-timing-function: @timing-function;
2014-03-05 07:49:14 +01:00
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-07-27 07:09:31 +02: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 10:40:27 +02:00
2012-01-15 01:45:01 +01:00
// Transformations
2014-02-22 11:17:58 +01:00
//
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-02-10 05:42:38 +01:00
.scale(@ratio) {
-webkit-transform: scale(@ratio);
-ms-transform: scale(@ratio); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: scale(@ratio);
2014-02-10 05:42:38 +01:00
transform: scale(@ratio);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-02-10 05:42:38 +01:00
.scale(@ratioX; @ratioY) {
-webkit-transform: scale(@ratioX, @ratioY);
-ms-transform: scale(@ratioX, @ratioY); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: scale(@ratioX, @ratioY);
2014-02-10 05:42:38 +01:00
transform: scale(@ratioX, @ratioY);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-02-10 05:42:38 +01:00
.scaleX(@ratio) {
-webkit-transform: scaleX(@ratio);
-ms-transform: scaleX(@ratio); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: scaleX(@ratio);
2014-02-10 05:42:38 +01:00
transform: scaleX(@ratio);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-02-10 05:42:38 +01:00
.scaleY(@ratio) {
-webkit-transform: scaleY(@ratio);
-ms-transform: scaleY(@ratio); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: scaleY(@ratio);
2014-02-10 05:42:38 +01:00
transform: scaleY(@ratio);
2011-09-29 10:40:27 +02:00
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-02-10 05:42:38 +01:00
.skew(@x; @y) {
-webkit-transform: skew(@x, @y);
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
2014-02-22 11:17:58 +01:00
-o-transform: skew(@x, @y);
2014-02-10 05:42:38 +01:00
transform: skew(@x, @y);
2011-06-28 01:47:12 +02:00
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-02 21:31:13 +02:00
.translate(@x; @y) {
2011-10-04 09:55:35 +02:00
-webkit-transform: translate(@x, @y);
2013-12-13 08:01:11 +01:00
-ms-transform: translate(@x, @y); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: translate(@x, @y);
2011-10-04 09:55:35 +02:00
transform: translate(@x, @y);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-02 21:31:13 +02:00
.translate3d(@x; @y; @z) {
2012-08-20 23:26:38 +02:00
-webkit-transform: translate3d(@x, @y, @z);
transform: translate3d(@x, @y, @z);
2012-02-07 08:48:48 +01:00
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2014-02-10 05:42:38 +01:00
.rotate(@degrees) {
-webkit-transform: rotate(@degrees);
-ms-transform: rotate(@degrees); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: rotate(@degrees);
2014-02-10 05:42:38 +01:00
transform: rotate(@degrees);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-22 13:05:06 +02:00
.rotateX(@degrees) {
-webkit-transform: rotateX(@degrees);
2013-12-13 08:01:11 +01:00
-ms-transform: rotateX(@degrees); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: rotateX(@degrees);
2013-08-22 13:05:06 +02:00
transform: rotateX(@degrees);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-22 13:05:06 +02:00
.rotateY(@degrees) {
-webkit-transform: rotateY(@degrees);
2013-12-13 08:01:11 +01:00
-ms-transform: rotateY(@degrees); // IE9 only
2014-02-22 11:17:58 +01:00
-o-transform: rotateY(@degrees);
2013-08-22 13:05:06 +02:00
transform: rotateY(@degrees);
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-22 13:05:06 +02:00
.perspective(@perspective) {
-webkit-perspective: @perspective;
-moz-perspective: @perspective;
perspective: @perspective;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-08-22 13:05:06 +02:00
.perspective-origin(@perspective) {
-webkit-perspective-origin: @perspective;
-moz-perspective-origin: @perspective;
perspective-origin: @perspective;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-10-26 14:11:59 +02:00
.transform-origin(@origin) {
2013-08-22 13:05:06 +02:00
-webkit-transform-origin: @origin;
-moz-transform-origin: @origin;
2013-12-13 08:01:11 +01:00
-ms-transform-origin: @origin; // IE9 only
2013-08-22 13:05:06 +02:00
transform-origin: @origin;
}
2013-10-26 14:11:59 +02:00
// Animations
2014-02-22 11:17:58 +01:00
//
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-10-26 14:11:59 +02:00
.animation(@animation) {
-webkit-animation: @animation;
2014-02-22 11:17:58 +01:00
-o-animation: @animation;
2013-10-26 14:11:59 +02:00
animation: @animation;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-11-01 21:25:23 +01:00
.animation-name(@name) {
-webkit-animation-name: @name;
animation-name: @name;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-11-01 21:25:23 +01:00
.animation-duration(@duration) {
-webkit-animation-duration: @duration;
animation-duration: @duration;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-11-01 21:25:23 +01:00
.animation-timing-function(@timing-function) {
-webkit-animation-timing-function: @timing-function;
animation-timing-function: @timing-function;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-11-01 21:25:23 +01:00
.animation-delay(@delay) {
-webkit-animation-delay: @delay;
animation-delay: @delay;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-11-01 21:25:23 +01:00
.animation-iteration-count(@iteration-count) {
-webkit-animation-iteration-count: @iteration-count;
animation-iteration-count: @iteration-count;
}
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2013-11-01 21:25:23 +01:00
.animation-direction(@direction) {
-webkit-animation-direction: @direction;
animation-direction: @direction;
}
2014-02-26 17:59:36 +01:00
.animation-fill-mode(@fill-mode) {
-webkit-animation-fill-mode: @fill-mode;
animation-fill-mode: @fill-mode;
}
2013-08-22 13:05:06 +02:00
2012-03-29 03:25:27 +02:00
// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
2013-07-16 19:49:59 +02:00
// Default value is `visible`, but can be changed to `hidden`
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2012-04-01 06:06:16 +02: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 16:05:49 +02:00
}
2012-01-08 00:52:57 +01:00
// Box sizing
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2012-01-08 00:52:57 +01:00
.box-sizing(@boxmodel) {
-webkit-box-sizing: @boxmodel;
-moz-box-sizing: @boxmodel;
box-sizing: @boxmodel;
}
2012-01-18 08:52:49 +01:00
// User select
// For selecting text on the page
2014-02-22 11:17:58 +01:00
// Deprecated as of v3.2.0 due to the introduction of autoprefixer (will be removed in v4)
2012-01-18 08:52:49 +01:00
.user-select(@select) {
-webkit-user-select: @select;
-moz-user-select: @select;
2013-08-05 17:11:13 +02:00
-ms-user-select: @select; // IE10+
2012-01-18 08:52:49 +01:00
user-select: @select;
}
2011-10-27 08:11:56 +02:00
// Resize anything
2012-04-01 06:06:16 +02:00
.resizable(@direction) {
2011-10-27 08:11:56 +02:00
resize: @direction; // Options: horizontal, vertical, both
overflow: auto; // Safari fix
}
2011-06-28 01:47:12 +02:00
// CSS3 Content Columns
2013-08-02 21:31:13 +02:00
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
2012-12-05 20:05:10 +01: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-28 01:47:12 +02:00
}
2012-05-01 17:01:26 +02:00
// Optional hyphenation
.hyphens(@mode: auto) {
2012-05-13 23:31:31 +02:00
word-wrap: break-word;
2012-05-01 17:01:26 +02:00
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
2013-08-05 17:11:13 +02: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-18 08:52:49 +01:00
// Opacity
2012-04-01 06:06:16 +02:00
.opacity(@opacity) {
2013-03-01 04:46:49 +01:00
opacity: @opacity;
// IE8 filter
2013-03-06 17:38:20 +01:00
@opacity-ie: (@opacity * 100);
2013-03-01 04:46:49 +01:00
filter: ~"alpha(opacity=@{opacity-ie})";
2012-01-18 08:52:49 +01:00
}
2013-05-25 22:16:15 +02:00
// GRADIENTS
2012-01-18 08:52:49 +01:00
// --------------------------------------------------
2011-06-28 01:47:12 +02:00
#gradient {
2013-05-25 22:16:15 +02: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 17:45:51 +02:00
.horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
2013-11-19 09:20:33 +01:00
background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+
2014-02-22 11:17:58 +01:00
background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12
background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
2011-09-29 10:40:27 +02:00
background-repeat: repeat-x;
2013-05-25 22:16:15 +02:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
2011-06-28 01:47:12 +02:00
}
2013-05-25 22:16:15 +02: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 17:45:51 +02:00
.vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
2013-11-19 09:20:33 +01:00
background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
2014-02-22 11:17:58 +01:00
background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12
2013-11-19 09:20:33 +01:00
background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
2011-09-29 10:40:27 +02:00
background-repeat: repeat-x;
2013-05-25 22:16:15 +02:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
2011-06-28 01:47:12 +02:00
}
2013-05-25 22:16:15 +02:00
2013-08-02 21:31:13 +02:00
.directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
2011-06-28 01:47:12 +02:00
background-repeat: repeat-x;
2013-11-19 09:20:33 +01:00
background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
2014-02-22 11:17:58 +01:00
background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12
2013-11-19 09:20:33 +01:00
background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
2011-06-28 01:47:12 +02:00
}
2013-08-02 21:31:13 +02:00
.horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
2013-05-25 22:16:15 +02:00
background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
2014-02-22 11:17:58 +01:00
background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
2013-05-25 22:16:15 +02:00
background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
2013-01-24 06:37:52 +01:00
background-repeat: no-repeat;
2013-05-25 22:16:15 +02: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 06:37:52 +01:00
}
2013-08-02 21:31:13 +02:00
.vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
2013-05-25 22:16:15 +02:00
background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
2014-02-22 11:17:58 +01:00
background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
2013-05-25 22:16:15 +02:00
background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
2011-09-29 10:40:27 +02:00
background-repeat: no-repeat;
2013-05-25 22:16:15 +02: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-28 01:47:12 +02:00
}
2013-08-02 21:31:13 +02:00
.radial(@inner-color: #555; @outer-color: #333) {
2013-05-25 22:16:15 +02:00
background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
background-image: radial-gradient(circle, @inner-color, @outer-color);
2011-09-29 10:40:27 +02:00
background-repeat: no-repeat;
}
2013-08-21 05:13:03 +02:00
.striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
2014-02-22 11:17:58 +01:00
background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
2013-08-21 05:13:03 +02:00
background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
2011-11-26 19:41:17 +01:00
}
2011-06-28 01:47:12 +02:00
}
2013-05-25 22:16:15 +02:00
2012-01-28 22:13:01 +01:00
// Reset filters for IE
2013-05-25 22:16:15 +02:00
//
2013-08-18 19:23:42 +02:00
// When you need to remove a gradient background, do not forget to use this to reset
2013-05-25 22:16:15 +02:00
// the IE filter for IE9 and below.
2012-01-28 22:13:01 +01:00
.reset-filter() {
2012-03-23 01:31:09 +01:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
2012-01-28 22:13:01 +01:00
}
2011-06-28 01:47:12 +02:00
2011-11-17 08:58:36 +01:00
2013-05-25 22:16:15 +02:00
2013-08-15 09:46:18 +02:00
// Retina images
//
2014-02-27 21:17:08 +01:00
// Short retina mixin for setting background-image and -size. Note that the
// spelling of `min--moz-device-pixel-ratio` is intentional.
2013-08-15 09:46:18 +02:00
2013-08-02 21:31:13 +02:00
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
2013-03-17 01:19:05 +01:00
background-image: url("@{file-1x}");
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
2014-02-27 21:17:08 +01:00
only screen and ( min--moz-device-pixel-ratio: 2),
2013-03-17 01:19:05 +01:00
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-12 03:23:21 +01:00
}
2012-02-20 21:38:49 +01:00
2013-08-15 09:46:18 +02:00
// Responsive image
//
// Keep images from scaling beyond the width of their parents.
2013-12-13 23:15:02 +01:00
.img-responsive(@display: block) {
2013-08-15 09:46:18 +02:00
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 21:38:49 +01:00
// COMPONENT MIXINS
// --------------------------------------------------
2012-02-21 04:14:26 +01:00
// Horizontal dividers
2012-02-20 21:38:49 +01:00
// -------------------------
// Dividers (basically an hr) within dropdowns and nav lists
2013-07-24 08:18:53 +02:00
.nav-divider(@color: #e5e5e5) {
height: 1px;
2013-05-10 17:21:27 +02:00
margin: ((@line-height-computed / 2) - 1) 0;
2012-04-17 01:34:08 +02:00
overflow: hidden;
2013-07-24 08:18:53 +02:00
background-color: @color;
2012-02-20 21:38:49 +01:00
}
2013-08-07 20:15:12 +02:00
// Panels
// -------------------------
2013-11-25 20:41:00 +01:00
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
2013-08-07 20:15:12 +02:00
border-color: @border;
2013-10-21 07:46:21 +02:00
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-10-21 07:46:21 +02:00
2014-02-23 07:46:03 +01:00
+ .panel-collapse > .panel-body {
2013-08-13 08:36:25 +02:00
border-top-color: @border;
}
}
2013-08-14 16:40:26 +02:00
& > .panel-footer {
2014-02-23 07:46:03 +01:00
+ .panel-collapse > .panel-body {
2013-08-13 08:36:25 +02:00
border-bottom-color: @border;
}
2013-08-07 20:15:12 +02:00
}
}
2013-07-07 07:01:34 +02:00
// Alerts
// -------------------------
2013-08-02 21:31:13 +02:00
.alert-variant(@background; @border; @text-color) {
2013-07-07 07:01:34 +02:00
background-color: @background;
border-color: @border;
color: @text-color;
2013-10-21 07:46:21 +02:00
2013-07-07 07:01:34 +02:00
hr {
border-top-color: darken(@border, 5%);
}
.alert-link {
color: darken(@text-color, 10%);
}
}
2013-08-14 21:16:45 +02:00
// Tables
// -------------------------
2013-11-07 09:53:33 +01:00
.table-row-variant(@state; @background) {
2013-08-14 21:16:45 +02:00
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.
2013-12-06 15:11:58 +01:00
.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
> td.@{state},
> th.@{state},
&.@{state} > td,
&.@{state} > th {
background-color: @background;
2013-08-14 21:16:45 +02:00
}
}
2013-08-15 09:46:18 +02: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`.
2013-12-06 15:11:58 +01:00
.table-hover > tbody > tr {
> td.@{state}:hover,
> th.@{state}:hover,
&.@{state}:hover > td,
&.@{state}:hover > th {
2013-08-14 21:16:45 +02:00
background-color: darken(@background, 5%);
}
}
}
2013-10-17 04:02:04 +02:00
// List Groups
// -------------------------
2013-12-07 23:09:03 +01:00
.list-group-item-variant(@state; @background; @color) {
.list-group-item-@{state} {
color: @color;
2013-10-17 04:02:04 +02:00
background-color: @background;
2013-12-07 23:09:03 +01:00
2013-12-09 08:34:24 +01:00
a& {
2013-12-07 23:09:03 +01:00
color: @color;
2013-12-09 08:34:24 +01:00
.list-group-item-heading { color: inherit; }
&:hover,
&:focus {
color: @color;
background-color: darken(@background, 5%);
}
&.active,
&.active:hover,
&.active:focus {
color: #fff;
background-color: @color;
border-color: @color;
}
2013-12-07 23:09:03 +01:00
}
2013-10-17 04:02:04 +02:00
}
}
2013-08-12 13:55:09 +02:00
// Button variants
2013-02-03 04:16:15 +01: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-08 03:07:06 +02:00
color: @color;
2013-02-03 04:16:15 +01:00
background-color: @background;
border-color: @border;
2012-01-27 22:39:27 +01:00
2012-12-20 07:25:56 +01:00
&:hover,
2013-02-03 04:16:15 +01:00
&:focus,
2013-03-16 20:34:07 +01:00
&:active,
2013-08-16 00:16:46 +02:00
&.active,
.open .dropdown-toggle& {
2013-08-05 18:02:59 +02:00
color: @color;
2014-03-07 09:19:26 +01:00
background-color: darken(@background, 10%);
2013-08-05 17:52:22 +02:00
border-color: darken(@border, 12%);
2012-12-20 07:54:04 +01:00
}
2013-08-16 01:17:44 +02:00
&:active,
&.active,
.open .dropdown-toggle& {
background-image: none;
}
2012-12-20 08:37:33 +01:00
&.disabled,
2013-02-03 04:16:15 +01:00
&[disabled],
2012-12-20 08:37:33 +01:00
fieldset[disabled] & {
2013-05-26 18:14:25 +02:00
&,
2013-02-03 04:16:15 +01:00
&:hover,
&:focus,
2013-03-16 20:34:07 +01:00
&:active,
&.active {
2013-02-03 04:16:15 +01:00
background-color: @background;
2013-09-08 15:37:02 +02:00
border-color: @border;
2013-02-03 04:16:15 +01:00
}
2012-01-27 22:39:27 +01:00
}
2013-12-01 01:29:52 +01:00
.badge {
color: @background;
2013-12-07 20:45:11 +01:00
background-color: @color;
2013-12-01 01:29:52 +01:00
}
2012-01-27 22:39:27 +01: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 23:26:51 +02:00
// Labels
// -------------------------
.label-variant(@color) {
background-color: @color;
&[href] {
&:hover,
&:focus {
background-color: darken(@color, 10%);
}
}
}
2014-01-16 03:21:56 +01:00
// Contextual backgrounds
// -------------------------
.bg-variant(@color) {
background-color: @color;
a&:hover {
background-color: darken(@color, 10%);
}
}
2014-01-16 03:07:22 +01:00
// Typography
// -------------------------
.text-emphasis-variant(@color) {
color: @color;
2014-01-18 23:40:17 +01:00
a&:hover {
2014-01-16 03:07:22 +01:00
color: darken(@color, 10%);
}
}
2012-02-21 04:14:26 +01:00
// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
2013-08-01 15:39:28 +02:00
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
2013-01-17 01:14:41 +01:00
.navbar-vertical-align(@element-height) {
2013-03-06 17:38:20 +01:00
margin-top: ((@navbar-height - @element-height) / 2);
margin-bottom: ((@navbar-height - @element-height) / 2);
2012-02-21 04:14:26 +01:00
}
2013-07-08 00:06:16 +02:00
// Progress bars
// -------------------------
.progress-bar-variant(@color) {
background-color: @color;
.progress-striped & {
2013-08-21 05:46:01 +02:00
#gradient > .striped();
2013-07-08 00:06:16 +02:00
}
}
2013-06-25 22:32:21 +02:00
// Responsive utilities
// -------------------------
// More easily include all the states for responsive-utilities.less.
.responsive-visibility() {
display: block !important;
2013-12-03 22:57:28 +01:00
table& { display: table; }
tr& { display: table-row !important; }
2013-06-25 22:32:21 +02:00
th&,
2013-12-03 22:57:28 +01:00
td& { display: table-cell !important; }
2013-06-25 22:32:21 +02:00
}
2013-07-01 21:13:57 +02:00
.responsive-invisibility() {
2014-01-19 12:52:31 +01:00
display: none !important;
2013-07-01 21:13:57 +02:00
}
2013-10-12 07:00:37 +02:00
2012-02-22 08:16:06 +01:00
// Grid System
// -----------
2012-03-11 23:15:55 +01:00
// Centered container element
2012-02-22 08:16:06 +01:00
.container-fixed() {
margin-right: auto;
2012-04-17 00:37:17 +02:00
margin-left: auto;
2013-08-17 07:37:02 +02:00
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
Switch to `&:extend(.clearfix all)` for clearfix mixin
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639.
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686,
#9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652.
(dem issues, tho)
2013-12-09 08:18:28 +01:00
&:extend(.clearfix all);
2012-02-22 08:16:06 +01:00
}
2013-03-16 07:21:10 +01:00
// Creates a wrapper for a series of columns
2013-08-07 06:00:12 +02:00
.make-row(@gutter: @grid-gutter-width) {
2013-08-17 00:16:03 +02:00
margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
Switch to `&:extend(.clearfix all)` for clearfix mixin
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639.
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686,
#9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652.
(dem issues, tho)
2013-12-09 08:18:28 +01:00
&:extend(.clearfix all);
2012-03-11 23:15:55 +01:00
}
2013-07-18 09:56:36 +02:00
2013-08-12 20:52:51 +02: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;
2013-08-16 06:51:41 +02:00
width: percentage((@columns / @grid-columns));
2013-08-07 21:15:01 +02:00
min-height: 1px;
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
}
2013-12-15 20:02:32 +01:00
.make-xs-column-offset(@columns) {
2014-03-04 22:54:56 +01:00
margin-left: percentage((@columns / @grid-columns));
2013-12-15 20:02:32 +01:00
}
.make-xs-column-push(@columns) {
2014-03-04 22:54:56 +01:00
left: percentage((@columns / @grid-columns));
2013-12-15 20:02:32 +01:00
}
.make-xs-column-pull(@columns) {
2014-03-04 22:54:56 +01:00
right: percentage((@columns / @grid-columns));
2013-12-15 20:02:32 +01:00
}
2013-08-07 21:15:01 +02:00
2013-12-15 19:53:53 +01:00
2013-08-07 21:15:01 +02:00
// Generate the small columns
2013-08-12 09:36:22 +02:00
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
2013-04-30 22:03:10 +02:00
position: relative;
2013-03-16 07:21:10 +01:00
min-height: 1px;
2013-08-07 06:00:12 +02:00
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-04-30 22:03:10 +02:00
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-sm-min) {
2013-06-28 04:54:30 +02:00
float: left;
2013-04-30 22:03:10 +02:00
width: percentage((@columns / @grid-columns));
}
2013-01-17 19:49:10 +01:00
}
2013-08-12 09:36:22 +02:00
.make-sm-column-offset(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-sm-min) {
2013-03-16 07:21:10 +01:00
margin-left: percentage((@columns / @grid-columns));
}
}
2013-08-12 09:36:22 +02:00
.make-sm-column-push(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-sm-min) {
2013-03-16 07:21:10 +01:00
left: percentage((@columns / @grid-columns));
}
}
2013-08-12 09:36:22 +02:00
.make-sm-column-pull(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-sm-min) {
2013-03-16 07:21:10 +01:00
right: percentage((@columns / @grid-columns));
}
2012-03-11 23:15:55 +01:00
}
2013-04-30 22:03:10 +02:00
2013-12-15 19:53:53 +01:00
2013-08-12 09:36:22 +02:00
// Generate the medium columns
.make-md-column(@columns; @gutter: @grid-gutter-width) {
2013-06-26 01:05:45 +02:00
position: relative;
min-height: 1px;
2013-08-07 06:00:12 +02:00
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-07-18 09:56:36 +02:00
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-md-min) {
2013-08-07 21:15:01 +02:00
float: left;
2013-06-26 01:05:45 +02:00
width: percentage((@columns / @grid-columns));
}
}
2013-08-12 09:36:22 +02:00
.make-md-column-offset(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-md-min) {
2013-08-07 21:15:01 +02:00
margin-left: percentage((@columns / @grid-columns));
}
}
2013-08-12 09:36:22 +02:00
.make-md-column-push(@columns) {
2013-12-27 21:27:51 +01:00
@media (min-width: @screen-md-min) {
2013-08-07 21:15:01 +02:00
left: percentage((@columns / @grid-columns));
}
}
2013-08-12 09:36:22 +02:00
.make-md-column-pull(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-md-min) {
2013-08-07 21:15:01 +02:00
right: percentage((@columns / @grid-columns));
}
}
2013-12-15 19:53:53 +01:00
2013-08-12 09:36:22 +02:00
// Generate the large columns
.make-lg-column(@columns; @gutter: @grid-gutter-width) {
position: relative;
min-height: 1px;
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-lg-min) {
2013-08-12 09:36:22 +02:00
float: left;
width: percentage((@columns / @grid-columns));
}
}
.make-lg-column-offset(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-lg-min) {
2013-08-12 09:36:22 +02:00
margin-left: percentage((@columns / @grid-columns));
}
}
.make-lg-column-push(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-lg-min) {
2013-08-12 09:36:22 +02:00
left: percentage((@columns / @grid-columns));
}
}
.make-lg-column-pull(@columns) {
2013-08-21 02:31:02 +02:00
@media (min-width: @screen-lg-min) {
2013-08-12 09:36:22 +02:00
right: percentage((@columns / @grid-columns));
}
}
2013-03-17 19:33:07 +01:00
2013-10-12 07:00:37 +02:00
// Framework grid generation
//
// Used only by Bootstrap to generate the correct number of grid classes given
// any value of `@grid-columns`.
.make-grid-columns() {
// Common styles for all sizes of grid columns, widths 1-12
.col(@index) when (@index = 1) { // initial
@item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
2013-12-10 00:59:50 +01:00
.col((@index + 1), @item);
2013-10-12 07:00:37 +02:00
}
.col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
@item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
2013-12-10 00:59:50 +01:00
.col((@index + 1), ~"@{list}, @{item}");
2013-10-12 07:00:37 +02:00
}
.col(@index, @list) when (@index > @grid-columns) { // terminal
@{list} {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
}
}
.col(1); // kickstart it
}
2014-01-28 10:48:45 +01:00
.float-grid-columns(@class) {
2013-10-12 07:00:37 +02:00
.col(@index) when (@index = 1) { // initial
@item: ~".col-@{class}-@{index}";
2013-12-10 00:59:50 +01:00
.col((@index + 1), @item);
2013-10-12 07:00:37 +02:00
}
2013-11-29 08:37:54 +01:00
.col(@index, @list) when (@index =< @grid-columns) { // general
2013-10-12 07:00:37 +02:00
@item: ~".col-@{class}-@{index}";
2013-12-10 00:59:50 +01:00
.col((@index + 1), ~"@{list}, @{item}");
2013-10-12 07:00:37 +02:00
}
2013-11-29 08:37:54 +01:00
.col(@index, @list) when (@index > @grid-columns) { // terminal
2013-10-12 07:00:37 +02:00
@{list} {
float: left;
}
}
.col(1); // kickstart it
}
2014-01-28 10:48:45 +01:00
.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
2013-10-12 07:00:37 +02:00
.col-@{class}-@{index} {
width: percentage((@index / @grid-columns));
}
}
2014-02-27 10:05:58 +01:00
.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {
2013-10-12 07:00:37 +02:00
.col-@{class}-push-@{index} {
left: percentage((@index / @grid-columns));
}
}
2014-02-27 10:05:58 +01:00
.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {
.col-@{class}-push-0 {
left: auto;
}
}
.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {
2013-10-12 07:00:37 +02:00
.col-@{class}-pull-@{index} {
right: percentage((@index / @grid-columns));
}
}
2014-02-27 10:05:58 +01:00
.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {
.col-@{class}-pull-0 {
right: auto;
}
}
2014-01-28 10:48:45 +01:00
.calc-grid-column(@index, @class, @type) when (@type = offset) {
2013-10-12 07:00:37 +02:00
.col-@{class}-offset-@{index} {
margin-left: percentage((@index / @grid-columns));
}
}
// Basic looping in LESS
2014-01-28 10:48:45 +01:00
.loop-grid-columns(@index, @class, @type) when (@index >= 0) {
.calc-grid-column(@index, @class, @type);
2013-10-12 07:00:37 +02:00
// next iteration
2014-01-28 10:48:45 +01:00
.loop-grid-columns((@index - 1), @class, @type);
2013-10-12 07:00:37 +02:00
}
2014-01-28 10:48:45 +01:00
// Create grid for specific class
.make-grid(@class) {
.float-grid-columns(@class);
.loop-grid-columns(@grid-columns, @class, width);
.loop-grid-columns(@grid-columns, @class, pull);
.loop-grid-columns(@grid-columns, @class, push);
.loop-grid-columns(@grid-columns, @class, offset);
}
2013-10-12 07:00:37 +02:00
2013-07-26 04:45:14 +02:00
// Form validation states
//
// Used in forms.less to generate the form validation CSS for warnings, errors,
// and successes.
2013-08-02 21:31:13 +02:00
.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
2013-07-26 04:45:14 +02:00
// Color the label and help text
2013-07-02 03:21:19 +02:00
.help-block,
2013-10-21 04:54:22 +02:00
.control-label,
.radio,
.checkbox,
.radio-inline,
.checkbox-inline {
2013-03-17 19:33:07 +01:00
color: @text-color;
}
// Set the border and box shadow on specific inputs to match
2013-07-26 04:45:14 +02:00
.form-control {
2013-03-17 19:33:07 +01: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 22:14:58 +02:00
// Set validation states also for addons
.input-group-addon {
color: @text-color;
border-color: @border-color;
background-color: @background-color;
2013-06-25 22:32:21 +02:00
}
2014-01-09 22:45:10 +01:00
// Optional feedback icon
2013-12-16 02:15:09 +01:00
.form-control-feedback {
color: @text-color;
}
2013-03-17 19:33:07 +01:00
}
2013-08-05 08:05:54 +02: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 09:46:18 +02:00
2013-08-13 19:06:02 +02:00
select& {
height: @input-height;
line-height: @input-height;
}
2013-08-15 09:46:18 +02:00
2014-01-30 06:34:10 +01:00
textarea&,
select[multiple]& {
2013-08-13 19:06:02 +02:00
height: auto;
}
}
2014-03-10 00:13:37 +01:00