2017-10-03 06:34:56 +03:00
|
|
|
// stylelint-disable selector-no-qualifying-type
|
2016-02-06 12:28:18 -08:00
|
|
|
|
2014-01-22 21:43:08 -06:00
|
|
|
//
|
2015-04-18 11:30:29 -07:00
|
|
|
// Textual form controls
|
2013-07-25 18:29:51 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2017-03-28 09:28:27 -07:00
|
|
|
padding: $input-btn-padding-y $input-btn-padding-x;
|
2014-12-02 14:02:35 -08:00
|
|
|
font-size: $font-size-base;
|
2017-03-28 09:28:27 -07:00
|
|
|
line-height: $input-btn-line-height;
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $input-color;
|
|
|
|
background-color: $input-bg;
|
2015-04-17 16:02:41 -07:00
|
|
|
// Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214.
|
|
|
|
background-image: none;
|
2016-02-08 22:28:11 -08:00
|
|
|
background-clip: padding-box;
|
2015-12-07 02:07:35 -08:00
|
|
|
border: $input-btn-border-width solid $input-border-color;
|
2016-10-02 18:28:37 -07:00
|
|
|
|
2015-10-28 14:33:48 -07:00
|
|
|
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
2016-10-02 18:28:37 -07:00
|
|
|
@if $enable-rounded {
|
|
|
|
// Manually use the if/else instead of the mixin to account for iOS override
|
|
|
|
border-radius: $input-border-radius;
|
|
|
|
} @else {
|
|
|
|
// Otherwise undo the iOS default
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2015-07-03 18:35:46 -07:00
|
|
|
@include box-shadow($input-box-shadow);
|
2016-12-20 05:33:17 +01:00
|
|
|
@include transition($input-transition);
|
2013-07-25 18:29:51 -07:00
|
|
|
|
2015-06-18 23:56:43 -07:00
|
|
|
// Unstyle the caret on `<select>`s in IE10+.
|
|
|
|
&::-ms-expand {
|
|
|
|
background-color: transparent;
|
2015-06-19 00:14:36 -07:00
|
|
|
border: 0;
|
2015-06-18 23:56:43 -07:00
|
|
|
}
|
|
|
|
|
2013-08-04 23:05:54 -07:00
|
|
|
// Customize the `:focus` state to imitate native WebKit styles.
|
2014-12-02 14:02:35 -08:00
|
|
|
@include form-control-focus();
|
2013-07-25 18:29:51 -07:00
|
|
|
|
2013-11-02 09:35:51 +01:00
|
|
|
// Placeholder
|
2014-07-08 02:04:48 -07:00
|
|
|
&::placeholder {
|
(#22414) Rename for consistency `$input-bg-disabled`, `$input-bg-focus`, `$input-border-color-focus`, `$input-box-shadow-focus`, `$input-color-focus`, `$input-color-placeholder` to `$input-disabled-bg`, `$input-focus-bg`, `$input-focus-border-color`, `$input-focus-box-shadow`, `$input-focus-color`, `$input-placeholder-color`, respectively
2017-06-08 19:11:40 -07:00
|
|
|
color: $input-placeholder-color;
|
2015-04-17 16:02:41 -07:00
|
|
|
// Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
|
|
|
|
opacity: 1;
|
2014-07-08 02:04:48 -07:00
|
|
|
}
|
2013-11-02 09:35:51 +01:00
|
|
|
|
2013-07-25 18:29:51 -07:00
|
|
|
// Disabled and read-only inputs
|
2014-02-07 02:58:10 -08:00
|
|
|
//
|
|
|
|
// 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.
|
2014-12-22 13:33:58 -08:00
|
|
|
&:disabled,
|
2015-08-27 13:10:32 +01:00
|
|
|
&[readonly] {
|
(#22414) Rename for consistency `$input-bg-disabled`, `$input-bg-focus`, `$input-border-color-focus`, `$input-box-shadow-focus`, `$input-color-focus`, `$input-color-placeholder` to `$input-disabled-bg`, `$input-focus-bg`, `$input-focus-border-color`, `$input-focus-box-shadow`, `$input-focus-color`, `$input-placeholder-color`, respectively
2017-06-08 19:11:40 -07:00
|
|
|
background-color: $input-disabled-bg;
|
2015-04-17 16:02:41 -07:00
|
|
|
// iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
|
|
|
|
opacity: 1;
|
2013-07-25 18:29:51 -07:00
|
|
|
}
|
2015-03-01 14:11:22 -08:00
|
|
|
}
|
2013-07-25 18:29:51 -07:00
|
|
|
|
2016-02-06 18:20:27 -08:00
|
|
|
select.form-control {
|
2016-02-07 19:21:26 +03:00
|
|
|
&:not([size]):not([multiple]) {
|
2017-04-22 11:56:01 -07:00
|
|
|
height: $input-height;
|
2016-02-06 18:20:27 -08:00
|
|
|
}
|
2016-04-11 21:18:48 +01:00
|
|
|
|
|
|
|
&:focus::-ms-value {
|
|
|
|
// Suppress the nested default white text on blue background highlight given to
|
|
|
|
// the selected option text when the (still closed) <select> receives focus
|
|
|
|
// in IE and (under certain conditions) Edge, as it looks bad and cannot be made to
|
|
|
|
// match the appearance of the native widget.
|
|
|
|
// See https://github.com/twbs/bootstrap/issues/19398.
|
|
|
|
color: $input-color;
|
|
|
|
background-color: $input-bg;
|
|
|
|
}
|
2016-02-06 18:20:27 -08:00
|
|
|
}
|
2013-07-25 18:29:51 -07:00
|
|
|
|
2015-04-17 16:02:41 -07:00
|
|
|
// Make file inputs better match text inputs by forcing them to new lines.
|
2015-04-18 11:30:29 -07:00
|
|
|
.form-control-file,
|
|
|
|
.form-control-range {
|
2015-04-17 16:02:41 -07:00
|
|
|
display: block;
|
|
|
|
}
|
2014-02-07 02:08:32 -08:00
|
|
|
|
2015-04-23 00:51:39 -07:00
|
|
|
|
|
|
|
//
|
|
|
|
// Labels
|
|
|
|
//
|
|
|
|
|
|
|
|
// For use with horizontal and inline forms, when you need the label text to
|
|
|
|
// align with the form controls.
|
2016-04-08 21:05:23 -05:00
|
|
|
.col-form-label {
|
2017-10-02 19:15:32 +02:00
|
|
|
padding-top: calc(#{$input-btn-padding-y} + #{$input-btn-border-width});
|
|
|
|
padding-bottom: calc(#{$input-btn-padding-y} + #{$input-btn-border-width});
|
2015-04-23 00:51:39 -07:00
|
|
|
margin-bottom: 0; // Override the `<label>` default
|
2017-10-02 19:15:32 +02:00
|
|
|
line-height: $input-btn-line-height;
|
2015-04-23 00:51:39 -07:00
|
|
|
}
|
|
|
|
|
2016-04-08 21:05:23 -05:00
|
|
|
.col-form-label-lg {
|
2017-10-02 19:15:32 +02:00
|
|
|
padding-top: calc(#{$input-btn-padding-y-lg} + #{$input-btn-border-width});
|
|
|
|
padding-bottom: calc(#{$input-btn-padding-y-lg} + #{$input-btn-border-width});
|
2016-02-09 00:35:14 -08:00
|
|
|
font-size: $font-size-lg;
|
2017-10-02 19:15:32 +02:00
|
|
|
line-height: $input-btn-line-height-lg;
|
2016-02-09 00:35:14 -08:00
|
|
|
}
|
|
|
|
|
2016-04-08 21:05:23 -05:00
|
|
|
.col-form-label-sm {
|
2017-10-02 19:15:32 +02:00
|
|
|
padding-top: calc(#{$input-btn-padding-y-sm} + #{$input-btn-border-width});
|
|
|
|
padding-bottom: calc(#{$input-btn-padding-y-sm} + #{$input-btn-border-width});
|
2016-02-09 00:35:14 -08:00
|
|
|
font-size: $font-size-sm;
|
2017-10-02 19:15:32 +02:00
|
|
|
line-height: $input-btn-line-height-sm;
|
2016-02-09 00:35:14 -08:00
|
|
|
}
|
|
|
|
|
2015-04-23 00:51:39 -07:00
|
|
|
|
2016-02-19 15:35:00 +00:00
|
|
|
//
|
|
|
|
// Legends
|
|
|
|
//
|
|
|
|
|
|
|
|
// For use with horizontal and inline forms, when you need the legend text to
|
|
|
|
// be the same size as regular labels, and to align with the form controls.
|
2016-04-08 21:05:23 -05:00
|
|
|
.col-form-legend {
|
2017-03-28 09:28:27 -07:00
|
|
|
padding-top: $input-btn-padding-y;
|
|
|
|
padding-bottom: $input-btn-padding-y;
|
2016-02-19 15:35:00 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
}
|
|
|
|
|
2015-04-23 00:51:39 -07:00
|
|
|
|
2017-04-28 00:35:55 +01:00
|
|
|
// Readonly controls as plain text
|
2015-04-23 01:10:14 -07:00
|
|
|
//
|
2017-04-28 00:35:55 +01:00
|
|
|
// Apply class to a readonly input to make it appear like regular plain
|
|
|
|
// text (without any border, background color, focus indicator)
|
2015-04-23 01:10:14 -07:00
|
|
|
|
2017-04-28 00:35:55 +01:00
|
|
|
.form-control-plaintext {
|
2017-03-28 09:28:27 -07:00
|
|
|
padding-top: $input-btn-padding-y;
|
|
|
|
padding-bottom: $input-btn-padding-y;
|
2016-12-25 14:22:03 -08:00
|
|
|
margin-bottom: 0; // match inputs if this class comes on inputs with default margins
|
2017-03-28 09:28:27 -07:00
|
|
|
line-height: $input-btn-line-height;
|
2017-09-06 17:02:57 -03:00
|
|
|
background-color: transparent;
|
2016-10-09 16:17:48 -07:00
|
|
|
border: solid transparent;
|
2016-12-26 16:13:23 -08:00
|
|
|
border-width: $input-btn-border-width 0;
|
2015-04-23 01:10:14 -07:00
|
|
|
|
|
|
|
&.form-control-sm,
|
|
|
|
&.form-control-lg {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Form control sizing
|
|
|
|
//
|
|
|
|
// Build on `.form-control` with modifier classes to decrease or increase the
|
|
|
|
// height and font-size of form controls.
|
|
|
|
//
|
|
|
|
// The `.form-group-* form-control` variations are sadly duplicated to avoid the
|
|
|
|
// issue documented in https://github.com/twbs/bootstrap/issues/15074.
|
|
|
|
|
|
|
|
.form-control-sm {
|
2017-03-28 09:28:27 -07:00
|
|
|
padding: $input-btn-padding-y-sm $input-btn-padding-x-sm;
|
2015-04-23 01:10:14 -07:00
|
|
|
font-size: $font-size-sm;
|
2017-03-28 09:28:27 -07:00
|
|
|
line-height: $input-btn-line-height-sm;
|
2015-08-20 15:53:41 -04:00
|
|
|
@include border-radius($input-border-radius-sm);
|
2015-04-23 01:10:14 -07:00
|
|
|
}
|
|
|
|
|
2016-05-08 17:31:02 -07:00
|
|
|
select.form-control-sm {
|
|
|
|
&:not([size]):not([multiple]) {
|
2017-04-22 11:56:01 -07:00
|
|
|
height: $input-height-sm;
|
2016-05-08 17:31:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 01:10:14 -07:00
|
|
|
.form-control-lg {
|
2017-03-28 09:28:27 -07:00
|
|
|
padding: $input-btn-padding-y-lg $input-btn-padding-x-lg;
|
2015-04-23 01:10:14 -07:00
|
|
|
font-size: $font-size-lg;
|
2017-03-28 09:28:27 -07:00
|
|
|
line-height: $input-btn-line-height-lg;
|
2015-08-20 15:53:41 -04:00
|
|
|
@include border-radius($input-border-radius-lg);
|
2015-04-23 01:10:14 -07:00
|
|
|
}
|
|
|
|
|
2016-05-08 17:31:02 -07:00
|
|
|
select.form-control-lg {
|
|
|
|
&:not([size]):not([multiple]) {
|
2017-04-22 11:56:01 -07:00
|
|
|
height: $input-height-lg;
|
2016-05-08 17:31:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 01:10:14 -07:00
|
|
|
|
2013-07-25 18:29:51 -07:00
|
|
|
// Form groups
|
|
|
|
//
|
|
|
|
// Designed to help with the organization and spacing of vertical forms. For
|
|
|
|
// horizontal forms, use the predefined grid classes.
|
|
|
|
|
|
|
|
.form-group {
|
2015-03-01 14:11:22 -08:00
|
|
|
margin-bottom: $form-group-margin-bottom;
|
2013-07-25 18:29:51 -07:00
|
|
|
}
|
|
|
|
|
2016-05-10 08:24:38 -07:00
|
|
|
.form-text {
|
|
|
|
display: block;
|
2016-12-26 15:42:19 -08:00
|
|
|
margin-top: $form-text-margin-top;
|
2016-05-10 08:24:38 -07:00
|
|
|
}
|
|
|
|
|
2013-07-25 18:29:51 -07:00
|
|
|
|
2017-06-13 22:11:29 -07:00
|
|
|
// Form grid
|
|
|
|
//
|
|
|
|
// Special replacement for our grid system's `.row` for tighter form layouts.
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-right: -5px;
|
|
|
|
margin-left: -5px;
|
|
|
|
|
|
|
|
> .col,
|
|
|
|
> [class*="col-"] {
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-25 18:29:51 -07:00
|
|
|
// Checkboxes and radios
|
|
|
|
//
|
|
|
|
// Indent the labels to position radios/checkboxes as hanging controls.
|
2012-01-05 14:11:41 -08:00
|
|
|
|
2016-05-08 16:05:27 -07:00
|
|
|
.form-check {
|
2014-06-10 20:50:58 -07:00
|
|
|
position: relative;
|
2012-11-30 13:35:20 -08:00
|
|
|
display: block;
|
2016-12-26 15:42:19 -08:00
|
|
|
margin-bottom: $form-check-margin-bottom;
|
2015-04-29 12:01:57 -07:00
|
|
|
|
2016-05-08 16:05:27 -07:00
|
|
|
&.disabled {
|
|
|
|
.form-check-label {
|
2016-05-09 11:00:36 -07:00
|
|
|
color: $text-muted;
|
2015-04-29 12:01:57 -07:00
|
|
|
}
|
2013-01-16 12:20:34 -08:00
|
|
|
}
|
2012-01-05 14:11:41 -08:00
|
|
|
}
|
2016-05-08 16:05:27 -07:00
|
|
|
|
|
|
|
.form-check-label {
|
2016-12-26 15:42:19 -08:00
|
|
|
padding-left: $form-check-input-gutter;
|
2016-05-08 16:05:27 -07:00
|
|
|
margin-bottom: 0; // Override default `<label>` bottom margin
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-check-input {
|
2014-06-10 20:50:58 -07:00
|
|
|
position: absolute;
|
2016-12-26 15:42:19 -08:00
|
|
|
margin-top: $form-check-input-margin-y;
|
|
|
|
margin-left: -$form-check-input-gutter;
|
2013-01-16 12:20:34 -08:00
|
|
|
}
|
2012-01-05 14:11:41 -08:00
|
|
|
|
2012-01-06 23:59:22 -08:00
|
|
|
// Radios and checkboxes on same line
|
2016-05-08 16:05:27 -07:00
|
|
|
.form-check-inline {
|
2012-01-06 23:59:22 -08:00
|
|
|
display: inline-block;
|
2017-08-13 23:58:47 +02:00
|
|
|
margin-right: $form-check-inline-margin-x;
|
2012-01-06 23:59:22 -08:00
|
|
|
|
2016-11-28 22:56:49 -06:00
|
|
|
.form-check-label {
|
|
|
|
vertical-align: middle;
|
2014-06-05 13:31:39 -07:00
|
|
|
}
|
2013-08-14 18:20:28 -07:00
|
|
|
}
|
2012-01-05 14:11:41 -08:00
|
|
|
|
2013-12-15 15:24:52 -08:00
|
|
|
|
2017-06-10 16:30:26 -07:00
|
|
|
// Form validation
|
2013-07-25 18:29:51 -07:00
|
|
|
//
|
2017-06-10 16:30:26 -07:00
|
|
|
// Provide feedback to users when form field values are valid or invalid. Works
|
|
|
|
// primarily for client-side validation via scoped `:invalid` and `:valid`
|
|
|
|
// pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for
|
|
|
|
// server side validation.
|
2011-09-29 01:40:27 -07:00
|
|
|
|
2017-06-10 16:30:26 -07:00
|
|
|
@include form-validation-state("valid", $form-feedback-valid-color);
|
|
|
|
@include form-validation-state("invalid", $form-feedback-invalid-color);
|
2014-07-02 22:54:56 -07:00
|
|
|
|
2013-08-02 18:48:44 -07:00
|
|
|
// Inline forms
|
|
|
|
//
|
2013-08-12 11:07:23 -07: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-02 18:48:44 -07:00
|
|
|
|
|
|
|
.form-inline {
|
2016-12-21 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2016-12-28 19:08:33 -08:00
|
|
|
align-items: center; // Prevent shorter elements from growing to same height as others (e.g., small buttons growing to normal sized button height)
|
2016-12-21 20:26:17 -08:00
|
|
|
|
|
|
|
// Because we use flex, the initial sizing of checkboxes is collapsed and
|
|
|
|
// doesn't occupy the full-width (which is what we want for xs grid tier),
|
|
|
|
// so we force that here.
|
|
|
|
.form-check {
|
|
|
|
width: 100%;
|
2016-11-26 16:55:18 -08:00
|
|
|
}
|
2013-08-05 11:47:12 -07:00
|
|
|
|
2013-08-12 11:07:23 -07:00
|
|
|
// Kick in the inline
|
2014-12-29 13:40:19 -08:00
|
|
|
@include media-breakpoint-up(sm) {
|
2016-11-26 16:55:18 -08:00
|
|
|
label {
|
2016-12-21 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-11-26 16:55:18 -08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2013-08-12 11:07:23 -07:00
|
|
|
// Inline-block all the things for "inline"
|
2013-12-15 17:15:09 -08:00
|
|
|
.form-group {
|
2016-12-21 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
flex-flow: row wrap;
|
2016-12-25 14:18:45 -08:00
|
|
|
align-items: center;
|
2013-08-12 11:07:23 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-08-12 16:09:21 -07:00
|
|
|
|
2015-12-07 23:52:10 -08:00
|
|
|
// Allow folks to *not* use `.form-group`
|
2013-08-12 16:09:21 -07:00
|
|
|
.form-control {
|
|
|
|
display: inline-block;
|
2013-12-15 17:15:09 -08:00
|
|
|
width: auto; // Prevent labels from stacking above inputs in `.form-group`
|
2013-12-08 01:59:44 -08:00
|
|
|
vertical-align: middle;
|
2013-08-12 16:09:21 -07:00
|
|
|
}
|
2014-03-09 21:25:51 -07:00
|
|
|
|
2014-07-23 20:54:07 -07:00
|
|
|
// Make static controls behave like regular ones
|
2017-06-26 07:59:20 -07:00
|
|
|
.form-control-plaintext {
|
2014-07-23 20:54:07 -07:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-03-09 21:25:51 -07:00
|
|
|
.input-group {
|
2016-10-09 16:00:30 -07:00
|
|
|
width: auto;
|
2014-02-07 02:58:10 -08:00
|
|
|
}
|
2013-08-12 11:07:23 -07:00
|
|
|
|
2015-08-25 17:12:18 +10:00
|
|
|
.form-control-label {
|
2013-12-15 17:15:09 -08:00
|
|
|
margin-bottom: 0;
|
|
|
|
vertical-align: middle;
|
2013-12-15 14:52:49 -08:00
|
|
|
}
|
|
|
|
|
2013-08-12 11:07:23 -07:00
|
|
|
// Remove default margin on radios/checkboxes that were used for stacking, and
|
2014-12-22 14:57:40 -08:00
|
|
|
// then undo the floating of radios and checkboxes to match.
|
2016-05-08 23:14:48 -07:00
|
|
|
.form-check {
|
2016-12-21 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-11-26 16:55:18 -08:00
|
|
|
width: auto;
|
2013-08-12 11:07:23 -07:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2016-05-08 23:14:48 -07:00
|
|
|
.form-check-label {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
.form-check-input {
|
2014-06-25 16:56:36 -07:00
|
|
|
position: relative;
|
2016-12-26 16:11:50 -08:00
|
|
|
margin-top: 0;
|
|
|
|
margin-right: $form-check-input-margin-x;
|
2013-08-12 11:07:23 -07:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-12-15 17:15:09 -08:00
|
|
|
|
2016-11-26 16:55:18 -08:00
|
|
|
// Custom form controls
|
|
|
|
.custom-control {
|
2016-12-21 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-11-26 16:55:18 -08:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
.custom-control-indicator {
|
|
|
|
position: static;
|
|
|
|
display: inline-block;
|
2016-12-26 16:11:50 -08:00
|
|
|
margin-right: $form-check-input-margin-x; // Flexbox alignment means we lose our HTML space here, so we compensate.
|
2016-11-26 16:55:18 -08:00
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
|
2014-07-02 22:54:56 -07:00
|
|
|
// Re-override the feedback icon.
|
2013-12-15 17:15:09 -08:00
|
|
|
.has-feedback .form-control-feedback {
|
|
|
|
top: 0;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
2013-08-02 18:48:44 -07:00
|
|
|
}
|