2011-11-26 00:34:55 -05:00
// Mixins.less
// Snippets of reusable CSS to develop faster and keep code readable
// -----------------------------------------------------------------
2011-06-27 19:47:12 -04:00
2011-08-17 01:58:01 -04:00
2012-01-18 02:52:49 -05:00
// UTILITY MIXINS
// --------------------------------------------------
// Clearfix
2012-01-27 21:33:25 -05:00
// --------
2012-01-18 02:52:49 -05:00
// For clearing floats like a boss h5bp.com/q
2012-02-17 01:04:11 -05:00
.clearfix {
2012-01-19 15:33:22 -05:00
*zoom: 1;
2011-09-29 04:40:27 -04:00
&:before,
2011-09-10 18:29:38 -04:00
&:after {
2011-08-19 23:20:48 -04:00
display: table;
content: "";
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
2012-01-27 21:33:25 -05:00
// ----------------------------------
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
}
2011-12-27 16:51:36 -05:00
// IE7 inline-block
2012-01-27 21:33:25 -05:00
// ----------------
2011-12-27 16:51:36 -05:00
.ie7-inline-block() {
*display: inline; /* IE7 inline-block hack */
*zoom: 1;
}
2012-01-27 14:17:06 -05:00
// IE7 likes to collapse whitespace on either side of the inline-block elements.
// Ems because we're attempting to match the width of a space character. Left
// version is for form buttons, which typically come after other elements, and
// right version is for icons, which come before. Applying both is ok, but it will
// mean that space between those elements will be .6em (~2 space characters) in IE7,
// instead of the 1 space in other browsers.
.ie7-restore-left-whitespace() {
*margin-left: .3em;
&:first-child {
*margin-left: 0;
}
}
.ie7-restore-right-whitespace() {
*margin-right: .3em;
&:last-child {
*margin-left: 0;
}
}
2011-06-27 19:47:12 -04:00
// Sizing shortcuts
2012-01-18 02:52:49 -05:00
// -------------------------
2012-04-01 00:06:16 -04:00
.size(@height, @width) {
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-01-24 19:54:35 -05:00
.placeholder(@color: @placeholderText) {
2011-06-27 19:47:12 -04:00
:-moz-placeholder {
color: @color;
}
::-webkit-input-placeholder {
color: @color;
}
}
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
2012-03-12 00:12:59 -04:00
// -------------------------
2012-03-14 15:00:27 -04:00
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
2012-03-12 00:12:59 -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-01-18 02:52:49 -05:00
// FONTS
// --------------------------------------------------
2011-06-27 19:47:12 -04:00
#font {
2011-11-17 03:37:14 -05:00
#family {
.serif() {
2012-03-15 14:34:50 -04:00
font-family: @serifFontFamily;
2011-11-17 03:37:14 -05:00
}
.sans-serif() {
2012-03-15 14:34:50 -04:00
font-family: @sansFontFamily;
2011-11-17 03:37:14 -05:00
}
.monospace() {
2012-03-15 14:34:50 -04:00
font-family: @monoFontFamily;
2011-11-17 03:37:14 -05:00
}
2011-06-27 19:47:12 -04:00
}
2011-11-17 03:37:14 -05:00
.shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
2011-06-27 19:47:12 -04:00
font-size: @size;
font-weight: @weight;
line-height: @lineHeight;
}
2011-11-17 03:37:14 -05:00
.serif(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
#font > #family > .serif;
#font > .shorthand(@size, @weight, @lineHeight);
2011-06-27 19:47:12 -04:00
}
2011-11-17 03:37:14 -05:00
.sans-serif(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
#font > #family > .sans-serif;
#font > .shorthand(@size, @weight, @lineHeight);
}
.monospace(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
#font > #family > .monospace;
#font > .shorthand(@size, @weight, @lineHeight);
2011-06-27 19:47:12 -04:00
}
}
2012-01-18 02:52:49 -05:00
2012-03-12 00:21:51 -04:00
// FORMS
2012-02-07 03:13:52 -05:00
// --------------------------------------------------
2012-03-12 00:21:51 -04:00
// Block level inputs
.input-block-level {
display: block;
width: 100%;
2012-04-16 18:09:05 -04:00
min-height: 28px; // Make inputs at least the height of their button counterpart
.box-sizing(border-box); // Makes inputs behave like true block-level elements
2012-03-12 00:21:51 -04:00
}
2012-02-07 03:13:52 -05:00
// Mixin for form field states
.formFieldState(@textColor: #555, @borderColor: #ccc, @backgroundColor: #f5f5f5) {
// Set the text color
> label,
.help-block,
.help-inline {
color: @textColor;
}
// Style inputs accordingly
input,
select,
textarea {
color: @textColor;
border-color: @borderColor;
&:focus {
border-color: darken(@borderColor, 10%);
.box-shadow(0 0 6px lighten(@borderColor, 20%));
}
}
// Give a small background color for input-prepend/-append
.input-prepend .add-on,
.input-append .add-on {
color: @textColor;
background-color: @backgroundColor;
border-color: @textColor;
}
}
2012-01-18 02:52:49 -05:00
// CSS3 PROPERTIES
// --------------------------------------------------
2011-06-27 19:47:12 -04:00
// Border Radius
2012-04-01 00:06:16 -04:00
.border-radius(@radius) {
2012-03-25 15:42:47 -04:00
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
2011-06-27 19:47:12 -04:00
}
// Drop shadows
2012-04-01 00:06:16 -04:00
.box-shadow(@shadow) {
2012-03-25 15:42:47 -04:00
-webkit-box-shadow: @shadow;
-moz-box-shadow: @shadow;
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;
-ms-transition: @transition;
-o-transition: @transition;
transition: @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);
-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);
-ms-transform: skew(@x, @y);
-o-transform: skew(@x, @y);
transform: skew(@x, @y);
}
2012-04-01 00:06:16 -04:00
.translate3d(@x, @y, @z) {
2012-02-07 02:48:48 -05:00
-webkit-transform: translate(@x, @y, @z);
-moz-transform: translate(@x, @y, @z);
-ms-transform: translate(@x, @y, @z);
-o-transform: translate(@x, @y, @z);
transform: translate(@x, @y, @z);
}
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;
-ms-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-01-25 23:32:19 -05:00
// Heads up: FF 3.6 and under need "padding" instead of "padding-box"
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-03-25 15:42:47 -04:00
.background-size(@size){
-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;
2012-03-11 17:41:52 -04:00
-ms-box-sizing: @boxmodel;
2012-01-07 18:52:57 -05:00
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;
-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-03-29 07:56:53 -04:00
.content-columns(@columnCount, @columnGap: @gridGutterWidth) {
2011-09-29 04:40:27 -04:00
-webkit-column-count: @columnCount;
-moz-column-count: @columnCount;
2011-08-21 02:25:22 -04:00
column-count: @columnCount;
-webkit-column-gap: @columnGap;
2011-09-29 04:40:27 -04:00
-moz-column-gap: @columnGap;
2011-08-21 02:25:22 -04:00
column-gap: @columnGap;
2011-06-27 19:47:12 -04:00
}
2012-01-18 02:52:49 -05:00
// Opacity
2012-04-01 00:06:16 -04:00
.opacity(@opacity) {
2012-01-25 23:32:19 -05:00
opacity: @opacity / 100;
2012-04-03 06:15:36 -04:00
filter: ~"alpha(opacity=@{opacity})";
2012-01-18 02:52:49 -05:00
}
// BACKGROUNDS
// --------------------------------------------------
2011-06-27 19:47:12 -04:00
// Add an alphatransparency value to any background or border color (via Elyse Holladay)
#translucent {
.background(@color: @white, @alpha: 1) {
background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
2011-09-29 04:40:27 -04:00
}
.border(@color: @white, @alpha: 1) {
border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
2012-01-25 23:32:19 -05:00
.background-clip(padding-box);
2011-09-29 04:40:27 -04:00
}
2011-06-27 19:47:12 -04:00
}
2011-11-17 03:41:26 -05:00
// Gradient Bar Colors for buttons and alerts
2011-08-25 16:31:46 -04:00
.gradientBar(@primaryColor, @secondaryColor) {
2011-11-17 04:28:42 -05:00
#gradient > .vertical(@primaryColor, @secondaryColor);
2011-08-25 16:31:46 -04:00
border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);
}
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;
background-image: -moz-linear-gradient(left, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(left, @startColor, @endColor); // IE10
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+
background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(left, @startColor, @endColor); // Le standard
2011-09-29 04:40:27 -04:00
background-repeat: repeat-x;
2012-03-10 21:03:59 -05:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@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-01-26 13:01:03 -05:00
background-color: mix(@startColor, @endColor, 60%);
2011-08-26 02:31:16 -04:00
background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10
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+
background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(top, @startColor, @endColor); // The standard
2011-09-29 04:40:27 -04:00
background-repeat: repeat-x;
2012-03-10 21:03:59 -05:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@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: -moz-linear-gradient(@deg, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(@deg, @startColor, @endColor); // IE10
background-image: -webkit-linear-gradient(@deg, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(@deg, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(@deg, @startColor, @endColor); // The standard
2011-06-27 19:47:12 -04: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);
2011-09-02 15:46:47 -04:00
background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);
2011-08-22 17:19:39 -04:00
background-image: -ms-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
2011-09-29 04:40:27 -04:00
background-repeat: no-repeat;
2012-03-10 21:03:59 -05:00
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down, gets no color-stop at all for proper fallback
2011-06-27 19:47:12 -04:00
}
2012-01-25 18:04:41 -05: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);
background-image: -ms-radial-gradient(circle, @innerColor, @outerColor);
2012-02-19 15:42:12 -05:00
background-image: -o-radial-gradient(circle, @innerColor, @outerColor);
2011-09-29 04:40:27 -04:00
background-repeat: no-repeat;
}
2012-01-25 18:04:41 -05:00
.striped(@color, @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: -ms-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: -o-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
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
.nav-divider() {
height: 1px;
margin: ((@baseLineHeight / 2) - 1) 1px; // 8px 1px
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid @white;
// IE7 needs a set width since we gave a height. Restricting just
// to IE7 to keep the 1px left/right space in other browsers.
// It is unclear where IE is getting the extra space that we need
// to negative-margin away, but so it goes.
*width: 100%;
*margin: -5px 0 5px;
}
2012-02-20 22:14:26 -05:00
// Button backgrounds
2012-02-20 15:38:49 -05:00
// ------------------
2012-01-27 16:39:27 -05:00
.buttonBackground(@startColor, @endColor) {
// gradientBar will set the background to a pleasing blend of these, to support IE<=9
.gradientBar(@startColor, @endColor);
2012-01-28 16:13:01 -05:00
.reset-filter();
2012-03-25 17:28:24 -04:00
*background-color: @endColor; /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2012-01-27 16:39:27 -05:00
// in these cases the gradient won't cover the background, so we override
2012-01-27 21:44:17 -05:00
&:hover, &:active, &.active, &.disabled, &[disabled] {
2012-01-27 16:39:27 -05:00
background-color: @endColor;
2012-03-25 17:28:24 -04:00
*background-color: darken(@endColor, 5%);
2012-01-27 16:39:27 -05:00
}
// IE 7 + 8 can't handle box-shadow to show active, so we darken a bit ourselves
&:active,
&.active {
background-color: darken(@endColor, 10%) e("\9");
}
}
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.
.navbarVerticalAlign(@elementHeight) {
margin-top: (@navbarHeight - @elementHeight) / 2;
}
// Popover arrows
2012-01-18 02:52:49 -05:00
// -------------------------
2011-11-17 02:58:36 -05:00
// For tipsies and popovers
#popoverArrow {
2012-03-08 20:02:29 -05:00
.top(@arrowWidth: 5px, @color: @black) {
2011-11-17 02:58:36 -05:00
bottom: 0;
left: 50%;
margin-left: -@arrowWidth;
border-left: @arrowWidth solid transparent;
border-right: @arrowWidth solid transparent;
2012-03-08 20:02:29 -05:00
border-top: @arrowWidth solid @color;
2011-11-17 02:58:36 -05:00
}
2012-03-08 20:02:29 -05:00
.left(@arrowWidth: 5px, @color: @black) {
2011-11-17 02:58:36 -05:00
top: 50%;
right: 0;
margin-top: -@arrowWidth;
border-top: @arrowWidth solid transparent;
border-bottom: @arrowWidth solid transparent;
2012-03-08 20:02:29 -05:00
border-left: @arrowWidth solid @color;
2011-11-17 02:58:36 -05:00
}
2012-03-08 20:02:29 -05:00
.bottom(@arrowWidth: 5px, @color: @black) {
2011-11-17 02:58:36 -05:00
top: 0;
left: 50%;
margin-left: -@arrowWidth;
border-left: @arrowWidth solid transparent;
border-right: @arrowWidth solid transparent;
2012-03-08 20:02:29 -05:00
border-bottom: @arrowWidth solid @color;
2011-11-17 02:58:36 -05:00
}
2012-03-08 20:02:29 -05:00
.right(@arrowWidth: 5px, @color: @black) {
2011-11-17 02:58:36 -05:00
top: 50%;
left: 0;
margin-top: -@arrowWidth;
border-top: @arrowWidth solid transparent;
border-bottom: @arrowWidth solid transparent;
2012-03-08 20:02:29 -05:00
border-right: @arrowWidth solid @color;
2011-11-17 02:58:36 -05: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;
2012-02-22 02:16:06 -05:00
.clearfix();
}
2012-03-11 18:15:55 -04:00
// Table columns
2012-02-22 02:16:06 -05:00
.tableColumns(@columnSpan: 1) {
float: none; // undo default grid column styles
width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 16; // 16 is total padding on left and right of table cells
margin-left: 0; // undo default grid column styles
}
2012-03-11 18:15:55 -04:00
// Make a Grid
// Use .makeRow and .makeColumn to assign semantic layouts grid system behavior
.makeRow() {
margin-left: @gridGutterWidth * -1;
.clearfix();
}
2012-03-19 13:58:55 -04:00
.makeColumn(@columns: 1, @offset: 0) {
2012-03-11 18:15:55 -04:00
float: left;
2012-03-19 13:58:55 -04:00
margin-left: (@gridColumnWidth * @offset) + (@gridGutterWidth * (@offset - 1)) + (@gridGutterWidth * 2);
2012-03-11 18:15:55 -04:00
width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1));
}
// The Grid
2012-02-22 02:16:06 -05:00
#grid {
.core (@gridColumnWidth, @gridGutterWidth) {
2012-03-10 15:41:41 -05:00
.spanX (@index) when (@index > 0) {
(~".span@{index}") { .span(@index); }
.spanX(@index - 1);
}
.spanX (0) {}
2012-02-22 02:16:06 -05:00
2012-03-10 15:41:41 -05:00
.offsetX (@index) when (@index > 0) {
(~".offset@{index}") { .offset(@index); }
.offsetX(@index - 1);
2012-02-22 02:16:06 -05:00
}
2012-03-10 15:41:41 -05:00
.offsetX (0) {}
2012-02-22 02:16:06 -05:00
.offset (@columns) {
2012-04-15 19:48:17 -04:00
margin-left: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns + 1));
2012-02-22 02:16:06 -05:00
}
2012-02-27 21:15:59 -05:00
.span (@columns) {
width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1));
}
2012-02-22 02:16:06 -05:00
.row {
margin-left: @gridGutterWidth * -1;
.clearfix();
}
[class*="span"] {
float: left;
margin-left: @gridGutterWidth;
}
2012-02-28 01:34:25 -05:00
// Set the container width, and override it for fixed navbars in media queries
2012-02-22 11:21:29 -05:00
.container,
.navbar-fixed-top .container,
2012-02-27 21:15:59 -05:00
.navbar-fixed-bottom .container { .span(@gridColumns); }
2012-03-04 17:06:30 -05:00
// generate .spanX and .offsetX
2012-03-10 15:41:41 -05:00
.spanX (@gridColumns);
.offsetX (@gridColumns);
2012-02-22 02:16:06 -05:00
}
.fluid (@fluidGridColumnWidth, @fluidGridGutterWidth) {
2012-03-10 15:41:41 -05:00
.spanX (@index) when (@index > 0) {
2012-03-31 03:53:38 -04:00
(~".span@{index}") { .span(@index); }
2012-03-10 15:41:41 -05:00
.spanX(@index - 1);
}
.spanX (0) {}
2012-02-22 02:16:06 -05:00
.span (@columns) {
2012-03-12 01:45:10 -04:00
width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
2012-02-22 02:16:06 -05:00
}
.row-fluid {
width: 100%;
.clearfix();
2012-03-25 19:40:51 -04:00
[class*="span"] {
2012-03-31 03:53:38 -04:00
.input-block-level();
2012-02-22 02:16:06 -05:00
float: left;
margin-left: @fluidGridGutterWidth;
}
2012-03-25 19:40:51 -04:00
[class*="span"]:first-child {
2012-02-22 02:16:06 -05:00
margin-left: 0;
}
2012-02-27 21:15:59 -05:00
2012-03-04 17:06:30 -05:00
// generate .spanX
2012-03-10 15:41:41 -05:00
.spanX (@gridColumns);
2012-02-22 02:16:06 -05:00
}
}
.input(@gridColumnWidth, @gridGutterWidth) {
2012-03-10 15:41:41 -05:00
.spanX (@index) when (@index > 0) {
(~"input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index}") { .span(@index); }
.spanX(@index - 1);
}
.spanX (0) {}
2012-02-22 02:16:06 -05:00
.span(@columns) {
width: ((@gridColumnWidth) * @columns) + (@gridGutterWidth * (@columns - 1)) - 10;
}
input,
textarea,
.uneditable-input {
2012-02-22 11:21:29 -05:00
margin-left: 0; // override margin-left from core grid system
2012-02-22 02:16:06 -05:00
}
2012-03-10 15:41:41 -05:00
// generate .spanX
.spanX (@gridColumns);
2012-02-22 02:16:06 -05:00
}
2012-02-22 02:18:18 -05:00
}