2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Forms
|
|
|
|
// --------------------------------------------------
|
2011-06-30 09:15:37 +02:00
|
|
|
|
2011-11-12 09:46:02 +01:00
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Normalize non-controls
|
|
|
|
//
|
|
|
|
// Restyle and baseline non-control form elements.
|
2012-01-20 22:16:40 +01:00
|
|
|
|
|
|
|
fieldset {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
2011-08-25 09:13:40 +02:00
|
|
|
}
|
2011-08-17 07:58:01 +02:00
|
|
|
|
2011-09-29 10:40:27 +02:00
|
|
|
legend {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2012-01-20 22:16:40 +01:00
|
|
|
padding: 0;
|
2013-05-10 02:20:46 +02:00
|
|
|
margin-bottom: @line-height-computed;
|
2013-03-06 17:38:20 +01:00
|
|
|
font-size: (@font-size-base * 1.5);
|
2013-05-15 08:21:30 +02:00
|
|
|
line-height: inherit;
|
2013-08-12 03:06:26 +02:00
|
|
|
color: @legend-color;
|
2012-01-20 22:16:40 +01:00
|
|
|
border: 0;
|
2013-07-20 10:38:27 +02:00
|
|
|
border-bottom: 1px solid @legend-border-color;
|
2011-08-25 09:13:40 +02:00
|
|
|
}
|
2011-08-17 07:58:01 +02:00
|
|
|
|
2011-08-25 09:13:40 +02:00
|
|
|
label {
|
2012-11-30 22:35:20 +01:00
|
|
|
display: inline-block;
|
2011-09-29 10:40:27 +02:00
|
|
|
margin-bottom: 5px;
|
2012-11-30 22:35:20 +01:00
|
|
|
font-weight: bold;
|
2011-08-25 09:13:40 +02:00
|
|
|
}
|
2011-08-17 07:58:01 +02:00
|
|
|
|
2012-05-15 08:40:06 +02:00
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Normalize form controls
|
2012-11-30 22:35:20 +01:00
|
|
|
|
2013-04-14 06:45:21 +02:00
|
|
|
// Override content-box in Normalize (* isn't specific enough)
|
|
|
|
input[type="search"] {
|
|
|
|
.box-sizing(border-box);
|
|
|
|
}
|
|
|
|
|
2012-05-15 09:17:02 +02:00
|
|
|
// Position radios and checkboxes better
|
2012-05-15 08:40:06 +02:00
|
|
|
input[type="radio"],
|
|
|
|
input[type="checkbox"] {
|
2012-08-15 00:34:10 +02:00
|
|
|
margin: 4px 0 0;
|
2012-08-15 00:29:47 +02:00
|
|
|
margin-top: 1px \9; /* IE8-9 */
|
2012-05-15 09:17:02 +02:00
|
|
|
line-height: normal;
|
2012-01-25 20:21:44 +01:00
|
|
|
}
|
2012-05-15 09:17:02 +02:00
|
|
|
|
2011-11-12 09:46:02 +01:00
|
|
|
// Set the height of select and file controls to match text inputs
|
2012-01-28 05:05:03 +01:00
|
|
|
input[type="file"] {
|
2013-07-21 06:09:03 +02:00
|
|
|
display: block;
|
2011-09-12 03:01:29 +02:00
|
|
|
}
|
2011-09-02 07:53:24 +02:00
|
|
|
|
2011-09-14 17:58:20 +02:00
|
|
|
// Make multiple select elements height not fixed
|
2011-12-27 23:08:07 +01:00
|
|
|
select[multiple],
|
|
|
|
select[size] {
|
2012-01-25 20:51:13 +01:00
|
|
|
height: auto;
|
2011-09-14 17:58:20 +02:00
|
|
|
}
|
|
|
|
|
2013-07-25 21:24:13 +02:00
|
|
|
// Fix optgroup Firefox bug per https://github.com/twbs/bootstrap/issues/7611
|
2013-05-20 07:06:10 +02:00
|
|
|
select optgroup {
|
|
|
|
font-size: inherit;
|
|
|
|
font-style: inherit;
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
|
|
|
|
2012-05-15 18:04:44 +02:00
|
|
|
// Focus for select, file, radio, and checkbox
|
|
|
|
input[type="file"]:focus,
|
|
|
|
input[type="radio"]:focus,
|
|
|
|
input[type="checkbox"]:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
2012-01-26 19:00:09 +01:00
|
|
|
|
2013-07-02 04:49:29 +02:00
|
|
|
// Fix for Chrome number input
|
|
|
|
// Setting certain font-sizes causes the `I` bar to appear on hover of the bottom increment button.
|
2013-07-25 21:24:13 +02:00
|
|
|
// See https://github.com/twbs/bootstrap/issues/8350 for more.
|
2013-07-02 04:49:29 +02:00
|
|
|
input[type="number"] {
|
2013-07-02 05:18:44 +02:00
|
|
|
&::-webkit-outer-spin-button,
|
2013-07-30 21:35:39 +02:00
|
|
|
&::-webkit-inner-spin-button {
|
2013-07-02 04:49:29 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-24 09:14:09 +02:00
|
|
|
// Adjust output element
|
|
|
|
output {
|
|
|
|
display: block;
|
|
|
|
padding-top: (@padding-base-vertical + 1);
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
color: @input-color;
|
|
|
|
}
|
2011-08-17 07:58:01 +02:00
|
|
|
|
2011-08-25 09:13:40 +02:00
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Common form controls
|
|
|
|
//
|
|
|
|
// Shared size and type resets for form controls. Apply `.form-control` to any
|
|
|
|
// of the following form controls:
|
|
|
|
//
|
|
|
|
// select
|
|
|
|
// textarea
|
|
|
|
// input[type="text"]
|
|
|
|
// input[type="password"]
|
|
|
|
// input[type="datetime"]
|
|
|
|
// input[type="datetime-local"]
|
|
|
|
// input[type="date"]
|
|
|
|
// input[type="month"]
|
|
|
|
// input[type="time"]
|
|
|
|
// input[type="week"]
|
|
|
|
// input[type="number"]
|
|
|
|
// input[type="email"]
|
|
|
|
// input[type="url"]
|
|
|
|
// input[type="search"]
|
|
|
|
// input[type="tel"]
|
|
|
|
// input[type="color"]
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
|
|
|
padding: @padding-base-vertical @padding-base-horizontal;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
2013-08-12 03:06:26 +02:00
|
|
|
color: @input-color;
|
2013-07-26 03:29:51 +02:00
|
|
|
background-color: @input-bg;
|
2013-08-29 00:37:34 +02:00
|
|
|
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
2013-07-26 03:29:51 +02:00
|
|
|
border: 1px solid @input-border;
|
|
|
|
border-radius: @input-border-radius;
|
|
|
|
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
|
|
|
.transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
|
|
|
|
|
2013-08-05 08:05:54 +02:00
|
|
|
// Customize the `:focus` state to imitate native WebKit styles.
|
|
|
|
.form-control-focus();
|
2013-07-26 03:29:51 +02:00
|
|
|
|
2013-11-02 09:35:51 +01:00
|
|
|
// Placeholder
|
|
|
|
//
|
|
|
|
// Placeholder text gets special styles because when browsers invalidate entire
|
|
|
|
// lines if it doesn't understand a selector/
|
|
|
|
.placeholder();
|
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Disabled and read-only inputs
|
2013-08-15 20:52:22 +02:00
|
|
|
// Note: HTML5 says that controls under a fieldset > legend:first-child won't
|
|
|
|
// be disabled if the fieldset is disabled. Due to implementation difficulty,
|
|
|
|
// we don't honor that edge case; we style them as disabled anyway.
|
2013-07-26 03:29:51 +02:00
|
|
|
&[disabled],
|
|
|
|
&[readonly],
|
|
|
|
fieldset[disabled] & {
|
|
|
|
cursor: not-allowed;
|
|
|
|
background-color: @input-bg-disabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset height for `textarea`s
|
|
|
|
textarea& {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-16 00:27:46 +01:00
|
|
|
// Special styles for iOS date input
|
|
|
|
//
|
|
|
|
// In Mobile Safari, date inputs require a pixel line-height that matches the
|
|
|
|
// given height of the input.
|
|
|
|
input[type="date"] {
|
|
|
|
line-height: @input-height-base;
|
|
|
|
}
|
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
|
|
|
|
// Form groups
|
|
|
|
//
|
|
|
|
// Designed to help with the organization and spacing of vertical forms. For
|
|
|
|
// horizontal forms, use the predefined grid classes.
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Checkboxes and radios
|
|
|
|
//
|
|
|
|
// Indent the labels to position radios/checkboxes as hanging controls.
|
2012-01-05 23:11:41 +01:00
|
|
|
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
2012-11-30 22:35:20 +01:00
|
|
|
display: block;
|
2013-05-10 02:20:46 +02:00
|
|
|
min-height: @line-height-computed; // clear the floating input if there is no label text
|
2013-05-10 00:05:06 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2012-09-20 20:45:59 +02:00
|
|
|
padding-left: 20px;
|
2013-01-16 21:20:34 +01:00
|
|
|
label {
|
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
2013-05-03 20:56:00 +02:00
|
|
|
cursor: pointer;
|
2013-01-16 21:20:34 +01:00
|
|
|
}
|
2012-01-05 23:11:41 +01:00
|
|
|
}
|
2012-01-28 05:05:03 +01:00
|
|
|
.radio input[type="radio"],
|
2013-01-16 21:20:34 +01:00
|
|
|
.radio-inline input[type="radio"],
|
|
|
|
.checkbox input[type="checkbox"],
|
|
|
|
.checkbox-inline input[type="checkbox"] {
|
2012-01-05 23:11:41 +01:00
|
|
|
float: left;
|
2012-09-20 20:45:59 +02:00
|
|
|
margin-left: -20px;
|
2012-01-05 23:11:41 +01:00
|
|
|
}
|
2013-01-16 21:20:34 +01:00
|
|
|
.radio + .radio,
|
|
|
|
.checkbox + .checkbox {
|
2013-05-10 00:05:06 +02:00
|
|
|
margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
|
2013-01-16 21:20:34 +01:00
|
|
|
}
|
2012-01-05 23:11:41 +01:00
|
|
|
|
2012-01-07 08:59:22 +01:00
|
|
|
// Radios and checkboxes on same line
|
2013-01-16 21:20:34 +01:00
|
|
|
.radio-inline,
|
|
|
|
.checkbox-inline {
|
2012-01-07 08:59:22 +01:00
|
|
|
display: inline-block;
|
2013-01-16 21:20:34 +01:00
|
|
|
padding-left: 20px;
|
2012-01-07 09:26:58 +01:00
|
|
|
margin-bottom: 0;
|
2012-01-28 23:50:56 +01:00
|
|
|
vertical-align: middle;
|
2013-01-16 21:20:34 +01:00
|
|
|
font-weight: normal;
|
2013-05-03 20:56:00 +02:00
|
|
|
cursor: pointer;
|
2012-01-07 08:59:22 +01:00
|
|
|
}
|
2013-01-16 21:20:34 +01:00
|
|
|
.radio-inline + .radio-inline,
|
|
|
|
.checkbox-inline + .checkbox-inline {
|
|
|
|
margin-top: 0;
|
2012-01-07 09:26:58 +01:00
|
|
|
margin-left: 10px; // space out consecutive inline controls
|
2012-01-07 08:59:22 +01:00
|
|
|
}
|
|
|
|
|
2013-08-15 03:20:28 +02:00
|
|
|
// Apply same disabled cursor tweak as for inputs
|
2013-08-15 20:52:22 +02:00
|
|
|
//
|
2013-08-15 03:20:28 +02:00
|
|
|
// Note: Neither radios nor checkboxes can be readonly.
|
2013-08-15 20:52:22 +02:00
|
|
|
input[type="radio"],
|
|
|
|
input[type="checkbox"],
|
2013-08-15 03:20:28 +02:00
|
|
|
.radio,
|
|
|
|
.radio-inline,
|
|
|
|
.checkbox,
|
|
|
|
.checkbox-inline {
|
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
2012-01-05 23:11:41 +01:00
|
|
|
|
2013-12-16 00:24:52 +01:00
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Form control sizing
|
2013-12-16 00:24:52 +01:00
|
|
|
//
|
|
|
|
// Build on `.form-control` with modifier classes to decrease or increase the
|
|
|
|
// height and font-size of form controls.
|
|
|
|
|
2013-08-04 06:39:57 +02:00
|
|
|
.input-sm {
|
2013-08-13 23:31:33 +02:00
|
|
|
.input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
2013-07-30 02:30:36 +02:00
|
|
|
}
|
|
|
|
|
2013-08-13 19:06:02 +02:00
|
|
|
.input-lg {
|
2013-08-13 23:31:33 +02:00
|
|
|
.input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
|
2013-07-30 02:30:36 +02:00
|
|
|
}
|
2011-08-17 07:58:01 +02:00
|
|
|
|
2012-09-26 00:01:03 +02:00
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Form control feedback states
|
|
|
|
//
|
|
|
|
// Apply contextual and semantic states to individual form controls.
|
2011-09-29 10:40:27 +02:00
|
|
|
|
2013-12-16 02:15:09 +01:00
|
|
|
.has-feedback {
|
|
|
|
// Enable absolute positioning
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
// Ensure icons don't overlap text
|
|
|
|
.form-control {
|
|
|
|
padding-right: (@input-height-base * 1.25);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Feedback icon (requires .glyphicon classes)
|
|
|
|
.form-control-feedback {
|
|
|
|
position: absolute;
|
2013-12-16 03:13:50 +01:00
|
|
|
top: (@line-height-computed + 5); // Height of the `label` and its margin
|
2013-12-16 02:15:09 +01:00
|
|
|
right: 0;
|
|
|
|
display: block;
|
|
|
|
width: @input-height-base;
|
|
|
|
height: @input-height-base;
|
|
|
|
line-height: @input-height-base;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Feedback states
|
2014-01-07 22:24:45 +01:00
|
|
|
.has-success {
|
|
|
|
.form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
|
|
|
|
}
|
2012-12-26 22:57:52 +01:00
|
|
|
.has-warning {
|
2013-08-02 21:31:13 +02:00
|
|
|
.form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
|
2012-01-25 01:54:35 +01:00
|
|
|
}
|
2012-12-26 22:57:52 +01:00
|
|
|
.has-error {
|
2013-08-02 21:31:13 +02:00
|
|
|
.form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
|
2011-11-12 09:46:02 +01:00
|
|
|
}
|
2011-09-29 10:40:27 +02:00
|
|
|
|
|
|
|
|
2013-08-05 21:17:09 +02:00
|
|
|
// Static form control text
|
|
|
|
//
|
|
|
|
// Apply class to a `p` element to make any string of text align with labels in
|
|
|
|
// a horizontal form layout.
|
|
|
|
|
|
|
|
.form-control-static {
|
|
|
|
margin-bottom: 0; // Remove default margin from `p`
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Help text
|
|
|
|
//
|
|
|
|
// Apply to any element you wish to create light text for placement immediately
|
|
|
|
// below a form control. Use for general help, formatting, or instructional text.
|
2011-09-29 04:15:31 +02:00
|
|
|
|
2012-01-06 06:43:28 +01:00
|
|
|
.help-block {
|
2012-02-13 07:49:06 +01:00
|
|
|
display: block; // account for any element using help-block
|
2013-05-10 00:05:06 +02:00
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
color: lighten(@text-color, 25%); // lighten the text some for contrast
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
2013-08-03 03:48:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Inline forms
|
|
|
|
//
|
2013-08-12 20:07:23 +02:00
|
|
|
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
|
|
|
|
// forms begin stacked on extra small (mobile) devices and then go inline when
|
|
|
|
// viewports reach <768px.
|
|
|
|
//
|
|
|
|
// Requires wrapping inputs and labels with `.form-group` for proper display of
|
|
|
|
// default HTML form controls and our custom form controls (e.g., input groups).
|
2013-08-13 01:09:21 +02:00
|
|
|
//
|
|
|
|
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
|
2013-08-03 03:48:44 +02:00
|
|
|
|
|
|
|
.form-inline {
|
2013-08-05 20:47:12 +02:00
|
|
|
|
2013-08-12 20:07:23 +02:00
|
|
|
// Kick in the inline
|
2014-01-05 11:38:26 +01:00
|
|
|
@media (min-width: @screen-sm-min) {
|
2013-08-12 20:07:23 +02:00
|
|
|
// Inline-block all the things for "inline"
|
2013-12-16 02:15:09 +01:00
|
|
|
.form-group {
|
2013-08-12 20:07:23 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2013-08-13 01:09:21 +02:00
|
|
|
|
|
|
|
// In navbar-form, allow folks to *not* use `.form-group`
|
|
|
|
.form-control {
|
|
|
|
display: inline-block;
|
2013-12-16 02:15:09 +01:00
|
|
|
width: auto; // Prevent labels from stacking above inputs in `.form-group`
|
2013-12-08 10:59:44 +01:00
|
|
|
vertical-align: middle;
|
2013-08-13 01:09:21 +02:00
|
|
|
}
|
2013-08-12 20:07:23 +02:00
|
|
|
|
2013-12-16 02:15:09 +01:00
|
|
|
.control-label {
|
|
|
|
margin-bottom: 0;
|
|
|
|
vertical-align: middle;
|
2013-12-15 23:52:49 +01:00
|
|
|
}
|
|
|
|
|
2013-08-12 20:07:23 +02:00
|
|
|
// Remove default margin on radios/checkboxes that were used for stacking, and
|
|
|
|
// then undo the floating of radios and checkboxes to match (which also avoids
|
|
|
|
// a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 0;
|
2013-12-08 10:59:44 +01:00
|
|
|
vertical-align: middle;
|
2013-08-12 20:07:23 +02:00
|
|
|
}
|
|
|
|
.radio input[type="radio"],
|
|
|
|
.checkbox input[type="checkbox"] {
|
|
|
|
float: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-12-16 02:15:09 +01:00
|
|
|
|
|
|
|
// Validation states
|
|
|
|
//
|
|
|
|
// Reposition the icon because it's now within a grid column and columns have
|
|
|
|
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
|
|
|
.has-feedback .form-control-feedback {
|
|
|
|
top: 0;
|
|
|
|
}
|
2013-08-03 03:48:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal forms
|
|
|
|
//
|
|
|
|
// Horizontal forms are built on grid classes and allow you to create forms with
|
|
|
|
// labels on the left and inputs on the right.
|
|
|
|
|
|
|
|
.form-horizontal {
|
2013-08-19 00:41:24 +02:00
|
|
|
|
|
|
|
// Consistent vertical alignment of labels, radios, and checkboxes
|
|
|
|
.control-label,
|
|
|
|
.radio,
|
|
|
|
.checkbox,
|
|
|
|
.radio-inline,
|
|
|
|
.checkbox-inline {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-top: (@padding-base-vertical + 1); // Default padding plus a border
|
|
|
|
}
|
2013-12-01 08:17:43 +01:00
|
|
|
// Account for padding we're adding to ensure the alignment and of help text
|
|
|
|
// and other content below items
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
2013-12-10 01:12:41 +01:00
|
|
|
min-height: (@line-height-computed + (@padding-base-vertical + 1));
|
2013-12-01 08:17:43 +01:00
|
|
|
}
|
2013-08-19 00:41:24 +02:00
|
|
|
|
|
|
|
// Make form groups behave like rows
|
2013-08-03 03:48:44 +02:00
|
|
|
.form-group {
|
|
|
|
.make-row();
|
|
|
|
}
|
|
|
|
|
2013-10-14 05:02:24 +02:00
|
|
|
.form-control-static {
|
|
|
|
padding-top: (@padding-base-vertical + 1);
|
|
|
|
}
|
|
|
|
|
2013-08-19 00:41:24 +02:00
|
|
|
// Only right align form labels here when the columns stop stacking
|
2013-09-11 09:54:38 +02:00
|
|
|
@media (min-width: @screen-sm-min) {
|
2013-08-19 00:41:24 +02:00
|
|
|
.control-label {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2013-08-03 03:48:44 +02:00
|
|
|
}
|
2013-12-16 02:15:09 +01:00
|
|
|
|
|
|
|
// Validation states
|
|
|
|
//
|
|
|
|
// Reposition the icon because it's now within a grid column and columns have
|
|
|
|
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
|
|
|
.has-feedback .form-control-feedback {
|
|
|
|
top: 0;
|
|
|
|
right: (@grid-gutter-width / 2);
|
|
|
|
}
|
2013-08-03 03:48:44 +02:00
|
|
|
}
|