mixins.less 25.7 KB
Newer Older
1
2
3
//
// Mixins
// --------------------------------------------------
4

5

6
7
// Utilities
// -------------------------
8
9

// Clearfix
10
11
12
13
14
15
16
17
18
// 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.
19
.clearfix() {
20
  &:before,
21
  &:after {
22
23
    content: " "; // 1
    display: table; // 2
24
25
  }
  &:after {
26
    clear: both;
27
  }
28
29
}

Chris Rebert's avatar
Chris Rebert committed
30
// WebKit-style focus
Mark Otto's avatar
Mark Otto committed
31
32
.tab-focus() {
  // Default
33
  outline: thin dotted;
34
  // WebKit
Mark Otto's avatar
Mark Otto committed
35
36
37
38
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

39
// Center-align a block level element
40
.center-block() {
41
  display: block;
42
43
  margin-left: auto;
  margin-right: auto;
44
45
46
}

// Sizing shortcuts
47
.size(@width; @height) {
48
  width: @width;
49
  height: @height;
50
}
51
.square(@size) {
52
  .size(@size; @size);
53
54
}

55
// Placeholder text
Mark Otto's avatar
Mark Otto committed
56
.placeholder(@color: @input-color-placeholder) {
57
  &:-moz-placeholder            { color: @color; } // Firefox 4-18
58
59
  &::-moz-placeholder           { color: @color;   // Firefox 19+
                                  opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
60
61
  &:-ms-input-placeholder       { color: @color; } // Internet Explorer 10+
  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
62
63
}

Mark Otto's avatar
Mark Otto committed
64
65
66
67
68
69
70
71
// Text overflow
// Requires inline-block or block for proper styling
.text-overflow() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

72
// CSS image replacement
73
74
75
//
// 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
76
77
// 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.
78
//
79
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
80

81
82
83
84
85
86
87
88
89
// 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
90
.text-hide() {
91
  .hide-text();
92
}
93

94

95

96
97
98
// CSS3 PROPERTIES
// --------------------------------------------------

99
// Single side border-radius
100
.border-top-radius(@radius) {
101
102
  border-top-right-radius: @radius;
   border-top-left-radius: @radius;
103
104
}
.border-right-radius(@radius) {
105
106
  border-bottom-right-radius: @radius;
     border-top-right-radius: @radius;
Mark Otto's avatar
Mark Otto committed
107
108
}
.border-bottom-radius(@radius) {
109
110
  border-bottom-right-radius: @radius;
   border-bottom-left-radius: @radius;
Mark Otto's avatar
Mark Otto committed
111
112
}
.border-left-radius(@radius) {
113
114
  border-bottom-left-radius: @radius;
     border-top-left-radius: @radius;
115
116
}

117
// Drop shadows
118
119
120
121
//
// 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.
Mark Otto's avatar
Mark Otto committed
122
.box-shadow(@shadow) {
123
  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
124
          box-shadow: @shadow;
125
126
127
}

// Transitions
Mark Otto's avatar
Mark Otto committed
128
129
130
.transition(@transition) {
  -webkit-transition: @transition;
          transition: @transition;
131
}
132
133
134
135
.transition-property(@transition-property) {
  -webkit-transition-property: @transition-property;
          transition-property: @transition-property;
}
Tunghsiao Liu's avatar
Tunghsiao Liu committed
136
137
138
139
.transition-delay(@transition-delay) {
  -webkit-transition-delay: @transition-delay;
          transition-delay: @transition-delay;
}
Tunghsiao Liu's avatar
Tunghsiao Liu committed
140
141
142
143
.transition-duration(@transition-duration) {
  -webkit-transition-duration: @transition-duration;
          transition-duration: @transition-duration;
}
144
145
146
147
148
149
.transition-transform(@transition) {
  -webkit-transition: -webkit-transform @transition;
     -moz-transition: -moz-transform @transition;
       -o-transition: -o-transform @transition;
          transition: transform @transition;
}
150

Mark Otto's avatar
Mark Otto committed
151
// Transformations
152
.rotate(@degrees) {
153
  -webkit-transform: rotate(@degrees);
154
      -ms-transform: rotate(@degrees); // IE9 only
155
156
          transform: rotate(@degrees);
}
157
158
.scale(@ratio; @ratio-y...) {
  -webkit-transform: scale(@ratio, @ratio-y);
159
      -ms-transform: scale(@ratio, @ratio-y); // IE9 only
160
          transform: scale(@ratio, @ratio-y);
161
}
162
.translate(@x; @y) {
Mark Otto's avatar
Mark Otto committed
163
  -webkit-transform: translate(@x, @y);
164
      -ms-transform: translate(@x, @y); // IE9 only
Mark Otto's avatar
Mark Otto committed
165
166
          transform: translate(@x, @y);
}
167
.skew(@x; @y) {
Mark Otto's avatar
Mark Otto committed
168
  -webkit-transform: skew(@x, @y);
169
      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
Mark Otto's avatar
Mark Otto committed
170
171
          transform: skew(@x, @y);
}
172
.translate3d(@x; @y; @z) {
173
174
  -webkit-transform: translate3d(@x, @y, @z);
          transform: translate3d(@x, @y, @z);
175
}
176

177
178
.rotateX(@degrees) {
  -webkit-transform: rotateX(@degrees);
179
      -ms-transform: rotateX(@degrees); // IE9 only
180
181
182
183
          transform: rotateX(@degrees);
}
.rotateY(@degrees) {
  -webkit-transform: rotateY(@degrees);
184
      -ms-transform: rotateY(@degrees); // IE9 only
185
186
187
188
189
190
191
192
193
194
195
196
          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;
}
Zlatan Vasović's avatar
Zlatan Vasović committed
197
.transform-origin(@origin) {
198
199
  -webkit-transform-origin: @origin;
     -moz-transform-origin: @origin;
200
      -ms-transform-origin: @origin; // IE9 only
201
202
203
          transform-origin: @origin;
}

Zlatan Vasović's avatar
Zlatan Vasović committed
204
205
206
207
208
// Animations
.animation(@animation) {
  -webkit-animation: @animation;
          animation: @animation;
}
Zlatan Vasović's avatar
Zlatan Vasović committed
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
.animation-name(@name) {
  -webkit-animation-name: @name;
          animation-name: @name;
}
.animation-duration(@duration) {
  -webkit-animation-duration: @duration;
          animation-duration: @duration;
}
.animation-timing-function(@timing-function) {
  -webkit-animation-timing-function: @timing-function;
          animation-timing-function: @timing-function;
}
.animation-delay(@delay) {
  -webkit-animation-delay: @delay;
          animation-delay: @delay;
}
.animation-iteration-count(@iteration-count) {
  -webkit-animation-iteration-count: @iteration-count;
          animation-iteration-count: @iteration-count;
}
.animation-direction(@direction) {
  -webkit-animation-direction: @direction;
          animation-direction: @direction;
}
233

234
235
// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
Chris Rebert's avatar
Chris Rebert committed
236
// Default value is `visible`, but can be changed to `hidden`
237
.backface-visibility(@visibility){
238
239
240
  -webkit-backface-visibility: @visibility;
     -moz-backface-visibility: @visibility;
          backface-visibility: @visibility;
241
242
}

243
244
245
246
247
248
249
// Box sizing
.box-sizing(@boxmodel) {
  -webkit-box-sizing: @boxmodel;
     -moz-box-sizing: @boxmodel;
          box-sizing: @boxmodel;
}

250
251
252
253
254
// User select
// For selecting text on the page
.user-select(@select) {
  -webkit-user-select: @select;
     -moz-user-select: @select;
255
      -ms-user-select: @select; // IE10+
256
257
258
259
       -o-user-select: @select;
          user-select: @select;
}

260
// Resize anything
261
.resizable(@direction) {
262
263
264
265
  resize: @direction; // Options: horizontal, vertical, both
  overflow: auto; // Safari fix
}

266
// CSS3 Content Columns
267
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
268
269
270
271
272
273
  -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;
274
275
}

Synchro's avatar
Synchro committed
276
277
// Optional hyphenation
.hyphens(@mode: auto) {
Mark Otto's avatar
Mark Otto committed
278
  word-wrap: break-word;
Synchro's avatar
Synchro committed
279
280
  -webkit-hyphens: @mode;
     -moz-hyphens: @mode;
281
      -ms-hyphens: @mode; // IE10+
Synchro's avatar
Synchro committed
282
       -o-hyphens: @mode;
Synchro's avatar
Synchro committed
283
284
285
          hyphens: @mode;
}

286
// Opacity
287
.opacity(@opacity) {
288
289
  opacity: @opacity;
  // IE8 filter
290
  @opacity-ie: (@opacity * 100);
291
  filter: ~"alpha(opacity=@{opacity-ie})";
292
293
294
295
}



Mark Otto's avatar
Mark Otto committed
296
// GRADIENTS
297
298
// --------------------------------------------------

299
#gradient {
Mark Otto's avatar
Mark Otto committed
300
301
302
303
304

  // 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.
305
  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
306
307
    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+
308
    background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
309
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
310
  }
Mark Otto's avatar
Mark Otto committed
311
312
313
314
315

  // 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.
316
  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
317
318
    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+
319
    background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
320
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
321
  }
Mark Otto's avatar
Mark Otto committed
322

323
  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
324
    background-repeat: repeat-x;
325
326
    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+
327
  }
328
  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
Mark Otto's avatar
Mark Otto committed
329
330
    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);
Francisco arenas's avatar
Francisco arenas committed
331
    background-repeat: no-repeat;
Mark Otto's avatar
Mark Otto committed
332
    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
Francisco arenas's avatar
Francisco arenas committed
333
  }
334
  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
Mark Otto's avatar
Mark Otto committed
335
336
    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);
337
    background-repeat: no-repeat;
Mark Otto's avatar
Mark Otto committed
338
    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
339
  }
340
  .radial(@inner-color: #555; @outer-color: #333) {
Mark Otto's avatar
Mark Otto committed
341
342
    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
    background-image: radial-gradient(circle, @inner-color, @outer-color);
343
344
    background-repeat: no-repeat;
  }
345
346
347
  .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);
Piotrek Okoński's avatar
Piotrek Okoński committed
348
  }
349
}
Mark Otto's avatar
Mark Otto committed
350

351
// Reset filters for IE
Mark Otto's avatar
Mark Otto committed
352
//
Mike Pagé's avatar
Mike Pagé committed
353
// When you need to remove a gradient background, do not forget to use this to reset
Mark Otto's avatar
Mark Otto committed
354
// the IE filter for IE9 and below.
355
.reset-filter() {
356
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
357
}
358

359

Mark Otto's avatar
Mark Otto committed
360

361
362
// Retina images
//
Mark Otto's avatar
Mark Otto committed
363
// Short retina mixin for setting background-image and -size
364

365
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
Mark Otto's avatar
Mark Otto committed
366
367
368
369
370
371
372
373
374
375
376
377
  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;
  }
Danny Keane's avatar
Danny Keane committed
378
379
}

380

381
382
383
384
// Responsive image
//
// Keep images from scaling beyond the width of their parents.

Zlatan Vasović's avatar
Zlatan Vasović committed
385
.img-responsive(@display: block) {
386
387
388
389
390
391
  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
}


392
393
394
// COMPONENT MIXINS
// --------------------------------------------------

395
// Horizontal dividers
396
397
// -------------------------
// Dividers (basically an hr) within dropdowns and nav lists
Mark Otto's avatar
Mark Otto committed
398
399
.nav-divider(@color: #e5e5e5) {
  height: 1px;
400
  margin: ((@line-height-computed / 2) - 1) 0;
Jacob Thornton's avatar
Jacob Thornton committed
401
  overflow: hidden;
Mark Otto's avatar
Mark Otto committed
402
  background-color: @color;
403
404
}

405
406
// Panels
// -------------------------
407
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
408
  border-color: @border;
Mark Otto's avatar
spacing    
Mark Otto committed
409

410
  & > .panel-heading {
411
412
413
    color: @heading-text-color;
    background-color: @heading-bg-color;
    border-color: @heading-border;
Mark Otto's avatar
spacing    
Mark Otto committed
414

Mark Otto's avatar
Mark Otto committed
415
416
417
418
    + .panel-collapse .panel-body {
      border-top-color: @border;
    }
  }
419
  & > .panel-footer {
Mark Otto's avatar
Mark Otto committed
420
421
422
    + .panel-collapse .panel-body {
      border-bottom-color: @border;
    }
423
424
425
  }
}

Chris Rebert's avatar
Chris Rebert committed
426
427
// Alerts
// -------------------------
428
.alert-variant(@background; @border; @text-color) {
Chris Rebert's avatar
Chris Rebert committed
429
430
431
  background-color: @background;
  border-color: @border;
  color: @text-color;
Mark Otto's avatar
spacing    
Mark Otto committed
432

Chris Rebert's avatar
Chris Rebert committed
433
434
435
436
437
438
439
440
  hr {
    border-top-color: darken(@border, 5%);
  }
  .alert-link {
    color: darken(@text-color, 10%);
  }
}

ggam's avatar
ggam committed
441
442
// Tables
// -------------------------
Zlatan Vasović's avatar
Zlatan Vasović committed
443
.table-row-variant(@state; @background) {
ggam's avatar
ggam committed
444
445
  // Exact selectors below required to override `.table-striped` and prevent
  // inheritance to nested tables.
446
447
448
449
450
451
452
453
  .table > thead > tr,
  .table > tbody > tr,
  .table > tfoot > tr {
    > td.@{state},
    > th.@{state},
    &.@{state} > td,
    &.@{state} > th {
      background-color: @background;
ggam's avatar
ggam committed
454
455
    }
  }
456

ggam's avatar
ggam committed
457
458
  // Hover states for `.table-hover`
  // Note: this is not available for cells or rows within `thead` or `tfoot`.
459
460
461
462
463
  .table-hover > tbody > tr {
    > td.@{state}:hover,
    > th.@{state}:hover,
    &.@{state}:hover > td,
    &.@{state}:hover > th {
ggam's avatar
ggam committed
464
465
466
467
468
      background-color: darken(@background, 5%);
    }
  }
}

469
470
// List Groups
// -------------------------
Mark Otto's avatar
Mark Otto committed
471
472
473
.list-group-item-variant(@state; @background; @color) {
  .list-group-item-@{state} {
    color: @color;
474
    background-color: @background;
Mark Otto's avatar
Mark Otto committed
475

476
    a& {
Mark Otto's avatar
Mark Otto committed
477
      color: @color;
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492

      .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;
      }
Mark Otto's avatar
Mark Otto committed
493
    }
494
495
496
  }
}

497
// Button variants
498
499
500
// -------------------------
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons
501
.button-variant(@color; @background; @border) {
502
  color: @color;
503
504
  background-color: @background;
  border-color: @border;
505

Mark Otto's avatar
Mark Otto committed
506
  &:hover,
507
  &:focus,
508
  &:active,
509
510
  &.active,
  .open .dropdown-toggle& {
511
    color: @color;
512
513
    background-color: darken(@background, 8%);
        border-color: darken(@border, 12%);
Mark Otto's avatar
Mark Otto committed
514
  }
515
516
517
518
519
  &:active,
  &.active,
  .open .dropdown-toggle& {
    background-image: none;
  }
520
  &.disabled,
521
  &[disabled],
522
  fieldset[disabled] & {
523
    &,
524
525
    &:hover,
    &:focus,
526
527
    &:active,
    &.active {
528
      background-color: @background;
Zlatan Vasović's avatar
Zlatan Vasović committed
529
          border-color: @border;
530
    }
531
  }
532
533
534

  .badge {
    color: @background;
535
    background-color: @color;
536
  }
537
538
}

ggam's avatar
ggam committed
539
540
541
542
543
544
545
546
547
// 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;
}

ggam's avatar
ggam committed
548
549
// Pagination
// -------------------------
Guillermo González de Agüero's avatar
Guillermo González de Agüero committed
550
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
ggam's avatar
ggam committed
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
  > 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);
      }
    }
  }
}

Chris Rebert's avatar
Chris Rebert committed
572
573
574
575
576
577
578
579
580
581
582
583
// Labels
// -------------------------
.label-variant(@color) {
  background-color: @color;
  &[href] {
    &:hover,
    &:focus {
      background-color: darken(@color, 10%);
    }
  }
}

584
585
586
587
588
589
590
591
592
// Contextual backgrounds
// -------------------------
.bg-variant(@color) {
  background-color: @color;
  a&:hover {
    background-color: darken(@color, 10%);
  }
}

593
594
595
596
// Typography
// -------------------------
.text-emphasis-variant(@color) {
  color: @color;
597
  a&:hover {
598
599
600
601
    color: darken(@color, 10%);
  }
}

602
603
604
// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
605
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
Mark Otto's avatar
Mark Otto committed
606
.navbar-vertical-align(@element-height) {
607
608
  margin-top: ((@navbar-height - @element-height) / 2);
  margin-bottom: ((@navbar-height - @element-height) / 2);
609
610
}

611
612
613
614
615
// Progress bars
// -------------------------
.progress-bar-variant(@color) {
  background-color: @color;
  .progress-striped & {
616
    #gradient > .striped();
617
618
619
  }
}

Mark Otto's avatar
Mark Otto committed
620
621
622
623
624
// Responsive utilities
// -------------------------
// More easily include all the states for responsive-utilities.less.
.responsive-visibility() {
  display: block !important;
625
626
  table&  { display: table; }
  tr&     { display: table-row !important; }
Mark Otto's avatar
Mark Otto committed
627
  th&,
628
  td&     { display: table-cell !important; }
Mark Otto's avatar
Mark Otto committed
629
630
}

631
.responsive-invisibility() {
XhmikosR's avatar
XhmikosR committed
632
    &,
633
  tr&,
634
635
636
637
  th&,
  td& { display: none !important; }
}

638

639
640
641
// Grid System
// -----------

642
// Centered container element
643
644
.container-fixed() {
  margin-right: auto;
Jacob Thornton's avatar
Jacob Thornton committed
645
  margin-left: auto;
646
647
  padding-left:  (@grid-gutter-width / 2);
  padding-right: (@grid-gutter-width / 2);
648
  &:extend(.clearfix all);
649
650
}

651
// Creates a wrapper for a series of columns
652
.make-row(@gutter: @grid-gutter-width) {
653
654
  margin-left:  (@gutter / -2);
  margin-right: (@gutter / -2);
655
  &:extend(.clearfix all);
656
}
Mark Otto's avatar
Mark Otto committed
657

658
659
// Generate the extra small columns
.make-xs-column(@columns; @gutter: @grid-gutter-width) {
660
661
  position: relative;
  float: left;
662
  width: percentage((@columns / @grid-columns));
663
664
665
666
  min-height: 1px;
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);
}
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
.make-xs-column-offset(@columns) {
  @media (min-width: @screen-xs-min) {
    margin-left: percentage((@columns / @grid-columns));
  }
}
.make-xs-column-push(@columns) {
  @media (min-width: @screen-xs-min) {
    left: percentage((@columns / @grid-columns));
  }
}
.make-xs-column-pull(@columns) {
  @media (min-width: @screen-xs-min) {
    right: percentage((@columns / @grid-columns));
  }
}
682

Mark Otto's avatar
Mark Otto committed
683

684
// Generate the small columns
685
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
686
  position: relative;
687
  min-height: 1px;
688
689
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);
690

691
  @media (min-width: @screen-sm-min) {
692
    float: left;
693
694
    width: percentage((@columns / @grid-columns));
  }
695
}
696
.make-sm-column-offset(@columns) {
697
  @media (min-width: @screen-sm-min) {
698
699
700
    margin-left: percentage((@columns / @grid-columns));
  }
}
701
.make-sm-column-push(@columns) {
702
  @media (min-width: @screen-sm-min) {
703
704
705
    left: percentage((@columns / @grid-columns));
  }
}
706
.make-sm-column-pull(@columns) {
707
  @media (min-width: @screen-sm-min) {
708
709
    right: percentage((@columns / @grid-columns));
  }
710
}
711

Mark Otto's avatar
Mark Otto committed
712

713
714
// Generate the medium columns
.make-md-column(@columns; @gutter: @grid-gutter-width) {
Bass Jobsen's avatar
Bass Jobsen committed
715
716
  position: relative;
  min-height: 1px;
717
718
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);
Mark Otto's avatar
Mark Otto committed
719

720
  @media (min-width: @screen-md-min) {
721
    float: left;
Bass Jobsen's avatar
Bass Jobsen committed
722
723
724
    width: percentage((@columns / @grid-columns));
  }
}
725
.make-md-column-offset(@columns) {
726
  @media (min-width: @screen-md-min) {
727
728
729
    margin-left: percentage((@columns / @grid-columns));
  }
}
730
.make-md-column-push(@columns) {
731
  @media (min-width: @screen-md-min) {
732
733
734
    left: percentage((@columns / @grid-columns));
  }
}
735
.make-md-column-pull(@columns) {
736
  @media (min-width: @screen-md-min) {
737
738
739
740
    right: percentage((@columns / @grid-columns));
  }
}

Mark Otto's avatar
Mark Otto committed
741

742
743
744
745
746
747
748
// 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);

749
  @media (min-width: @screen-lg-min) {
750
751
752
753
754
    float: left;
    width: percentage((@columns / @grid-columns));
  }
}
.make-lg-column-offset(@columns) {
755
  @media (min-width: @screen-lg-min) {
756
757
758
759
    margin-left: percentage((@columns / @grid-columns));
  }
}
.make-lg-column-push(@columns) {
760
  @media (min-width: @screen-lg-min) {
761
762
763
764
    left: percentage((@columns / @grid-columns));
  }
}
.make-lg-column-pull(@columns) {
765
  @media (min-width: @screen-lg-min) {
766
767
768
769
    right: percentage((@columns / @grid-columns));
  }
}

Mark Otto's avatar
Mark Otto committed
770

771
772
773
774
775
776
777
778
779
// 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}";
780
    .col((@index + 1), @item);
781
782
783
  }
  .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}";
784
    .col((@index + 1), ~"@{list}, @{item}");
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
  }
  .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}";
802
    .col((@index + 1), @item);
803
  }
804
  .col(@index, @list) when (@index =< @grid-columns) { // general
805
    @item: ~".col-@{class}-@{index}";
806
    .col((@index + 1), ~"@{list}, @{item}");
807
  }
808
  .col(@index, @list) when (@index > @grid-columns) { // terminal
809
810
811
812
813
814
815
    @{list} {
      float: left;
    }
  }
  .col(1); // kickstart it
}

816
.calc-grid(@index, @class, @type) when (@type = width) and (@index > 0) {
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
  .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
838
.make-grid(@index, @class, @type) when (@index >= 0) {
839
840
  .calc-grid(@index, @class, @type);
  // next iteration
841
  .make-grid((@index - 1), @class, @type);
842
843
844
}


Mark Otto's avatar
Mark Otto committed
845
846
847
848
849
// Form validation states
//
// Used in forms.less to generate the form validation CSS for warnings, errors,
// and successes.

850
.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
Mark Otto's avatar
Mark Otto committed
851
  // Color the label and help text
852
  .help-block,
853
854
855
856
857
  .control-label,
  .radio,
  .checkbox,
  .radio-inline,
  .checkbox-inline  {
Mark Otto's avatar
Mark Otto committed
858
859
860
    color: @text-color;
  }
  // Set the border and box shadow on specific inputs to match
Mark Otto's avatar
Mark Otto committed
861
  .form-control {
Mark Otto's avatar
Mark Otto committed
862
863
864
865
866
867
868
869
    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);
    }
  }
870
871
872
873
874
  // Set validation states also for addons
  .input-group-addon {
    color: @text-color;
    border-color: @border-color;
    background-color: @background-color;
Mark Otto's avatar
Mark Otto committed
875
  }
876
  // Optional feedback icon
877
878
879
  .form-control-feedback {
    color: @text-color;
  }
Mark Otto's avatar
Mark Otto committed
880
}
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902

// 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}");
  }
}
ggam's avatar
ggam committed
903
904
905
906
907
908
909
910
911
912
913
914
915

// 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;
916

ggam's avatar
ggam committed
917
918
919
920
  select& {
    height: @input-height;
    line-height: @input-height;
  }
921

922
923
  textarea&,
  select[multiple]& {
ggam's avatar
ggam committed
924
925
926
    height: auto;
  }
}