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