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 {
2013-11-07 10:57:55 -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
}
2013-10-24 22:20:08 -04:00
// WebKit-style focus
2012-01-27 21:33:25 -05:00
.tab-focus() {
// Default
2013-11-19 22:24:26 -05:00
outline: thin dotted;
2013-11-19 03:20:33 -05:00
// WebKit
2012-01-27 21:33:25 -05:00
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
2013-08-02 15:31:13 -04: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) {
2013-08-02 15:31:13 -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
2013-11-18 17:22:17 -05:00
&::-moz-placeholder { color: @color; // Firefox 19+
opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
2013-02-08 11:32:29 -05:00
&:-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
2013-08-24 01:11:41 -04: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
2013-08-24 01:19:58 -04:00
// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note
// that we cannot chain the mixins together in Less, so they are repeated.
2013-08-24 01:11:41 -04:00
//
2012-03-14 15:00:27 -04:00
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
2013-08-24 01:11:41 -04:00
2013-08-24 01:19:58 -04: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 01:11:41 -04:00
.text-hide() {
2013-12-01 03:18:27 -05:00
.hide-text();
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;
transition: @transition;
2011-09-29 04:40:27 -04:00
}
2013-08-23 03:22:54 -04:00
.transition-property(@transition-property) {
-webkit-transition-property: @transition-property;
transition-property: @transition-property;
}
2012-08-26 01:09:10 -04:00
.transition-delay(@transition-delay) {
-webkit-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;
transition-duration: @transition-duration;
}
2013-07-27 01:09:31 -04: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 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);
2013-08-05 11:11:13 -04:00
-ms-transform: rotate(@degrees); // IE9+
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);
2013-08-05 11:11:13 -04:00
-ms-transform: scale(@ratio); // IE9+
2012-01-25 18:03:44 -05:00
transform: scale(@ratio);
2011-06-27 19:47:12 -04:00
}
2013-08-02 15:31:13 -04:00
.translate(@x; @y) {
2011-10-04 03:55:35 -04:00
-webkit-transform: translate(@x, @y);
2013-08-05 11:11:13 -04:00
-ms-transform: translate(@x, @y); // IE9+
2011-10-04 03:55:35 -04:00
transform: translate(@x, @y);
}
2013-08-02 15:31:13 -04:00
.skew(@x; @y) {
2012-01-30 10:54:47 -05:00
-webkit-transform: skew(@x, @y);
2013-08-05 11:11:13 -04:00
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
2012-01-30 10:54:47 -05:00
transform: skew(@x, @y);
}
2013-08-02 15:31:13 -04:00
.translate3d(@x; @y; @z) {
2012-08-20 17:26:38 -04:00
-webkit-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
2013-08-22 07:05:06 -04:00
.rotateX(@degrees) {
-webkit-transform: rotateX(@degrees);
-ms-transform: rotateX(@degrees); // IE9+
transform: rotateX(@degrees);
}
.rotateY(@degrees) {
-webkit-transform: rotateY(@degrees);
-ms-transform: rotateY(@degrees); // IE9+
transform: rotateY(@degrees);
}
.perspective(@perspective) {
-webkit-perspective: @perspective;
-moz-perspective: @perspective;
perspective: @perspective;
}
.perspective-origin(@perspective) {
-webkit-perspective-origin: @perspective;
-moz-perspective-origin: @perspective;
perspective-origin: @perspective;
}
2013-10-26 08:11:59 -04:00
.transform-origin(@origin) {
2013-08-22 07:05:06 -04:00
-webkit-transform-origin: @origin;
-moz-transform-origin: @origin;
transform-origin: @origin;
}
2013-10-26 08:11:59 -04:00
// Animations
.animation(@animation) {
-webkit-animation: @animation;
animation: @animation;
}
2013-08-22 07:05:06 -04:00
2012-03-28 21:25:27 -04:00
// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
2013-07-16 13:49:59 -04:00
// Default value is `visible`, but can be changed to `hidden`
2012-04-01 00:06:16 -04:00
.backface-visibility(@visibility){
2013-07-31 12:11:11 -04:00
-webkit-backface-visibility: @visibility;
-moz-backface-visibility: @visibility;
backface-visibility: @visibility;
2012-03-28 10:05:49 -04: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;
2013-08-05 11:11:13 -04:00
-ms-user-select: @select; // IE10+
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
2013-08-02 15:31:13 -04:00
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
2012-12-05 14:05:10 -05: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 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;
2013-08-05 11:11:13 -04:00
-ms-hyphens: @mode; // IE10+
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
}
2013-05-25 16:16:15 -04:00
// GRADIENTS
2012-01-18 02:52:49 -05:00
// --------------------------------------------------
2011-06-27 19:47:12 -04:00
#gradient {
2013-05-25 16:16:15 -04: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 11:45:51 -04:00
.horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
2013-11-19 03:20:33 -05: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+
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 04:40:27 -04:00
background-repeat: repeat-x;
2013-05-25 16:16:15 -04: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 19:47:12 -04:00
}
2013-05-25 16:16:15 -04: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 11:45:51 -04:00
.vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
2013-11-19 03:20:33 -05:00
background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
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 04:40:27 -04:00
background-repeat: repeat-x;
2013-05-25 16:16:15 -04: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 19:47:12 -04:00
}
2013-05-25 16:16:15 -04:00
2013-08-02 15:31:13 -04:00
.directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
2011-06-27 19:47:12 -04:00
background-repeat: repeat-x;
2013-11-19 03:20:33 -05:00
background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
2011-06-27 19:47:12 -04: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 16:16:15 -04:00
background-image: -webkit-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 00:37:52 -05:00
background-repeat: no-repeat;
2013-05-25 16:16:15 -04: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 00:37:52 -05: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 16:16:15 -04:00
background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
2011-09-29 04:40:27 -04:00
background-repeat: no-repeat;
2013-05-25 16:16:15 -04: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 19:47:12 -04:00
}
2013-08-02 15:31:13 -04:00
.radial(@inner-color: #555; @outer-color: #333) {
2013-05-25 16:16:15 -04:00
background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
background-image: radial-gradient(circle, @inner-color, @outer-color);
2011-09-29 04:40:27 -04:00
background-repeat: no-repeat;
}
2013-08-20 23:13:03 -04: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);
background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
2011-11-26 13:41:17 -05:00
}
2011-06-27 19:47:12 -04:00
}
2013-05-25 16:16:15 -04:00
2012-01-28 16:13:01 -05:00
// Reset filters for IE
2013-05-25 16:16:15 -04:00
//
2013-08-18 13:23:42 -04:00
// When you need to remove a gradient background, do not forget to use this to reset
2013-05-25 16:16:15 -04:00
// the IE filter for IE9 and below.
2012-01-28 16:13:01 -05:00
.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-05-25 16:16:15 -04:00
2013-08-15 03:46:18 -04:00
// Retina images
//
2013-03-16 20:19:05 -04:00
// Short retina mixin for setting background-image and -size
2013-08-15 03:46:18 -04:00
2013-08-02 15:31:13 -04:00
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
2013-03-16 20:19:05 -04: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 21:23:21 -05:00
}
2012-02-20 15:38:49 -05:00
2013-08-15 03:46:18 -04: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 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
2013-07-24 02:18:53 -04:00
.nav-divider(@color: #e5e5e5) {
height: 1px;
2013-05-10 11:21:27 -04:00
margin: ((@line-height-computed / 2) - 1) 0;
2012-04-16 19:34:08 -04:00
overflow: hidden;
2013-07-24 02:18:53 -04:00
background-color: @color;
2012-02-20 15:38:49 -05:00
}
2013-08-07 14:15:12 -04:00
// Panels
// -------------------------
2013-11-25 14:41:00 -05:00
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
2013-08-07 14:15:12 -04:00
border-color: @border;
2013-10-21 01:46:21 -04:00
2013-08-14 10:40:26 -04:00
& > .panel-heading {
2013-08-07 14:15:12 -04:00
color: @heading-text-color;
background-color: @heading-bg-color;
border-color: @heading-border;
2013-10-21 01:46:21 -04:00
2013-08-13 02:36:25 -04:00
+ .panel-collapse .panel-body {
border-top-color: @border;
}
}
2013-08-14 10:40:26 -04:00
& > .panel-footer {
2013-08-13 02:36:25 -04:00
+ .panel-collapse .panel-body {
border-bottom-color: @border;
}
2013-08-07 14:15:12 -04:00
}
}
2013-07-07 01:01:34 -04:00
// Alerts
// -------------------------
2013-08-02 15:31:13 -04:00
.alert-variant(@background; @border; @text-color) {
2013-07-07 01:01:34 -04:00
background-color: @background;
border-color: @border;
color: @text-color;
2013-10-21 01:46:21 -04:00
2013-07-07 01:01:34 -04:00
hr {
border-top-color: darken(@border, 5%);
}
.alert-link {
color: darken(@text-color, 10%);
}
}
2013-08-14 15:16:45 -04:00
// Tables
// -------------------------
2013-11-07 03:53:33 -05:00
.table-row-variant(@state; @background) {
2013-08-14 15:16:45 -04:00
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.
2013-11-07 03:53:33 -05:00
.table {
> thead,
> tbody,
> tfoot {
> tr > .@{state},
> .@{state} > td,
> .@{state} > th {
background-color: @background;
}
2013-08-14 15:16:45 -04:00
}
}
2013-08-15 03:46:18 -04:00
2013-08-14 15:16:45 -04:00
// Hover states for `.table-hover`
// Note: this is not available for cells or rows within `thead` or `tfoot`.
2013-11-07 03:53:33 -05:00
.table-hover > tbody {
> tr > .@{state}:hover,
> .@{state}:hover > td,
> .@{state}:hover > th {
2013-08-14 15:16:45 -04:00
background-color: darken(@background, 5%);
}
}
}
2013-08-12 07:55:09 -04:00
// Button variants
2013-02-02 22:16:15 -05:00
// -------------------------
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons
2013-08-12 07:55:09 -04:00
.button-variant(@color; @background; @border) {
2013-05-07 21:07:06 -04:00
color: @color;
2013-02-02 22:16:15 -05:00
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,
2013-08-15 18:16:46 -04:00
&.active,
.open .dropdown-toggle& {
2013-08-05 12:02:59 -04:00
color: @color;
2013-08-05 11:52:22 -04:00
background-color: darken(@background, 8%);
border-color: darken(@border, 12%);
2012-12-20 01:54:04 -05:00
}
2013-08-15 19:17:44 -04:00
&:active,
&.active,
.open .dropdown-toggle& {
background-image: none;
}
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-05-26 12:14:25 -04:00
&,
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;
2013-09-08 09:37:02 -04:00
border-color: @border;
2013-02-02 22:16:15 -05:00
}
2012-01-27 16:39:27 -05:00
}
2013-11-30 19:29:52 -05:00
.badge {
color: @background;
background-color: #fff;
}
2012-01-27 16:39:27 -05:00
}
2013-08-12 08:07:19 -04: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 07:27:45 -04:00
// Pagination
// -------------------------
2013-08-13 08:25:05 -04:00
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
2013-08-13 07:27:45 -04: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 17:26:51 -04:00
// Labels
// -------------------------
.label-variant(@color) {
background-color: @color;
&[href] {
&:hover,
&:focus {
background-color: darken(@color, 10%);
}
}
}
2012-02-20 22:14:26 -05:00
// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
2013-08-01 09:39:28 -04: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 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
}
2013-07-07 18:06:16 -04:00
// Progress bars
// -------------------------
.progress-bar-variant(@color) {
background-color: @color;
.progress-striped & {
2013-08-20 23:46:01 -04:00
#gradient > .striped();
2013-07-07 18:06:16 -04:00
}
}
2013-06-25 16:32:21 -04:00
// Responsive utilities
// -------------------------
// More easily include all the states for responsive-utilities.less.
.responsive-visibility() {
display: block !important;
2013-12-03 16:57:28 -05:00
table& { display: table; }
tr& { display: table-row !important; }
2013-06-25 16:32:21 -04:00
th&,
2013-12-03 16:57:28 -05:00
td& { display: table-cell !important; }
2013-06-25 16:32:21 -04:00
}
2013-07-01 15:13:57 -04:00
.responsive-invisibility() {
2013-09-18 01:14:19 -04:00
&,
2013-09-16 10:16:53 -04:00
tr&,
2013-07-01 15:13:57 -04:00
th&,
td& { display: none !important; }
}
2013-10-12 01:00:37 -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-08-17 01:37:02 -04:00
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
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
// Creates a wrapper for a series of columns
2013-08-07 00:00:12 -04:00
.make-row(@gutter: @grid-gutter-width) {
2013-08-16 18:16:03 -04:00
margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
2013-03-30 16:23:18 -04:00
.clearfix();
2012-03-11 18:15:55 -04:00
}
2013-07-18 03:56:36 -04:00
2013-08-12 14:52:51 -04:00
// Generate the extra small columns
.make-xs-column(@columns; @gutter: @grid-gutter-width) {
2013-08-07 15:15:01 -04:00
position: relative;
float: left;
2013-08-16 00:51:41 -04:00
width: percentage((@columns / @grid-columns));
2013-08-07 15:15:01 -04:00
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
}
// Generate the small columns
2013-08-12 03:36:22 -04:00
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
2013-04-30 16:03:10 -04:00
position: relative;
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-08-07 00:00:12 -04:00
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-04-30 16:03:10 -04:00
// Calculate width based on number of columns available
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-sm-min) {
2013-06-27 22:54:30 -04:00
float: left;
2013-04-30 16:03:10 -04:00
width: percentage((@columns / @grid-columns));
}
2013-01-17 13:49:10 -05:00
}
2013-07-18 03:56:36 -04:00
2013-08-07 15:15:01 -04:00
// Generate the small column offsets
2013-08-12 03:36:22 -04:00
.make-sm-column-offset(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-sm-min) {
2013-03-16 02:21:10 -04:00
margin-left: percentage((@columns / @grid-columns));
}
}
2013-08-12 03:36:22 -04:00
.make-sm-column-push(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-sm-min) {
2013-03-16 02:21:10 -04:00
left: percentage((@columns / @grid-columns));
}
}
2013-08-12 03:36:22 -04:00
.make-sm-column-pull(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-sm-min) {
2013-03-16 02:21:10 -04:00
right: percentage((@columns / @grid-columns));
}
2012-03-11 18:15:55 -04:00
}
2013-04-30 16:03:10 -04:00
2013-08-12 03:36:22 -04:00
// Generate the medium columns
.make-md-column(@columns; @gutter: @grid-gutter-width) {
2013-06-25 19:05:45 -04:00
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
2013-08-07 00:00:12 -04:00
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
2013-07-18 03:56:36 -04:00
2013-06-25 19:05:45 -04:00
// Calculate width based on number of columns available
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-md-min) {
2013-08-07 15:15:01 -04:00
float: left;
2013-06-25 19:05:45 -04:00
width: percentage((@columns / @grid-columns));
}
}
2013-03-17 14:33:07 -04:00
2013-09-04 04:59:44 -04:00
// Generate the medium column offsets
2013-08-12 03:36:22 -04:00
.make-md-column-offset(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-md-min) {
2013-08-07 15:15:01 -04:00
margin-left: percentage((@columns / @grid-columns));
}
}
2013-08-12 03:36:22 -04:00
.make-md-column-push(@columns) {
2013-08-17 18:21:38 -04:00
@media (min-width: @screen-md) {
2013-08-07 15:15:01 -04:00
left: percentage((@columns / @grid-columns));
}
}
2013-08-12 03:36:22 -04:00
.make-md-column-pull(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-md-min) {
2013-08-07 15:15:01 -04:00
right: percentage((@columns / @grid-columns));
}
}
2013-08-12 03:36:22 -04: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
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-lg-min) {
2013-08-12 03:36:22 -04:00
float: left;
width: percentage((@columns / @grid-columns));
}
}
// Generate the large column offsets
.make-lg-column-offset(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-lg-min) {
2013-08-12 03:36:22 -04:00
margin-left: percentage((@columns / @grid-columns));
}
}
.make-lg-column-push(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-lg-min) {
2013-08-12 03:36:22 -04:00
left: percentage((@columns / @grid-columns));
}
}
.make-lg-column-pull(@columns) {
2013-08-20 20:31:02 -04:00
@media (min-width: @screen-lg-min) {
2013-08-12 03:36:22 -04:00
right: percentage((@columns / @grid-columns));
}
}
2013-03-17 14:33:07 -04:00
2013-10-12 01:00:37 -04: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}";
.col(@index + 1, @item);
}
.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}";
.col(@index + 1, ~"@{list}, @{item}");
}
.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
}
.make-grid-columns-float(@class) {
.col(@index) when (@index = 1) { // initial
@item: ~".col-@{class}-@{index}";
.col(@index + 1, @item);
}
2013-11-29 02:37:54 -05:00
.col(@index, @list) when (@index =< @grid-columns) { // general
2013-10-12 01:00:37 -04:00
@item: ~".col-@{class}-@{index}";
.col(@index + 1, ~"@{list}, @{item}");
}
2013-11-29 02:37:54 -05:00
.col(@index, @list) when (@index > @grid-columns) { // terminal
2013-10-12 01:00:37 -04:00
@{list} {
float: left;
}
}
.col(1); // kickstart it
}
2013-11-06 16:03:08 -05:00
.calc-grid(@index, @class, @type) when (@type = width) and (@index > 0) {
2013-10-12 01:00:37 -04:00
.col-@{class}-@{index} {
width: percentage((@index / @grid-columns));
}
}
.calc-grid(@index, @class, @type) when (@type = push) {
.col-@{class}-push-@{index} {
left: percentage((@index / @grid-columns));
}
}
.calc-grid(@index, @class, @type) when (@type = pull) {
.col-@{class}-pull-@{index} {
right: percentage((@index / @grid-columns));
}
}
.calc-grid(@index, @class, @type) when (@type = offset) {
.col-@{class}-offset-@{index} {
margin-left: percentage((@index / @grid-columns));
}
}
// Basic looping in LESS
2013-11-06 16:03:08 -05:00
.make-grid(@index, @class, @type) when (@index >= 0) {
2013-10-12 01:00:37 -04:00
.calc-grid(@index, @class, @type);
// next iteration
.make-grid(@index - 1, @class, @type);
}
2013-07-25 22:45:14 -04: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 22:45:14 -04:00
// Color the label and help text
2013-07-01 21:21:19 -04:00
.help-block,
2013-10-20 22:54:22 -04:00
.control-label,
.radio,
.checkbox,
.radio-inline,
.checkbox-inline {
2013-03-17 14:33:07 -04:00
color: @text-color;
}
// Set the border and box shadow on specific inputs to match
2013-07-25 22:45:14 -04:00
.form-control {
2013-03-17 14:33:07 -04: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 16:14:58 -04:00
// Set validation states also for addons
.input-group-addon {
color: @text-color;
border-color: @border-color;
background-color: @background-color;
2013-06-25 16:32:21 -04:00
}
2013-03-17 14:33:07 -04:00
}
2013-08-05 02:05:54 -04: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 13:06:02 -04: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 03:46:18 -04:00
2013-08-13 13:06:02 -04:00
select& {
height: @input-height;
line-height: @input-height;
}
2013-08-15 03:46:18 -04:00
2013-08-13 13:06:02 -04:00
textarea& {
height: auto;
}
}