static/less/mixins.less
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:30:44 +0100
changeset 53 3416f82943ea
permissions -rwxr-xr-x
less initial added
info@53
     1
//
info@53
     2
// Mixins
info@53
     3
// --------------------------------------------------
info@53
     4
info@53
     5
info@53
     6
// Utilities
info@53
     7
// -------------------------
info@53
     8
info@53
     9
// Clearfix
info@53
    10
// Source: http://nicolasgallagher.com/micro-clearfix-hack/
info@53
    11
//
info@53
    12
// For modern browsers
info@53
    13
// 1. The space content is one way to avoid an Opera bug when the
info@53
    14
//    contenteditable attribute is included anywhere else in the document.
info@53
    15
//    Otherwise it causes space to appear at the top and bottom of elements
info@53
    16
//    that are clearfixed.
info@53
    17
// 2. The use of `table` rather than `block` is only necessary if using
info@53
    18
//    `:before` to contain the top-margins of child elements.
info@53
    19
.clearfix() {
info@53
    20
  &:before,
info@53
    21
  &:after {
info@53
    22
    content: " "; // 1
info@53
    23
    display: table; // 2
info@53
    24
  }
info@53
    25
  &:after {
info@53
    26
    clear: both;
info@53
    27
  }
info@53
    28
}
info@53
    29
info@53
    30
// WebKit-style focus
info@53
    31
.tab-focus() {
info@53
    32
  // Default
info@53
    33
  outline: thin dotted;
info@53
    34
  // WebKit
info@53
    35
  outline: 5px auto -webkit-focus-ring-color;
info@53
    36
  outline-offset: -2px;
info@53
    37
}
info@53
    38
info@53
    39
// Center-align a block level element
info@53
    40
.center-block() {
info@53
    41
  display: block;
info@53
    42
  margin-left: auto;
info@53
    43
  margin-right: auto;
info@53
    44
}
info@53
    45
info@53
    46
// Sizing shortcuts
info@53
    47
.size(@width; @height) {
info@53
    48
  width: @width;
info@53
    49
  height: @height;
info@53
    50
}
info@53
    51
.square(@size) {
info@53
    52
  .size(@size; @size);
info@53
    53
}
info@53
    54
info@53
    55
// Placeholder text
info@53
    56
.placeholder(@color: @input-color-placeholder) {
info@53
    57
  &:-moz-placeholder            { color: @color; } // Firefox 4-18
info@53
    58
  &::-moz-placeholder           { color: @color;   // Firefox 19+
info@53
    59
                                  opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
info@53
    60
  &:-ms-input-placeholder       { color: @color; } // Internet Explorer 10+
info@53
    61
  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
info@53
    62
}
info@53
    63
info@53
    64
// Text overflow
info@53
    65
// Requires inline-block or block for proper styling
info@53
    66
.text-overflow() {
info@53
    67
  overflow: hidden;
info@53
    68
  text-overflow: ellipsis;
info@53
    69
  white-space: nowrap;
info@53
    70
}
info@53
    71
info@53
    72
// CSS image replacement
info@53
    73
//
info@53
    74
// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for
info@53
    75
// mixins being reused as classes with the same name, this doesn't hold up. As
info@53
    76
// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note
info@53
    77
// that we cannot chain the mixins together in Less, so they are repeated.
info@53
    78
//
info@53
    79
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
info@53
    80
info@53
    81
// Deprecated as of v3.0.1 (will be removed in v4)
info@53
    82
.hide-text() {
info@53
    83
  font: ~"0/0" a;
info@53
    84
  color: transparent;
info@53
    85
  text-shadow: none;
info@53
    86
  background-color: transparent;
info@53
    87
  border: 0;
info@53
    88
}
info@53
    89
// New mixin to use as of v3.0.1
info@53
    90
.text-hide() {
info@53
    91
  .hide-text();
info@53
    92
}
info@53
    93
info@53
    94
info@53
    95
info@53
    96
// CSS3 PROPERTIES
info@53
    97
// --------------------------------------------------
info@53
    98
info@53
    99
// Single side border-radius
info@53
   100
.border-top-radius(@radius) {
info@53
   101
  border-top-right-radius: @radius;
info@53
   102
   border-top-left-radius: @radius;
info@53
   103
}
info@53
   104
.border-right-radius(@radius) {
info@53
   105
  border-bottom-right-radius: @radius;
info@53
   106
     border-top-right-radius: @radius;
info@53
   107
}
info@53
   108
.border-bottom-radius(@radius) {
info@53
   109
  border-bottom-right-radius: @radius;
info@53
   110
   border-bottom-left-radius: @radius;
info@53
   111
}
info@53
   112
.border-left-radius(@radius) {
info@53
   113
  border-bottom-left-radius: @radius;
info@53
   114
     border-top-left-radius: @radius;
info@53
   115
}
info@53
   116
info@53
   117
// Drop shadows
info@53
   118
.box-shadow(@shadow) {
info@53
   119
  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
info@53
   120
          box-shadow: @shadow;
info@53
   121
}
info@53
   122
info@53
   123
// Transitions
info@53
   124
.transition(@transition) {
info@53
   125
  -webkit-transition: @transition;
info@53
   126
          transition: @transition;
info@53
   127
}
info@53
   128
.transition-property(@transition-property) {
info@53
   129
  -webkit-transition-property: @transition-property;
info@53
   130
          transition-property: @transition-property;
info@53
   131
}
info@53
   132
.transition-delay(@transition-delay) {
info@53
   133
  -webkit-transition-delay: @transition-delay;
info@53
   134
          transition-delay: @transition-delay;
info@53
   135
}
info@53
   136
.transition-duration(@transition-duration) {
info@53
   137
  -webkit-transition-duration: @transition-duration;
info@53
   138
          transition-duration: @transition-duration;
info@53
   139
}
info@53
   140
.transition-transform(@transition) {
info@53
   141
  -webkit-transition: -webkit-transform @transition;
info@53
   142
     -moz-transition: -moz-transform @transition;
info@53
   143
       -o-transition: -o-transform @transition;
info@53
   144
          transition: transform @transition;
info@53
   145
}
info@53
   146
info@53
   147
// Transformations
info@53
   148
.rotate(@degrees) {
info@53
   149
  -webkit-transform: rotate(@degrees);
info@53
   150
      -ms-transform: rotate(@degrees); // IE9+
info@53
   151
          transform: rotate(@degrees);
info@53
   152
}
info@53
   153
.scale(@ratio) {
info@53
   154
  -webkit-transform: scale(@ratio);
info@53
   155
      -ms-transform: scale(@ratio); // IE9+
info@53
   156
          transform: scale(@ratio);
info@53
   157
}
info@53
   158
.translate(@x; @y) {
info@53
   159
  -webkit-transform: translate(@x, @y);
info@53
   160
      -ms-transform: translate(@x, @y); // IE9+
info@53
   161
          transform: translate(@x, @y);
info@53
   162
}
info@53
   163
.skew(@x; @y) {
info@53
   164
  -webkit-transform: skew(@x, @y);
info@53
   165
      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
info@53
   166
          transform: skew(@x, @y);
info@53
   167
}
info@53
   168
.translate3d(@x; @y; @z) {
info@53
   169
  -webkit-transform: translate3d(@x, @y, @z);
info@53
   170
          transform: translate3d(@x, @y, @z);
info@53
   171
}
info@53
   172
info@53
   173
.rotateX(@degrees) {
info@53
   174
  -webkit-transform: rotateX(@degrees);
info@53
   175
      -ms-transform: rotateX(@degrees); // IE9+
info@53
   176
          transform: rotateX(@degrees);
info@53
   177
}
info@53
   178
.rotateY(@degrees) {
info@53
   179
  -webkit-transform: rotateY(@degrees);
info@53
   180
      -ms-transform: rotateY(@degrees); // IE9+
info@53
   181
          transform: rotateY(@degrees);
info@53
   182
}
info@53
   183
.perspective(@perspective) {
info@53
   184
  -webkit-perspective: @perspective;
info@53
   185
     -moz-perspective: @perspective;
info@53
   186
          perspective: @perspective;
info@53
   187
}
info@53
   188
.perspective-origin(@perspective) {
info@53
   189
  -webkit-perspective-origin: @perspective;
info@53
   190
     -moz-perspective-origin: @perspective;
info@53
   191
          perspective-origin: @perspective;
info@53
   192
}
info@53
   193
.transform-origin(@origin) {
info@53
   194
  -webkit-transform-origin: @origin;
info@53
   195
     -moz-transform-origin: @origin;
info@53
   196
          transform-origin: @origin;
info@53
   197
}
info@53
   198
info@53
   199
// Animations
info@53
   200
.animation(@animation) {
info@53
   201
  -webkit-animation: @animation;
info@53
   202
          animation: @animation;
info@53
   203
}
info@53
   204
info@53
   205
// Backface visibility
info@53
   206
// Prevent browsers from flickering when using CSS 3D transforms.
info@53
   207
// Default value is `visible`, but can be changed to `hidden`
info@53
   208
.backface-visibility(@visibility){
info@53
   209
  -webkit-backface-visibility: @visibility;
info@53
   210
     -moz-backface-visibility: @visibility;
info@53
   211
          backface-visibility: @visibility;
info@53
   212
}
info@53
   213
info@53
   214
// Box sizing
info@53
   215
.box-sizing(@boxmodel) {
info@53
   216
  -webkit-box-sizing: @boxmodel;
info@53
   217
     -moz-box-sizing: @boxmodel;
info@53
   218
          box-sizing: @boxmodel;
info@53
   219
}
info@53
   220
info@53
   221
// User select
info@53
   222
// For selecting text on the page
info@53
   223
.user-select(@select) {
info@53
   224
  -webkit-user-select: @select;
info@53
   225
     -moz-user-select: @select;
info@53
   226
      -ms-user-select: @select; // IE10+
info@53
   227
       -o-user-select: @select;
info@53
   228
          user-select: @select;
info@53
   229
}
info@53
   230
info@53
   231
// Resize anything
info@53
   232
.resizable(@direction) {
info@53
   233
  resize: @direction; // Options: horizontal, vertical, both
info@53
   234
  overflow: auto; // Safari fix
info@53
   235
}
info@53
   236
info@53
   237
// CSS3 Content Columns
info@53
   238
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
info@53
   239
  -webkit-column-count: @column-count;
info@53
   240
     -moz-column-count: @column-count;
info@53
   241
          column-count: @column-count;
info@53
   242
  -webkit-column-gap: @column-gap;
info@53
   243
     -moz-column-gap: @column-gap;
info@53
   244
          column-gap: @column-gap;
info@53
   245
}
info@53
   246
info@53
   247
// Optional hyphenation
info@53
   248
.hyphens(@mode: auto) {
info@53
   249
  word-wrap: break-word;
info@53
   250
  -webkit-hyphens: @mode;
info@53
   251
     -moz-hyphens: @mode;
info@53
   252
      -ms-hyphens: @mode; // IE10+
info@53
   253
       -o-hyphens: @mode;
info@53
   254
          hyphens: @mode;
info@53
   255
}
info@53
   256
info@53
   257
// Opacity
info@53
   258
.opacity(@opacity) {
info@53
   259
  opacity: @opacity;
info@53
   260
  // IE8 filter
info@53
   261
  @opacity-ie: (@opacity * 100);
info@53
   262
  filter: ~"alpha(opacity=@{opacity-ie})";
info@53
   263
}
info@53
   264
info@53
   265
info@53
   266
info@53
   267
// GRADIENTS
info@53
   268
// --------------------------------------------------
info@53
   269
info@53
   270
#gradient {
info@53
   271
info@53
   272
  // Horizontal gradient, from left to right
info@53
   273
  //
info@53
   274
  // Creates two color stops, start and end, by specifying a color and position for each color stop.
info@53
   275
  // Color stops are not available in IE9 and below.
info@53
   276
  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
info@53
   277
    background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+
info@53
   278
    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+
info@53
   279
    background-repeat: repeat-x;
info@53
   280
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
info@53
   281
  }
info@53
   282
info@53
   283
  // Vertical gradient, from top to bottom
info@53
   284
  //
info@53
   285
  // Creates two color stops, start and end, by specifying a color and position for each color stop.
info@53
   286
  // Color stops are not available in IE9 and below.
info@53
   287
  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
info@53
   288
    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
info@53
   289
    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+
info@53
   290
    background-repeat: repeat-x;
info@53
   291
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
info@53
   292
  }
info@53
   293
info@53
   294
  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
info@53
   295
    background-repeat: repeat-x;
info@53
   296
    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
info@53
   297
    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
info@53
   298
  }
info@53
   299
  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
info@53
   300
    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
info@53
   301
    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
info@53
   302
    background-repeat: no-repeat;
info@53
   303
    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
info@53
   304
  }
info@53
   305
  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
info@53
   306
    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
info@53
   307
    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
info@53
   308
    background-repeat: no-repeat;
info@53
   309
    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
info@53
   310
  }
info@53
   311
  .radial(@inner-color: #555; @outer-color: #333) {
info@53
   312
    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
info@53
   313
    background-image: radial-gradient(circle, @inner-color, @outer-color);
info@53
   314
    background-repeat: no-repeat;
info@53
   315
  }
info@53
   316
  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
info@53
   317
    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
info@53
   318
    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
info@53
   319
  }
info@53
   320
}
info@53
   321
info@53
   322
// Reset filters for IE
info@53
   323
//
info@53
   324
// When you need to remove a gradient background, do not forget to use this to reset
info@53
   325
// the IE filter for IE9 and below.
info@53
   326
.reset-filter() {
info@53
   327
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
info@53
   328
}
info@53
   329
info@53
   330
info@53
   331
info@53
   332
// Retina images
info@53
   333
//
info@53
   334
// Short retina mixin for setting background-image and -size
info@53
   335
info@53
   336
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
info@53
   337
  background-image: url("@{file-1x}");
info@53
   338
info@53
   339
  @media
info@53
   340
  only screen and (-webkit-min-device-pixel-ratio: 2),
info@53
   341
  only screen and (   min--moz-device-pixel-ratio: 2),
info@53
   342
  only screen and (     -o-min-device-pixel-ratio: 2/1),
info@53
   343
  only screen and (        min-device-pixel-ratio: 2),
info@53
   344
  only screen and (                min-resolution: 192dpi),
info@53
   345
  only screen and (                min-resolution: 2dppx) {
info@53
   346
    background-image: url("@{file-2x}");
info@53
   347
    background-size: @width-1x @height-1x;
info@53
   348
  }
info@53
   349
}
info@53
   350
info@53
   351
info@53
   352
// Responsive image
info@53
   353
//
info@53
   354
// Keep images from scaling beyond the width of their parents.
info@53
   355
info@53
   356
.img-responsive(@display: block;) {
info@53
   357
  display: @display;
info@53
   358
  max-width: 100%; // Part 1: Set a maximum relative to the parent
info@53
   359
  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
info@53
   360
}
info@53
   361
info@53
   362
info@53
   363
// COMPONENT MIXINS
info@53
   364
// --------------------------------------------------
info@53
   365
info@53
   366
// Horizontal dividers
info@53
   367
// -------------------------
info@53
   368
// Dividers (basically an hr) within dropdowns and nav lists
info@53
   369
.nav-divider(@color: #e5e5e5) {
info@53
   370
  height: 1px;
info@53
   371
  margin: ((@line-height-computed / 2) - 1) 0;
info@53
   372
  overflow: hidden;
info@53
   373
  background-color: @color;
info@53
   374
}
info@53
   375
info@53
   376
// Panels
info@53
   377
// -------------------------
info@53
   378
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
info@53
   379
  border-color: @border;
info@53
   380
info@53
   381
  & > .panel-heading {
info@53
   382
    color: @heading-text-color;
info@53
   383
    background-color: @heading-bg-color;
info@53
   384
    border-color: @heading-border;
info@53
   385
info@53
   386
    + .panel-collapse .panel-body {
info@53
   387
      border-top-color: @border;
info@53
   388
    }
info@53
   389
  }
info@53
   390
  & > .panel-footer {
info@53
   391
    + .panel-collapse .panel-body {
info@53
   392
      border-bottom-color: @border;
info@53
   393
    }
info@53
   394
  }
info@53
   395
}
info@53
   396
info@53
   397
// Alerts
info@53
   398
// -------------------------
info@53
   399
.alert-variant(@background; @border; @text-color) {
info@53
   400
  background-color: @background;
info@53
   401
  border-color: @border;
info@53
   402
  color: @text-color;
info@53
   403
info@53
   404
  hr {
info@53
   405
    border-top-color: darken(@border, 5%);
info@53
   406
  }
info@53
   407
  .alert-link {
info@53
   408
    color: darken(@text-color, 10%);
info@53
   409
  }
info@53
   410
}
info@53
   411
info@53
   412
// Tables
info@53
   413
// -------------------------
info@53
   414
.table-row-variant(@state; @background) {
info@53
   415
  // Exact selectors below required to override `.table-striped` and prevent
info@53
   416
  // inheritance to nested tables.
info@53
   417
  .table {
info@53
   418
    > thead,
info@53
   419
    > tbody,
info@53
   420
    > tfoot {
info@53
   421
      > tr > .@{state},
info@53
   422
      > .@{state} > td,
info@53
   423
      > .@{state} > th {
info@53
   424
        background-color: @background;
info@53
   425
      }
info@53
   426
    }
info@53
   427
  }
info@53
   428
info@53
   429
  // Hover states for `.table-hover`
info@53
   430
  // Note: this is not available for cells or rows within `thead` or `tfoot`.
info@53
   431
  .table-hover > tbody {
info@53
   432
    > tr > .@{state}:hover,
info@53
   433
    > .@{state}:hover > td,
info@53
   434
    > .@{state}:hover > th {
info@53
   435
      background-color: darken(@background, 5%);
info@53
   436
    }
info@53
   437
  }
info@53
   438
}
info@53
   439
info@53
   440
// Button variants
info@53
   441
// -------------------------
info@53
   442
// Easily pump out default styles, as well as :hover, :focus, :active,
info@53
   443
// and disabled options for all buttons
info@53
   444
.button-variant(@color; @background; @border) {
info@53
   445
  color: @color;
info@53
   446
  background-color: @background;
info@53
   447
  border-color: @border;
info@53
   448
info@53
   449
  &:hover,
info@53
   450
  &:focus,
info@53
   451
  &:active,
info@53
   452
  &.active,
info@53
   453
  .open .dropdown-toggle& {
info@53
   454
    color: @color;
info@53
   455
    background-color: darken(@background, 8%);
info@53
   456
        border-color: darken(@border, 12%);
info@53
   457
  }
info@53
   458
  &:active,
info@53
   459
  &.active,
info@53
   460
  .open .dropdown-toggle& {
info@53
   461
    background-image: none;
info@53
   462
  }
info@53
   463
  &.disabled,
info@53
   464
  &[disabled],
info@53
   465
  fieldset[disabled] & {
info@53
   466
    &,
info@53
   467
    &:hover,
info@53
   468
    &:focus,
info@53
   469
    &:active,
info@53
   470
    &.active {
info@53
   471
      background-color: @background;
info@53
   472
          border-color: @border;
info@53
   473
    }
info@53
   474
  }
info@53
   475
info@53
   476
  .badge {
info@53
   477
    color: @background;
info@53
   478
    background-color: #fff;
info@53
   479
  }
info@53
   480
}
info@53
   481
info@53
   482
// Button sizes
info@53
   483
// -------------------------
info@53
   484
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
info@53
   485
  padding: @padding-vertical @padding-horizontal;
info@53
   486
  font-size: @font-size;
info@53
   487
  line-height: @line-height;
info@53
   488
  border-radius: @border-radius;
info@53
   489
}
info@53
   490
info@53
   491
// Pagination
info@53
   492
// -------------------------
info@53
   493
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
info@53
   494
  > li {
info@53
   495
    > a,
info@53
   496
    > span {
info@53
   497
      padding: @padding-vertical @padding-horizontal;
info@53
   498
      font-size: @font-size;
info@53
   499
    }
info@53
   500
    &:first-child {
info@53
   501
      > a,
info@53
   502
      > span {
info@53
   503
        .border-left-radius(@border-radius);
info@53
   504
      }
info@53
   505
    }
info@53
   506
    &:last-child {
info@53
   507
      > a,
info@53
   508
      > span {
info@53
   509
        .border-right-radius(@border-radius);
info@53
   510
      }
info@53
   511
    }
info@53
   512
  }
info@53
   513
}
info@53
   514
info@53
   515
// Labels
info@53
   516
// -------------------------
info@53
   517
.label-variant(@color) {
info@53
   518
  background-color: @color;
info@53
   519
  &[href] {
info@53
   520
    &:hover,
info@53
   521
    &:focus {
info@53
   522
      background-color: darken(@color, 10%);
info@53
   523
    }
info@53
   524
  }
info@53
   525
}
info@53
   526
info@53
   527
// Navbar vertical align
info@53
   528
// -------------------------
info@53
   529
// Vertically center elements in the navbar.
info@53
   530
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
info@53
   531
.navbar-vertical-align(@element-height) {
info@53
   532
  margin-top: ((@navbar-height - @element-height) / 2);
info@53
   533
  margin-bottom: ((@navbar-height - @element-height) / 2);
info@53
   534
}
info@53
   535
info@53
   536
// Progress bars
info@53
   537
// -------------------------
info@53
   538
.progress-bar-variant(@color) {
info@53
   539
  background-color: @color;
info@53
   540
  .progress-striped & {
info@53
   541
    #gradient > .striped();
info@53
   542
  }
info@53
   543
}
info@53
   544
info@53
   545
// Responsive utilities
info@53
   546
// -------------------------
info@53
   547
// More easily include all the states for responsive-utilities.less.
info@53
   548
.responsive-visibility() {
info@53
   549
  display: block !important;
info@53
   550
  table&  { display: table; }
info@53
   551
  tr&     { display: table-row !important; }
info@53
   552
  th&,
info@53
   553
  td&     { display: table-cell !important; }
info@53
   554
}
info@53
   555
info@53
   556
.responsive-invisibility() {
info@53
   557
    &,
info@53
   558
  tr&,
info@53
   559
  th&,
info@53
   560
  td& { display: none !important; }
info@53
   561
}
info@53
   562
info@53
   563
info@53
   564
// Grid System
info@53
   565
// -----------
info@53
   566
info@53
   567
// Centered container element
info@53
   568
.container-fixed() {
info@53
   569
  margin-right: auto;
info@53
   570
  margin-left: auto;
info@53
   571
  padding-left:  (@grid-gutter-width / 2);
info@53
   572
  padding-right: (@grid-gutter-width / 2);
info@53
   573
  .clearfix();
info@53
   574
}
info@53
   575
info@53
   576
// Creates a wrapper for a series of columns
info@53
   577
.make-row(@gutter: @grid-gutter-width) {
info@53
   578
  margin-left:  (@gutter / -2);
info@53
   579
  margin-right: (@gutter / -2);
info@53
   580
  .clearfix();
info@53
   581
}
info@53
   582
info@53
   583
// Generate the extra small columns
info@53
   584
.make-xs-column(@columns; @gutter: @grid-gutter-width) {
info@53
   585
  position: relative;
info@53
   586
  float: left;
info@53
   587
  width: percentage((@columns / @grid-columns));
info@53
   588
  // Prevent columns from collapsing when empty
info@53
   589
  min-height: 1px;
info@53
   590
  // Inner gutter via padding
info@53
   591
  padding-left:  (@gutter / 2);
info@53
   592
  padding-right: (@gutter / 2);
info@53
   593
}
info@53
   594
info@53
   595
// Generate the small columns
info@53
   596
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
info@53
   597
  position: relative;
info@53
   598
  // Prevent columns from collapsing when empty
info@53
   599
  min-height: 1px;
info@53
   600
  // Inner gutter via padding
info@53
   601
  padding-left:  (@gutter / 2);
info@53
   602
  padding-right: (@gutter / 2);
info@53
   603
info@53
   604
  // Calculate width based on number of columns available
info@53
   605
  @media (min-width: @screen-sm-min) {
info@53
   606
    float: left;
info@53
   607
    width: percentage((@columns / @grid-columns));
info@53
   608
  }
info@53
   609
}
info@53
   610
info@53
   611
// Generate the small column offsets
info@53
   612
.make-sm-column-offset(@columns) {
info@53
   613
  @media (min-width: @screen-sm-min) {
info@53
   614
    margin-left: percentage((@columns / @grid-columns));
info@53
   615
  }
info@53
   616
}
info@53
   617
.make-sm-column-push(@columns) {
info@53
   618
  @media (min-width: @screen-sm-min) {
info@53
   619
    left: percentage((@columns / @grid-columns));
info@53
   620
  }
info@53
   621
}
info@53
   622
.make-sm-column-pull(@columns) {
info@53
   623
  @media (min-width: @screen-sm-min) {
info@53
   624
    right: percentage((@columns / @grid-columns));
info@53
   625
  }
info@53
   626
}
info@53
   627
info@53
   628
// Generate the medium columns
info@53
   629
.make-md-column(@columns; @gutter: @grid-gutter-width) {
info@53
   630
  position: relative;
info@53
   631
  // Prevent columns from collapsing when empty
info@53
   632
  min-height: 1px;
info@53
   633
  // Inner gutter via padding
info@53
   634
  padding-left:  (@gutter / 2);
info@53
   635
  padding-right: (@gutter / 2);
info@53
   636
info@53
   637
  // Calculate width based on number of columns available
info@53
   638
  @media (min-width: @screen-md-min) {
info@53
   639
    float: left;
info@53
   640
    width: percentage((@columns / @grid-columns));
info@53
   641
  }
info@53
   642
}
info@53
   643
info@53
   644
// Generate the medium column offsets
info@53
   645
.make-md-column-offset(@columns) {
info@53
   646
  @media (min-width: @screen-md-min) {
info@53
   647
    margin-left: percentage((@columns / @grid-columns));
info@53
   648
  }
info@53
   649
}
info@53
   650
.make-md-column-push(@columns) {
info@53
   651
  @media (min-width: @screen-md) {
info@53
   652
    left: percentage((@columns / @grid-columns));
info@53
   653
  }
info@53
   654
}
info@53
   655
.make-md-column-pull(@columns) {
info@53
   656
  @media (min-width: @screen-md-min) {
info@53
   657
    right: percentage((@columns / @grid-columns));
info@53
   658
  }
info@53
   659
}
info@53
   660
info@53
   661
// Generate the large columns
info@53
   662
.make-lg-column(@columns; @gutter: @grid-gutter-width) {
info@53
   663
  position: relative;
info@53
   664
  // Prevent columns from collapsing when empty
info@53
   665
  min-height: 1px;
info@53
   666
  // Inner gutter via padding
info@53
   667
  padding-left:  (@gutter / 2);
info@53
   668
  padding-right: (@gutter / 2);
info@53
   669
info@53
   670
  // Calculate width based on number of columns available
info@53
   671
  @media (min-width: @screen-lg-min) {
info@53
   672
    float: left;
info@53
   673
    width: percentage((@columns / @grid-columns));
info@53
   674
  }
info@53
   675
}
info@53
   676
info@53
   677
// Generate the large column offsets
info@53
   678
.make-lg-column-offset(@columns) {
info@53
   679
  @media (min-width: @screen-lg-min) {
info@53
   680
    margin-left: percentage((@columns / @grid-columns));
info@53
   681
  }
info@53
   682
}
info@53
   683
.make-lg-column-push(@columns) {
info@53
   684
  @media (min-width: @screen-lg-min) {
info@53
   685
    left: percentage((@columns / @grid-columns));
info@53
   686
  }
info@53
   687
}
info@53
   688
.make-lg-column-pull(@columns) {
info@53
   689
  @media (min-width: @screen-lg-min) {
info@53
   690
    right: percentage((@columns / @grid-columns));
info@53
   691
  }
info@53
   692
}
info@53
   693
info@53
   694
info@53
   695
// Framework grid generation
info@53
   696
//
info@53
   697
// Used only by Bootstrap to generate the correct number of grid classes given
info@53
   698
// any value of `@grid-columns`.
info@53
   699
info@53
   700
.make-grid-columns() {
info@53
   701
  // Common styles for all sizes of grid columns, widths 1-12
info@53
   702
  .col(@index) when (@index = 1) { // initial
info@53
   703
    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
info@53
   704
    .col(@index + 1, @item);
info@53
   705
  }
info@53
   706
  .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
info@53
   707
    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
info@53
   708
    .col(@index + 1, ~"@{list}, @{item}");
info@53
   709
  }
info@53
   710
  .col(@index, @list) when (@index > @grid-columns) { // terminal
info@53
   711
    @{list} {
info@53
   712
      position: relative;
info@53
   713
      // Prevent columns from collapsing when empty
info@53
   714
      min-height: 1px;
info@53
   715
      // Inner gutter via padding
info@53
   716
      padding-left:  (@grid-gutter-width / 2);
info@53
   717
      padding-right: (@grid-gutter-width / 2);
info@53
   718
    }
info@53
   719
  }
info@53
   720
  .col(1); // kickstart it
info@53
   721
}
info@53
   722
info@53
   723
.make-grid-columns-float(@class) {
info@53
   724
  .col(@index) when (@index = 1) { // initial
info@53
   725
    @item: ~".col-@{class}-@{index}";
info@53
   726
    .col(@index + 1, @item);
info@53
   727
  }
info@53
   728
  .col(@index, @list) when (@index =< @grid-columns) { // general
info@53
   729
    @item: ~".col-@{class}-@{index}";
info@53
   730
    .col(@index + 1, ~"@{list}, @{item}");
info@53
   731
  }
info@53
   732
  .col(@index, @list) when (@index > @grid-columns) { // terminal
info@53
   733
    @{list} {
info@53
   734
      float: left;
info@53
   735
    }
info@53
   736
  }
info@53
   737
  .col(1); // kickstart it
info@53
   738
}
info@53
   739
info@53
   740
.calc-grid(@index, @class, @type) when (@type = width) and (@index > 0) {
info@53
   741
  .col-@{class}-@{index} {
info@53
   742
    width: percentage((@index / @grid-columns));
info@53
   743
  }
info@53
   744
}
info@53
   745
.calc-grid(@index, @class, @type) when (@type = push) {
info@53
   746
  .col-@{class}-push-@{index} {
info@53
   747
    left: percentage((@index / @grid-columns));
info@53
   748
  }
info@53
   749
}
info@53
   750
.calc-grid(@index, @class, @type) when (@type = pull) {
info@53
   751
  .col-@{class}-pull-@{index} {
info@53
   752
    right: percentage((@index / @grid-columns));
info@53
   753
  }
info@53
   754
}
info@53
   755
.calc-grid(@index, @class, @type) when (@type = offset) {
info@53
   756
  .col-@{class}-offset-@{index} {
info@53
   757
    margin-left: percentage((@index / @grid-columns));
info@53
   758
  }
info@53
   759
}
info@53
   760
info@53
   761
// Basic looping in LESS
info@53
   762
.make-grid(@index, @class, @type) when (@index >= 0) {
info@53
   763
  .calc-grid(@index, @class, @type);
info@53
   764
  // next iteration
info@53
   765
  .make-grid(@index - 1, @class, @type);
info@53
   766
}
info@53
   767
info@53
   768
info@53
   769
// Form validation states
info@53
   770
//
info@53
   771
// Used in forms.less to generate the form validation CSS for warnings, errors,
info@53
   772
// and successes.
info@53
   773
info@53
   774
.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
info@53
   775
  // Color the label and help text
info@53
   776
  .help-block,
info@53
   777
  .control-label,
info@53
   778
  .radio,
info@53
   779
  .checkbox,
info@53
   780
  .radio-inline,
info@53
   781
  .checkbox-inline  {
info@53
   782
    color: @text-color;
info@53
   783
  }
info@53
   784
  // Set the border and box shadow on specific inputs to match
info@53
   785
  .form-control {
info@53
   786
    border-color: @border-color;
info@53
   787
    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
info@53
   788
    &:focus {
info@53
   789
      border-color: darken(@border-color, 10%);
info@53
   790
      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
info@53
   791
      .box-shadow(@shadow);
info@53
   792
    }
info@53
   793
  }
info@53
   794
  // Set validation states also for addons
info@53
   795
  .input-group-addon {
info@53
   796
    color: @text-color;
info@53
   797
    border-color: @border-color;
info@53
   798
    background-color: @background-color;
info@53
   799
  }
info@53
   800
}
info@53
   801
info@53
   802
// Form control focus state
info@53
   803
//
info@53
   804
// Generate a customized focus state and for any input with the specified color,
info@53
   805
// which defaults to the `@input-focus-border` variable.
info@53
   806
//
info@53
   807
// We highly encourage you to not customize the default value, but instead use
info@53
   808
// this to tweak colors on an as-needed basis. This aesthetic change is based on
info@53
   809
// WebKit's default styles, but applicable to a wider range of browsers. Its
info@53
   810
// usability and accessibility should be taken into account with any change.
info@53
   811
//
info@53
   812
// Example usage: change the default blue border and shadow to white for better
info@53
   813
// contrast against a dark gray background.
info@53
   814
info@53
   815
.form-control-focus(@color: @input-border-focus) {
info@53
   816
  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
info@53
   817
  &:focus {
info@53
   818
    border-color: @color;
info@53
   819
    outline: 0;
info@53
   820
    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
info@53
   821
  }
info@53
   822
}
info@53
   823
info@53
   824
// Form control sizing
info@53
   825
//
info@53
   826
// Relative text size, padding, and border-radii changes for form controls. For
info@53
   827
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
info@53
   828
// element gets special love because it's special, and that's a fact!
info@53
   829
info@53
   830
.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
info@53
   831
  height: @input-height;
info@53
   832
  padding: @padding-vertical @padding-horizontal;
info@53
   833
  font-size: @font-size;
info@53
   834
  line-height: @line-height;
info@53
   835
  border-radius: @border-radius;
info@53
   836
info@53
   837
  select& {
info@53
   838
    height: @input-height;
info@53
   839
    line-height: @input-height;
info@53
   840
  }
info@53
   841
info@53
   842
  textarea& {
info@53
   843
    height: auto;
info@53
   844
  }
info@53
   845
}
Impressum Datenschutzerklärung