bootstrap-source/bootstrap-3.0.3/less/forms.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
// Forms
info@54
     3
// --------------------------------------------------
info@54
     4
info@54
     5
info@54
     6
// Normalize non-controls
info@54
     7
//
info@54
     8
// Restyle and baseline non-control form elements.
info@54
     9
info@54
    10
fieldset {
info@54
    11
  padding: 0;
info@54
    12
  margin: 0;
info@54
    13
  border: 0;
info@54
    14
}
info@54
    15
info@54
    16
legend {
info@54
    17
  display: block;
info@54
    18
  width: 100%;
info@54
    19
  padding: 0;
info@54
    20
  margin-bottom: @line-height-computed;
info@54
    21
  font-size: (@font-size-base * 1.5);
info@54
    22
  line-height: inherit;
info@54
    23
  color: @legend-color;
info@54
    24
  border: 0;
info@54
    25
  border-bottom: 1px solid @legend-border-color;
info@54
    26
}
info@54
    27
info@54
    28
label {
info@54
    29
  display: inline-block;
info@54
    30
  margin-bottom: 5px;
info@54
    31
  font-weight: bold;
info@54
    32
}
info@54
    33
info@54
    34
info@54
    35
// Normalize form controls
info@54
    36
info@54
    37
// Override content-box in Normalize (* isn't specific enough)
info@54
    38
input[type="search"] {
info@54
    39
  .box-sizing(border-box);
info@54
    40
}
info@54
    41
info@54
    42
// Position radios and checkboxes better
info@54
    43
input[type="radio"],
info@54
    44
input[type="checkbox"] {
info@54
    45
  margin: 4px 0 0;
info@54
    46
  margin-top: 1px \9; /* IE8-9 */
info@54
    47
  line-height: normal;
info@54
    48
}
info@54
    49
info@54
    50
// Set the height of select and file controls to match text inputs
info@54
    51
input[type="file"] {
info@54
    52
  display: block;
info@54
    53
}
info@54
    54
info@54
    55
// Make multiple select elements height not fixed
info@54
    56
select[multiple],
info@54
    57
select[size] {
info@54
    58
  height: auto;
info@54
    59
}
info@54
    60
info@54
    61
// Fix optgroup Firefox bug per https://github.com/twbs/bootstrap/issues/7611
info@54
    62
select optgroup {
info@54
    63
  font-size: inherit;
info@54
    64
  font-style: inherit;
info@54
    65
  font-family: inherit;
info@54
    66
}
info@54
    67
info@54
    68
// Focus for select, file, radio, and checkbox
info@54
    69
input[type="file"]:focus,
info@54
    70
input[type="radio"]:focus,
info@54
    71
input[type="checkbox"]:focus {
info@54
    72
  .tab-focus();
info@54
    73
}
info@54
    74
info@54
    75
// Fix for Chrome number input
info@54
    76
// Setting certain font-sizes causes the `I` bar to appear on hover of the bottom increment button.
info@54
    77
// See https://github.com/twbs/bootstrap/issues/8350 for more.
info@54
    78
input[type="number"] {
info@54
    79
  &::-webkit-outer-spin-button,
info@54
    80
  &::-webkit-inner-spin-button {
info@54
    81
    height: auto;
info@54
    82
  }
info@54
    83
}
info@54
    84
info@54
    85
// Adjust output element
info@54
    86
output {
info@54
    87
  display: block;
info@54
    88
  padding-top: (@padding-base-vertical + 1);
info@54
    89
  font-size: @font-size-base;
info@54
    90
  line-height: @line-height-base;
info@54
    91
  color: @input-color;
info@54
    92
  vertical-align: middle;
info@54
    93
}
info@54
    94
info@54
    95
info@54
    96
// Common form controls
info@54
    97
//
info@54
    98
// Shared size and type resets for form controls. Apply `.form-control` to any
info@54
    99
// of the following form controls:
info@54
   100
//
info@54
   101
// select
info@54
   102
// textarea
info@54
   103
// input[type="text"]
info@54
   104
// input[type="password"]
info@54
   105
// input[type="datetime"]
info@54
   106
// input[type="datetime-local"]
info@54
   107
// input[type="date"]
info@54
   108
// input[type="month"]
info@54
   109
// input[type="time"]
info@54
   110
// input[type="week"]
info@54
   111
// input[type="number"]
info@54
   112
// input[type="email"]
info@54
   113
// input[type="url"]
info@54
   114
// input[type="search"]
info@54
   115
// input[type="tel"]
info@54
   116
// input[type="color"]
info@54
   117
info@54
   118
.form-control {
info@54
   119
  display: block;
info@54
   120
  width: 100%;
info@54
   121
  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
info@54
   122
  padding: @padding-base-vertical @padding-base-horizontal;
info@54
   123
  font-size: @font-size-base;
info@54
   124
  line-height: @line-height-base;
info@54
   125
  color: @input-color;
info@54
   126
  vertical-align: middle;
info@54
   127
  background-color: @input-bg;
info@54
   128
  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
info@54
   129
  border: 1px solid @input-border;
info@54
   130
  border-radius: @input-border-radius;
info@54
   131
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
info@54
   132
  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
info@54
   133
info@54
   134
  // Customize the `:focus` state to imitate native WebKit styles.
info@54
   135
  .form-control-focus();
info@54
   136
info@54
   137
  // Placeholder
info@54
   138
  //
info@54
   139
  // Placeholder text gets special styles because when browsers invalidate entire
info@54
   140
  // lines if it doesn't understand a selector/
info@54
   141
  .placeholder();
info@54
   142
info@54
   143
  // Disabled and read-only inputs
info@54
   144
  // Note: HTML5 says that controls under a fieldset > legend:first-child won't
info@54
   145
  // be disabled if the fieldset is disabled. Due to implementation difficulty,
info@54
   146
  // we don't honor that edge case; we style them as disabled anyway.
info@54
   147
  &[disabled],
info@54
   148
  &[readonly],
info@54
   149
  fieldset[disabled] & {
info@54
   150
    cursor: not-allowed;
info@54
   151
    background-color: @input-bg-disabled;
info@54
   152
  }
info@54
   153
info@54
   154
  // Reset height for `textarea`s
info@54
   155
  textarea& {
info@54
   156
    height: auto;
info@54
   157
  }
info@54
   158
}
info@54
   159
info@54
   160
info@54
   161
// Form groups
info@54
   162
//
info@54
   163
// Designed to help with the organization and spacing of vertical forms. For
info@54
   164
// horizontal forms, use the predefined grid classes.
info@54
   165
info@54
   166
.form-group {
info@54
   167
  margin-bottom: 15px;
info@54
   168
}
info@54
   169
info@54
   170
info@54
   171
// Checkboxes and radios
info@54
   172
//
info@54
   173
// Indent the labels to position radios/checkboxes as hanging controls.
info@54
   174
info@54
   175
.radio,
info@54
   176
.checkbox {
info@54
   177
  display: block;
info@54
   178
  min-height: @line-height-computed; // clear the floating input if there is no label text
info@54
   179
  margin-top: 10px;
info@54
   180
  margin-bottom: 10px;
info@54
   181
  padding-left: 20px;
info@54
   182
  vertical-align: middle;
info@54
   183
  label {
info@54
   184
    display: inline;
info@54
   185
    margin-bottom: 0;
info@54
   186
    font-weight: normal;
info@54
   187
    cursor: pointer;
info@54
   188
  }
info@54
   189
}
info@54
   190
.radio input[type="radio"],
info@54
   191
.radio-inline input[type="radio"],
info@54
   192
.checkbox input[type="checkbox"],
info@54
   193
.checkbox-inline input[type="checkbox"] {
info@54
   194
  float: left;
info@54
   195
  margin-left: -20px;
info@54
   196
}
info@54
   197
.radio + .radio,
info@54
   198
.checkbox + .checkbox {
info@54
   199
  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
info@54
   200
}
info@54
   201
info@54
   202
// Radios and checkboxes on same line
info@54
   203
.radio-inline,
info@54
   204
.checkbox-inline {
info@54
   205
  display: inline-block;
info@54
   206
  padding-left: 20px;
info@54
   207
  margin-bottom: 0;
info@54
   208
  vertical-align: middle;
info@54
   209
  font-weight: normal;
info@54
   210
  cursor: pointer;
info@54
   211
}
info@54
   212
.radio-inline + .radio-inline,
info@54
   213
.checkbox-inline + .checkbox-inline {
info@54
   214
  margin-top: 0;
info@54
   215
  margin-left: 10px; // space out consecutive inline controls
info@54
   216
}
info@54
   217
info@54
   218
// Apply same disabled cursor tweak as for inputs
info@54
   219
//
info@54
   220
// Note: Neither radios nor checkboxes can be readonly.
info@54
   221
input[type="radio"],
info@54
   222
input[type="checkbox"],
info@54
   223
.radio,
info@54
   224
.radio-inline,
info@54
   225
.checkbox,
info@54
   226
.checkbox-inline {
info@54
   227
  &[disabled],
info@54
   228
  fieldset[disabled] & {
info@54
   229
    cursor: not-allowed;
info@54
   230
  }
info@54
   231
}
info@54
   232
info@54
   233
// Form control sizing
info@54
   234
.input-sm {
info@54
   235
  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
info@54
   236
}
info@54
   237
info@54
   238
.input-lg {
info@54
   239
  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
info@54
   240
}
info@54
   241
info@54
   242
info@54
   243
// Form control feedback states
info@54
   244
//
info@54
   245
// Apply contextual and semantic states to individual form controls.
info@54
   246
info@54
   247
// Warning
info@54
   248
.has-warning {
info@54
   249
  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
info@54
   250
}
info@54
   251
// Error
info@54
   252
.has-error {
info@54
   253
  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
info@54
   254
}
info@54
   255
// Success
info@54
   256
.has-success {
info@54
   257
  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
info@54
   258
}
info@54
   259
info@54
   260
info@54
   261
// Static form control text
info@54
   262
//
info@54
   263
// Apply class to a `p` element to make any string of text align with labels in
info@54
   264
// a horizontal form layout.
info@54
   265
info@54
   266
.form-control-static {
info@54
   267
  margin-bottom: 0; // Remove default margin from `p`
info@54
   268
}
info@54
   269
info@54
   270
info@54
   271
// Help text
info@54
   272
//
info@54
   273
// Apply to any element you wish to create light text for placement immediately
info@54
   274
// below a form control. Use for general help, formatting, or instructional text.
info@54
   275
info@54
   276
.help-block {
info@54
   277
  display: block; // account for any element using help-block
info@54
   278
  margin-top: 5px;
info@54
   279
  margin-bottom: 10px;
info@54
   280
  color: lighten(@text-color, 25%); // lighten the text some for contrast
info@54
   281
}
info@54
   282
info@54
   283
info@54
   284
info@54
   285
// Inline forms
info@54
   286
//
info@54
   287
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
info@54
   288
// forms begin stacked on extra small (mobile) devices and then go inline when
info@54
   289
// viewports reach <768px.
info@54
   290
//
info@54
   291
// Requires wrapping inputs and labels with `.form-group` for proper display of
info@54
   292
// default HTML form controls and our custom form controls (e.g., input groups).
info@54
   293
//
info@54
   294
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
info@54
   295
info@54
   296
.form-inline {
info@54
   297
info@54
   298
  // Kick in the inline
info@54
   299
  @media (min-width: @screen-sm) {
info@54
   300
    // Inline-block all the things for "inline"
info@54
   301
    .form-group  {
info@54
   302
      display: inline-block;
info@54
   303
      margin-bottom: 0;
info@54
   304
      vertical-align: middle;
info@54
   305
    }
info@54
   306
info@54
   307
    // In navbar-form, allow folks to *not* use `.form-group`
info@54
   308
    .form-control {
info@54
   309
      display: inline-block;
info@54
   310
    }
info@54
   311
info@54
   312
    // Override `width: 100%;` when not within a `.form-group`
info@54
   313
    select.form-control {
info@54
   314
      width: auto;
info@54
   315
    }
info@54
   316
info@54
   317
    // Remove default margin on radios/checkboxes that were used for stacking, and
info@54
   318
    // then undo the floating of radios and checkboxes to match (which also avoids
info@54
   319
    // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
info@54
   320
    .radio,
info@54
   321
    .checkbox {
info@54
   322
      display: inline-block;
info@54
   323
      margin-top: 0;
info@54
   324
      margin-bottom: 0;
info@54
   325
      padding-left: 0;
info@54
   326
    }
info@54
   327
    .radio input[type="radio"],
info@54
   328
    .checkbox input[type="checkbox"] {
info@54
   329
      float: none;
info@54
   330
      margin-left: 0;
info@54
   331
    }
info@54
   332
  }
info@54
   333
}
info@54
   334
info@54
   335
info@54
   336
// Horizontal forms
info@54
   337
//
info@54
   338
// Horizontal forms are built on grid classes and allow you to create forms with
info@54
   339
// labels on the left and inputs on the right.
info@54
   340
info@54
   341
.form-horizontal {
info@54
   342
info@54
   343
  // Consistent vertical alignment of labels, radios, and checkboxes
info@54
   344
  .control-label,
info@54
   345
  .radio,
info@54
   346
  .checkbox,
info@54
   347
  .radio-inline,
info@54
   348
  .checkbox-inline {
info@54
   349
    margin-top: 0;
info@54
   350
    margin-bottom: 0;
info@54
   351
    padding-top: (@padding-base-vertical + 1); // Default padding plus a border
info@54
   352
  }
info@54
   353
  // Account for padding we're adding to ensure the alignment and of help text
info@54
   354
  // and other content below items
info@54
   355
  .radio,
info@54
   356
  .checkbox {
info@54
   357
    min-height: @line-height-computed + (@padding-base-vertical + 1);
info@54
   358
  }
info@54
   359
info@54
   360
  // Make form groups behave like rows
info@54
   361
  .form-group {
info@54
   362
    .make-row();
info@54
   363
  }
info@54
   364
info@54
   365
  .form-control-static {
info@54
   366
    padding-top: (@padding-base-vertical + 1);
info@54
   367
  }
info@54
   368
info@54
   369
  // Only right align form labels here when the columns stop stacking
info@54
   370
  @media (min-width: @screen-sm-min) {
info@54
   371
    .control-label {
info@54
   372
      text-align: right;
info@54
   373
    }
info@54
   374
  }
info@54
   375
}
Impressum Datenschutzerklärung