2012-06-29 00:46:45 -04:00
//
// Mixins
// --------------------------------------------------
2011-06-27 19:47:12 -04:00
2011-08-17 01:58:01 -04:00
2012-12-19 20:49:20 -05:00
// Utilities
// -------------------------
2012-01-18 02:52:49 -05:00
// Clearfix
2012-12-19 20:49:20 -05: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 16:23:18 -04:00
.clearfix() {
2011-09-29 04:40:27 -04:00
&:before,
2011-09-10 18:29:38 -04:00
&:after {
2012-12-19 20:49:20 -05:00
content: " "; /* 1 */
display: table; /* 2 */
2011-09-29 04:40:27 -04:00
}
&:after {
2011-06-27 19:47:12 -04:00
clear: both;
2011-09-29 04:40:27 -04:00
}
2011-06-27 19:47:12 -04:00
}
2012-01-27 21:33:25 -05:00
// Webkit-style focus
.tab-focus() {
// Default
2012-02-17 00:25:40 -05:00
outline: thin dotted #333;
2012-01-27 21:33:25 -05:00
// Webkit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
2011-06-27 19:47:12 -04:00
// Center-align a block level element
2011-09-12 23:07:26 -04:00
.center-block() {
2011-09-29 04:40:27 -04:00
display: block;
2011-09-03 00:00:01 -04:00
margin-left: auto;
margin-right: auto;
2011-06-27 19:47:12 -04:00
}
// Sizing shortcuts
2012-11-04 22:59:50 -05:00
.size(@width, @height) {
2011-09-29 04:40:27 -04:00
width: @width;
2011-11-17 04:28:42 -05:00
height: @height;
2011-06-27 19:47:12 -04:00
}
2012-04-01 00:06:16 -04:00
.square(@size) {
2011-09-29 04:40:27 -04:00
.size(@size, @size);
2011-06-27 19:47:12 -04:00
}
2012-01-18 02:52:49 -05:00
// Placeholder text
2012-11-30 18:27:13 -05:00
.placeholder(@color: @input-color-placeholder) {
2013-02-08 11:32:29 -05: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 19:47:12 -04:00
}
2012-02-05 04:49:36 -05:00
// Text overflow
// Requires inline-block or block for proper styling
.text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2012-03-14 15:00:27 -04:00
// CSS image replacement
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
2012-09-26 11:59:57 -04:00
.hide-text() {
2012-03-14 15:00:27 -04:00
font: 0/0 a;
color: transparent;
2012-04-16 18:09:05 -04:00
text-shadow: none;
2012-03-14 15:00:27 -04:00
background-color: transparent;
2012-04-16 18:09:05 -04:00
border: 0;
2012-03-12 00:12:59 -04:00
}
2012-01-18 02:52:49 -05:00
2012-03-12 00:21:51 -04:00
2012-02-07 03:13:52 -05:00
2012-01-18 02:52:49 -05:00
// CSS3 PROPERTIES
// --------------------------------------------------
2012-12-01 17:25:28 -05:00
// Single side border-radius
2012-06-20 18:50:28 -04:00
.border-top-radius(@radius) {
2012-12-01 17:25:28 -05:00
border-top-right-radius: @radius;
border-top-left-radius: @radius;
2012-06-20 18:50:28 -04:00
}
.border-right-radius(@radius) {
2012-12-01 17:25:28 -05:00
border-bottom-right-radius: @radius;
border-top-right-radius: @radius;
2012-06-20 22:36:06 -04:00
}
.border-bottom-radius(@radius) {
2012-12-01 17:25:28 -05:00
border-bottom-right-radius: @radius;
border-bottom-left-radius: @radius;
2012-06-20 22:36:06 -04:00
}
.border-left-radius(@radius) {
2012-12-01 17:25:28 -05:00
border-bottom-left-radius: @radius;
border-top-left-radius: @radius;
2012-06-20 18:50:28 -04:00
}
2011-06-27 19:47:12 -04:00
// Drop shadows
2012-09-12 19:11:03 -04:00
.box-shadow(@shadow) {
2012-10-01 02:17:07 -04:00
-webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
2012-09-12 18:53:29 -04:00
box-shadow: @shadow;
2011-06-27 19:47:12 -04:00
}
// Transitions
2012-03-25 15:42:47 -04:00
.transition(@transition) {
-webkit-transition: @transition;
-moz-transition: @transition;
-o-transition: @transition;
transition: @transition;
2011-09-29 04:40:27 -04:00
}
2012-08-26 01:09:10 -04:00
.transition-delay(@transition-delay) {
-webkit-transition-delay: @transition-delay;
-moz-transition-delay: @transition-delay;
-o-transition-delay: @transition-delay;
transition-delay: @transition-delay;
}
2012-12-28 03:19:12 -05:00
.transition-duration(@transition-duration) {
-webkit-transition-duration: @transition-duration;
-moz-transition-duration: @transition-duration;
-o-transition-duration: @transition-duration;
transition-duration: @transition-duration;
}
2011-09-29 04:40:27 -04:00
2012-01-14 19:45:01 -05:00
// Transformations
2012-01-25 18:03:44 -05:00
.rotate(@degrees) {
2011-09-29 04:40:27 -04:00
-webkit-transform: rotate(@degrees);
-moz-transform: rotate(@degrees);
2011-10-04 03:55:35 -04:00
-ms-transform: rotate(@degrees);
-o-transform: rotate(@degrees);
2011-09-29 04:40:27 -04:00
transform: rotate(@degrees);
}
2012-01-25 18:03:44 -05:00
.scale(@ratio) {
-webkit-transform: scale(@ratio);
-moz-transform: scale(@ratio);
-ms-transform: scale(@ratio);
-o-transform: scale(@ratio);
transform: scale(@ratio);
2011-06-27 19:47:12 -04:00
}
2012-04-01 00:06:16 -04:00
.translate(@x, @y) {
2011-10-04 03:55:35 -04:00
-webkit-transform: translate(@x, @y);
-moz-transform: translate(@x, @y);
-ms-transform: translate(@x, @y);
-o-transform: translate(@x, @y);
transform: translate(@x, @y);
}
2012-04-01 00:06:16 -04:00
.skew(@x, @y) {
2012-01-30 10:54:47 -05:00
-webkit-transform: skew(@x, @y);
-moz-transform: skew(@x, @y);
2012-09-04 14:08:08 -04:00
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twitter/bootstrap/issues/4885
2012-01-30 10:54:47 -05:00
-o-transform: skew(@x, @y);
transform: skew(@x, @y);
}
2012-04-01 00:06:16 -04:00
.translate3d(@x, @y, @z) {
2012-08-20 17:26:38 -04:00
-webkit-transform: translate3d(@x, @y, @z);
-moz-transform: translate3d(@x, @y, @z);
-o-transform: translate3d(@x, @y, @z);
transform: translate3d(@x, @y, @z);
2012-02-07 02:48:48 -05:00
}
2011-06-27 19:47:12 -04:00
2012-03-28 21:25:27 -04:00
// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
// Default value is `visible`, but can be changed to `hidden
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
2012-04-01 00:06:16 -04:00
.backface-visibility(@visibility){
2012-03-28 10:05:49 -04:00
-webkit-backface-visibility: @visibility;
2012-03-28 21:25:27 -04:00
-moz-backface-visibility: @visibility;
backface-visibility: @visibility;
2012-03-28 10:05:49 -04:00
}
2011-06-28 14:56:49 -04:00
// Background clipping
2012-03-25 15:42:47 -04:00
.background-clip(@clip) {
-webkit-background-clip: @clip;
-moz-background-clip: @clip;
background-clip: @clip;
2011-06-28 14:56:49 -04:00
}
2012-01-18 02:52:49 -05:00
// Background sizing
2012-09-20 12:07:48 -04:00
.background-size(@size) {
2012-03-25 15:42:47 -04:00
-webkit-background-size: @size;
-moz-background-size: @size;
-o-background-size: @size;
background-size: @size;
2012-01-18 02:52:49 -05:00
}
2012-01-07 18:52:57 -05:00
// Box sizing
.box-sizing(@boxmodel) {
-webkit-box-sizing: @boxmodel;
-moz-box-sizing: @boxmodel;
box-sizing: @boxmodel;
}
2012-01-18 02:52:49 -05:00
// User select
// For selecting text on the page
.user-select(@select) {
-webkit-user-select: @select;
-moz-user-select: @select;
2012-04-18 04:38:14 -04:00
-ms-user-select: @select;
2012-01-18 02:52:49 -05:00
-o-user-select: @select;
user-select: @select;
}
2011-10-27 02:11:56 -04:00
// Resize anything
2012-04-01 00:06:16 -04:00
.resizable(@direction) {
2011-10-27 02:11:56 -04:00
resize: @direction; // Options: horizontal, vertical, both
overflow: auto; // Safari fix
}
2011-06-27 19:47:12 -04:00
// CSS3 Content Columns
2012-12-05 14:05:10 -05:00
.content-columns(@column-count, @column-gap: @grid-gutter-width) {
-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 19:47:12 -04:00
}
2012-05-01 11:01:26 -04:00
// Optional hyphenation
.hyphens(@mode: auto) {
2012-05-13 17:31:31 -04:00
word-wrap: break-word;
2012-05-01 11:01:26 -04:00
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
-ms-hyphens: @mode;
2012-05-01 11:54:53 -04:00
-o-hyphens: @mode;
2012-05-01 11:01:26 -04:00
hyphens: @mode;
}
2012-01-18 02:52:49 -05:00
// Opacity
2012-04-01 00:06:16 -04:00
.opacity(@opacity) {
2013-02-28 22:46:49 -05:00
opacity: @opacity;
// IE8 filter
2013-03-06 11:38:20 -05:00
@opacity-ie: (@opacity * 100);
2013-02-28 22:46:49 -05:00
filter: ~"alpha(opacity=@{opacity-ie})";
2012-01-18 02:52:49 -05:00
}
// BACKGROUNDS
// --------------------------------------------------
2011-06-27 19:47:12 -04:00
// Gradients
#gradient {
2011-09-29 04:40:27 -04:00
.horizontal(@startColor: #555, @endColor: #333) {
2011-06-27 19:47:12 -04:00
background-color: @endColor;
2012-01-25 18:03:36 -05:00
background-image: -webkit-gradient(linear, 0 0, 100% 0, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
2011-06-27 19:47:12 -04:00
background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
2013-04-18 15:46:31 -04:00
background-image: -moz-linear-gradient(left, @startColor, @endColor); // FF 3.6+
2012-07-09 03:53:56 -04:00
background-image: linear-gradient(to right, @startColor, @endColor); // Standard, IE10
2011-09-29 04:40:27 -04:00
background-repeat: repeat-x;
2012-05-04 16:50:16 -04:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down
2011-06-27 19:47:12 -04:00
}
2011-09-29 04:40:27 -04:00
.vertical(@startColor: #555, @endColor: #333) {
2012-12-20 02:12:38 -05:00
background-color: @endColor;
2012-01-25 18:03:36 -05:00
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
2011-08-26 02:31:16 -04:00
background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
2013-04-18 15:46:31 -04:00
background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
2012-12-02 23:40:24 -05:00
background-image: linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10
2011-09-29 04:40:27 -04:00
background-repeat: repeat-x;
2012-05-04 16:50:16 -04:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down
2011-06-27 19:47:12 -04:00
}
2011-09-29 04:40:27 -04:00
.directional(@startColor: #555, @endColor: #333, @deg: 45deg) {
2011-06-27 19:47:12 -04:00
background-color: @endColor;
background-repeat: repeat-x;
2011-06-30 03:15:37 -04:00
background-image: -webkit-linear-gradient(@deg, @startColor, @endColor); // Safari 5.1+, Chrome 10+
2013-04-18 15:46:31 -04:00
background-image: -moz-linear-gradient(@deg, @startColor, @endColor); // FF 3.6+
2012-07-09 03:53:56 -04:00
background-image: linear-gradient(@deg, @startColor, @endColor); // Standard, IE10
2011-06-27 19:47:12 -04:00
}
2013-01-24 00:37:52 -05:00
.horizontal-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
background-color: mix(@midColor, @endColor, 80%);
background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
background-image: -webkit-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
background-image: -moz-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
background-image: linear-gradient(to right, @startColor, @midColor @colorStop, @endColor);
background-repeat: no-repeat;
2013-03-23 15:21:37 -04:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback
2013-01-24 00:37:52 -05:00
}
2011-08-22 17:19:39 -04:00
.vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
2012-01-26 13:26:14 -05:00
background-color: mix(@midColor, @endColor, 80%);
2011-06-27 19:47:12 -04:00
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
2011-08-22 17:19:39 -04:00
background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor);
2012-08-28 00:18:55 -04:00
background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);
2011-08-22 17:19:39 -04:00
background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
2011-09-29 04:40:27 -04:00
background-repeat: no-repeat;
2012-05-04 16:50:16 -04:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback
2011-06-27 19:47:12 -04:00
}
2012-09-20 12:07:48 -04:00
.radial(@innerColor: #555, @outerColor: #333) {
2012-01-28 15:03:26 -05:00
background-color: @outerColor;
background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@innerColor), to(@outerColor));
background-image: -webkit-radial-gradient(circle, @innerColor, @outerColor);
background-image: -moz-radial-gradient(circle, @innerColor, @outerColor);
2013-04-02 17:48:45 -04:00
background-image: radial-gradient(circle, @innerColor, @outerColor);
2011-09-29 04:40:27 -04:00
background-repeat: no-repeat;
}
2012-08-27 12:53:23 -04:00
.striped(@color: #555, @angle: 45deg) {
2011-11-26 13:41:17 -05:00
background-color: @color;
2012-01-07 18:52:57 -05: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 13:41:17 -05:00
}
2011-06-27 19:47:12 -04:00
}
2012-01-28 16:13:01 -05:00
// Reset filters for IE
.reset-filter() {
2012-03-22 20:31:09 -04:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
2012-01-28 16:13:01 -05:00
}
2011-06-27 19:47:12 -04:00
2011-11-17 02:58:36 -05:00
2013-02-11 21:23:21 -05:00
// RETINA IMAGE SUPPORT
// --------------------------------------------------
2013-03-16 20:19:05 -04:00
// Short retina mixin for setting background-image and -size
.retina-image(@file-1x, @file-2x, @width-1x, @height-1x) {
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 21:23:21 -05:00
}
2012-02-20 15:38:49 -05:00
// COMPONENT MIXINS
// --------------------------------------------------
2012-02-20 22:14:26 -05:00
// Horizontal dividers
2012-02-20 15:38:49 -05:00
// -------------------------
// Dividers (basically an hr) within dropdowns and nav lists
2012-11-30 18:05:23 -05:00
.nav-divider(@top: #e5e5e5, @bottom: #fff) {
2013-03-31 20:17:10 -04:00
height: 2px; // 1px for background, one for border
2013-02-02 01:56:09 -05:00
margin: ((@line-height-base / 2) - 1) 0;
2012-04-16 19:34:08 -04:00
overflow: hidden;
2012-05-13 16:58:42 -04:00
background-color: @top;
border-bottom: 1px solid @bottom;
2012-02-20 15:38:49 -05:00
}
2013-02-02 22:16:15 -05:00
// Button psuedo states
// -------------------------
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons
.btn-pseudo-states(@background, @border) {
background-color: @background;
border-color: @border;
2012-01-27 16:39:27 -05:00
2012-12-20 01:25:56 -05:00
&:hover,
2013-02-02 22:16:15 -05:00
&:focus,
2013-03-16 15:34:07 -04:00
&:active,
&.active {
2013-02-02 22:16:15 -05:00
background-color: darken(@background, 5%);
border-color: darken(@border, 10%);
2012-12-20 01:54:04 -05:00
}
2013-02-02 22:16:15 -05:00
2012-12-20 02:37:33 -05:00
&.disabled,
2013-02-02 22:16:15 -05:00
&[disabled],
2012-12-20 02:37:33 -05:00
fieldset[disabled] & {
2013-02-02 22:16:15 -05:00
&:hover,
&:focus,
2013-03-16 15:34:07 -04:00
&:active,
&.active {
2013-02-02 22:16:15 -05:00
background-color: @background;
border-color: @border
}
2012-01-27 16:39:27 -05:00
}
}
2012-02-20 22:14:26 -05:00
// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
// Example: an element has a height of 30px, so write out `.navbarVerticalAlign(30px);` to calculate the appropriate top margin.
2013-01-16 19:14:41 -05:00
.navbar-vertical-align(@element-height) {
2013-03-06 11:38:20 -05:00
margin-top: ((@navbar-height - @element-height) / 2);
margin-bottom: ((@navbar-height - @element-height) / 2);
2012-02-20 22:14:26 -05:00
}
2012-07-10 01:14:30 -04:00
2012-02-22 02:16:06 -05:00
// Grid System
// -----------
2012-03-11 18:15:55 -04:00
// Centered container element
2012-02-22 02:16:06 -05:00
.container-fixed() {
margin-right: auto;
2012-04-16 18:37:17 -04:00
margin-left: auto;
2013-03-30 16:23:18 -04:00
.clearfix();
2012-02-22 02:16:06 -05:00
}
2013-03-16 02:21:10 -04:00
// Make a grid
2013-01-17 13:49:10 -05:00
2013-03-16 02:21:10 -04:00
// Creates a wrapper for a series of columns
2013-01-17 13:49:10 -05:00
.make-row() {
2013-03-16 02:21:10 -04:00
// Then clear the floated columns
2013-03-30 16:23:18 -04:00
.clearfix();
2013-04-01 15:55:48 -04:00
// Negative margin nested rows out to align the content of columns
.row {
margin-left: (@grid-gutter-width / -2);
margin-right: (@grid-gutter-width / -2);
}
2012-03-11 18:15:55 -04:00
}
2013-03-16 02:21:10 -04:00
// Generate the columns
2013-01-17 13:49:10 -05:00
.make-column(@columns) {
2013-03-16 02:21:10 -04:00
@media (min-width: @grid-float-breakpoint) {
// Calculate width based on number of columns available
2013-04-22 19:11:11 -04:00
width: percentage((@columns / @grid-columns));
2013-03-16 02:21:10 -04:00
}
// Prevent columns from collapsing when empty
min-height: 1px;
2013-04-27 02:59:51 -04:00
// Inner gutter via padding
2013-03-16 02:21:10 -04:00
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
2013-01-17 13:49:10 -05:00
}
2013-03-16 02:21:10 -04:00
// Generate the column offsets
2013-01-17 13:49:10 -05:00
.make-column-offset(@columns) {
2013-03-16 02:21:10 -04:00
@media (min-width: @grid-float-breakpoint) {
margin-left: percentage((@columns / @grid-columns));
}
}
.make-column-push(@columns) {
@media (min-width: @grid-float-breakpoint) {
left: percentage((@columns / @grid-columns));
}
}
.make-column-pull(@columns) {
@media (min-width: @grid-float-breakpoint) {
right: percentage((@columns / @grid-columns));
}
2012-03-11 18:15:55 -04:00
}
2013-04-20 18:54:44 -04:00
// Small, mobile-first columns
.make-small-column(@columns) {
position: relative;
float: left;
// Prevent columns from collapsing when empty
min-height: 1px;
// Set inner padding as gutters instead of margin
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
}
2012-03-11 18:15:55 -04:00
2013-01-17 13:49:10 -05:00
2012-02-22 02:16:06 -05:00
2013-04-27 02:59:51 -04:00
// Small grid columns
2013-03-16 02:21:10 -04:00
.generate-grid-columns(@grid-columns) {
2012-02-22 02:16:06 -05:00
2013-04-27 02:59:51 -04:00
.col-sm-X (@index) when (@index > 0) {
.col-sm-@{index} { .col-sm-(@index); }
.col-sm-X((@index - 1));
}
.col-sm-X (0) {}
// Generate columns
.col-sm-X(@grid-columns);
// Apply the styles
.col-sm-(@columns) {
width: percentage((@columns / @grid-columns));
}
}
// Large grid columns
.generate-large-grid-columns(@grid-columns) {
.col-lg-X (@index) when (@index > 0) {
.col-lg-@{index} { .col-lg-(@index); }
.col-lg-X((@index - 1));
}
.col-lg-X (0) {}
// Generate the columns
.col-lg-X(@grid-columns);
// Apply the styles
.col-lg-(@columns) {
width: percentage((@columns / @grid-columns));
2013-03-16 02:21:10 -04:00
}
2012-02-22 02:16:06 -05:00
2013-03-16 02:21:10 -04:00
// Offsets (gaps between columns)
2013-03-26 20:12:17 -04:00
.col-offset-X (@index) when (@index > 0) {
.col-offset-@{index} { .col-offset-(@index); }
.col-offset-X((@index - 1));
2013-03-16 02:21:10 -04:00
}
2013-03-26 20:12:17 -04:00
.col-offset-X (0) {}
2012-02-22 02:16:06 -05:00
2013-03-16 02:21:10 -04:00
// Source ordering
2013-03-26 20:12:17 -04:00
.col-push-X (@index) when (@index > 0) {
.col-push-@{index} { .col-push-(@index); }
.col-push-X((@index - 1));
2013-03-16 02:21:10 -04:00
}
2013-03-26 20:12:17 -04:00
.col-push-X (0) {}
2012-02-27 21:15:59 -05:00
2013-03-16 02:21:10 -04:00
// Source ordering
2013-03-26 20:12:17 -04:00
.col-pull-X (@index) when (@index > 0) {
.col-pull-@{index} { .col-pull-(@index); }
.col-pull-X((@index - 1));
2013-03-16 02:21:10 -04:00
}
2013-03-26 20:12:17 -04:00
.col-pull-X (0) {}
2012-09-08 15:50:37 -04:00
2013-03-16 02:21:10 -04:00
// Apply the styles
2013-03-26 20:12:17 -04:00
.col-offset-(@columns) {
2013-03-16 02:21:10 -04:00
margin-left: percentage((@columns / @grid-columns));
}
2013-03-26 20:12:17 -04:00
.col-push-(@columns) {
2013-03-16 02:21:10 -04:00
left: percentage((@columns / @grid-columns));
2012-09-08 15:50:37 -04:00
}
2013-03-26 20:12:17 -04:00
.col-pull-(@columns) {
2013-03-16 02:21:10 -04:00
right: percentage((@columns / @grid-columns));
}
// Generate .spanX and .offsetX
2013-03-26 20:12:17 -04:00
.col-offset-X(@grid-columns);
.col-push-X(@grid-columns);
.col-pull-X(@grid-columns);
2012-02-22 02:18:18 -05:00
}
2013-03-17 14:33:07 -04:00
// Framework mixins
// --------------------------------------------------
// Generate rem font-sizes with pixel fallbacks
// By default uses `@font-size-base` with an initial value of 14 (1.4rem or 14px)
.font-size(@font-size: @font-size-base) {
@rem-size: (@font-size / 10);
font-size: ~"@{font-size}px";
font-size: ~"@{rem-size}rem";
}
// Generate form validation states
.formFieldState(@text-color: #555, @border-color: #ccc, @background-color: #f5f5f5) {
// Color the label text
.control-label {
color: @text-color;
}
// Set the border and box shadow on specific inputs to match
.input-with-feedback {
padding-right: 32px; // to account for the feedback icon
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);
}
}
}