2017-10-03 05:34:56 +02:00
|
|
|
// stylelint-disable selector-no-qualifying-type
|
2016-02-06 21:28:18 +01:00
|
|
|
|
2014-01-23 04:43:08 +01:00
|
|
|
//
|
2015-04-18 20:30:29 +02:00
|
|
|
// Textual form controls
|
2013-07-26 03:29:51 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2017-03-28 18:28:27 +02:00
|
|
|
padding: $input-btn-padding-y $input-btn-padding-x;
|
2014-12-02 23:02:35 +01:00
|
|
|
font-size: $font-size-base;
|
2017-03-28 18:28:27 +02:00
|
|
|
line-height: $input-btn-line-height;
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $input-color;
|
|
|
|
background-color: $input-bg;
|
2015-04-18 01:02:41 +02:00
|
|
|
// Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214.
|
|
|
|
background-image: none;
|
2016-02-09 07:28:11 +01:00
|
|
|
background-clip: padding-box;
|
2015-12-07 11:07:35 +01:00
|
|
|
border: $input-btn-border-width solid $input-border-color;
|
2016-10-03 03:28:37 +02:00
|
|
|
|
2015-10-28 22:33:48 +01:00
|
|
|
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
2016-10-03 03:28:37 +02: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-04 03:35:46 +02:00
|
|
|
@include box-shadow($input-box-shadow);
|
2016-12-20 05:33:17 +01:00
|
|
|
@include transition($input-transition);
|
2013-07-26 03:29:51 +02:00
|
|
|
|
2015-06-19 08:56:43 +02:00
|
|
|
// Unstyle the caret on `<select>`s in IE10+.
|
|
|
|
&::-ms-expand {
|
|
|
|
background-color: transparent;
|
2015-06-19 09:14:36 +02:00
|
|
|
border: 0;
|
2015-06-19 08:56:43 +02:00
|
|
|
}
|
|
|
|
|
2013-08-05 08:05:54 +02:00
|
|
|
// Customize the `:focus` state to imitate native WebKit styles.
|
2014-12-02 23:02:35 +01:00
|
|
|
@include form-control-focus();
|
2013-07-26 03:29:51 +02:00
|
|
|
|
2013-11-02 09:35:51 +01:00
|
|
|
// Placeholder
|
2014-07-08 11:04:48 +02: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-09 04:11:40 +02:00
|
|
|
color: $input-placeholder-color;
|
2015-04-18 01:02:41 +02:00
|
|
|
// Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
|
|
|
|
opacity: 1;
|
2014-07-08 11:04:48 +02:00
|
|
|
}
|
2013-11-02 09:35:51 +01:00
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
// Disabled and read-only inputs
|
2014-02-07 11:58:10 +01: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 22:33:58 +01:00
|
|
|
&:disabled,
|
2015-08-27 14:10:32 +02: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-09 04:11:40 +02:00
|
|
|
background-color: $input-disabled-bg;
|
2015-04-18 01:02:41 +02:00
|
|
|
// iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
|
|
|
|
opacity: 1;
|
2013-07-26 03:29:51 +02:00
|
|
|
}
|
2015-03-01 23:11:22 +01:00
|
|
|
}
|
2013-07-26 03:29:51 +02:00
|
|
|
|
2016-02-07 03:20:27 +01:00
|
|
|
select.form-control {
|
2016-02-07 17:21:26 +01:00
|
|
|
&:not([size]):not([multiple]) {
|
2017-04-22 20:56:01 +02:00
|
|
|
height: $input-height;
|
2016-02-07 03:20:27 +01:00
|
|
|
}
|
2016-04-11 22:18:48 +02: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-07 03:20:27 +01:00
|
|
|
}
|
2013-07-26 03:29:51 +02:00
|
|
|
|
2015-04-18 01:02:41 +02:00
|
|
|
// Make file inputs better match text inputs by forcing them to new lines.
|
2015-04-18 20:30:29 +02:00
|
|
|
.form-control-file,
|
|
|
|
.form-control-range {
|
2015-04-18 01:02:41 +02:00
|
|
|
display: block;
|
|
|
|
}
|
2014-02-07 11:08:32 +01:00
|
|
|
|
2015-04-23 09:51:39 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Labels
|
|
|
|
//
|
|
|
|
|
|
|
|
// For use with horizontal and inline forms, when you need the label text to
|
|
|
|
// align with the form controls.
|
2016-04-09 04:05:23 +02: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 09:51:39 +02: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 09:51:39 +02:00
|
|
|
}
|
|
|
|
|
2016-04-09 04:05:23 +02: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 09:35:14 +01:00
|
|
|
font-size: $font-size-lg;
|
2017-10-02 19:15:32 +02:00
|
|
|
line-height: $input-btn-line-height-lg;
|
2016-02-09 09:35:14 +01:00
|
|
|
}
|
|
|
|
|
2016-04-09 04:05:23 +02: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 09:35:14 +01:00
|
|
|
font-size: $font-size-sm;
|
2017-10-02 19:15:32 +02:00
|
|
|
line-height: $input-btn-line-height-sm;
|
2016-02-09 09:35:14 +01:00
|
|
|
}
|
|
|
|
|
2015-04-23 09:51:39 +02:00
|
|
|
|
2016-02-19 16:35:00 +01: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-09 04:05:23 +02:00
|
|
|
.col-form-legend {
|
2017-03-28 18:28:27 +02:00
|
|
|
padding-top: $input-btn-padding-y;
|
|
|
|
padding-bottom: $input-btn-padding-y;
|
2016-02-19 16:35:00 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
}
|
|
|
|
|
2015-04-23 09:51:39 +02:00
|
|
|
|
2017-04-28 01:35:55 +02:00
|
|
|
// Readonly controls as plain text
|
2015-04-23 10:10:14 +02:00
|
|
|
//
|
2017-04-28 01:35:55 +02: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 10:10:14 +02:00
|
|
|
|
2017-04-28 01:35:55 +02:00
|
|
|
.form-control-plaintext {
|
2017-03-28 18:28:27 +02:00
|
|
|
padding-top: $input-btn-padding-y;
|
|
|
|
padding-bottom: $input-btn-padding-y;
|
2016-12-25 23:22:03 +01:00
|
|
|
margin-bottom: 0; // match inputs if this class comes on inputs with default margins
|
2017-03-28 18:28:27 +02:00
|
|
|
line-height: $input-btn-line-height;
|
2017-09-06 22:02:57 +02:00
|
|
|
background-color: transparent;
|
2016-10-10 01:17:48 +02:00
|
|
|
border: solid transparent;
|
2016-12-27 01:13:23 +01:00
|
|
|
border-width: $input-btn-border-width 0;
|
2015-04-23 10:10:14 +02: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 18:28:27 +02:00
|
|
|
padding: $input-btn-padding-y-sm $input-btn-padding-x-sm;
|
2015-04-23 10:10:14 +02:00
|
|
|
font-size: $font-size-sm;
|
2017-03-28 18:28:27 +02:00
|
|
|
line-height: $input-btn-line-height-sm;
|
2015-08-20 21:53:41 +02:00
|
|
|
@include border-radius($input-border-radius-sm);
|
2015-04-23 10:10:14 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 02:31:02 +02:00
|
|
|
select.form-control-sm {
|
|
|
|
&:not([size]):not([multiple]) {
|
2017-04-22 20:56:01 +02:00
|
|
|
height: $input-height-sm;
|
2016-05-09 02:31:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 10:10:14 +02:00
|
|
|
.form-control-lg {
|
2017-03-28 18:28:27 +02:00
|
|
|
padding: $input-btn-padding-y-lg $input-btn-padding-x-lg;
|
2015-04-23 10:10:14 +02:00
|
|
|
font-size: $font-size-lg;
|
2017-03-28 18:28:27 +02:00
|
|
|
line-height: $input-btn-line-height-lg;
|
2015-08-20 21:53:41 +02:00
|
|
|
@include border-radius($input-border-radius-lg);
|
2015-04-23 10:10:14 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 02:31:02 +02:00
|
|
|
select.form-control-lg {
|
|
|
|
&:not([size]):not([multiple]) {
|
2017-04-22 20:56:01 +02:00
|
|
|
height: $input-height-lg;
|
2016-05-09 02:31:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 10:10:14 +02:00
|
|
|
|
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 {
|
2015-03-01 23:11:22 +01:00
|
|
|
margin-bottom: $form-group-margin-bottom;
|
2013-07-26 03:29:51 +02:00
|
|
|
}
|
|
|
|
|
2016-05-10 17:24:38 +02:00
|
|
|
.form-text {
|
|
|
|
display: block;
|
2016-12-27 00:42:19 +01:00
|
|
|
margin-top: $form-text-margin-top;
|
2016-05-10 17:24:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 03:29:51 +02:00
|
|
|
|
2017-06-14 07:11:29 +02: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-26 03:29:51 +02:00
|
|
|
// Checkboxes and radios
|
|
|
|
//
|
|
|
|
// Indent the labels to position radios/checkboxes as hanging controls.
|
2012-01-05 23:11:41 +01:00
|
|
|
|
2016-05-09 01:05:27 +02:00
|
|
|
.form-check {
|
2014-06-11 05:50:58 +02:00
|
|
|
position: relative;
|
2012-11-30 22:35:20 +01:00
|
|
|
display: block;
|
2016-12-27 00:42:19 +01:00
|
|
|
margin-bottom: $form-check-margin-bottom;
|
2015-04-29 21:01:57 +02:00
|
|
|
|
2016-05-09 01:05:27 +02:00
|
|
|
&.disabled {
|
|
|
|
.form-check-label {
|
2016-05-09 20:00:36 +02:00
|
|
|
color: $text-muted;
|
2015-04-29 21:01:57 +02:00
|
|
|
}
|
2013-01-16 21:20:34 +01:00
|
|
|
}
|
2012-01-05 23:11:41 +01:00
|
|
|
}
|
2016-05-09 01:05:27 +02:00
|
|
|
|
|
|
|
.form-check-label {
|
2016-12-27 00:42:19 +01:00
|
|
|
padding-left: $form-check-input-gutter;
|
2016-05-09 01:05:27 +02:00
|
|
|
margin-bottom: 0; // Override default `<label>` bottom margin
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-check-input {
|
2014-06-11 05:50:58 +02:00
|
|
|
position: absolute;
|
2016-12-27 00:42:19 +01:00
|
|
|
margin-top: $form-check-input-margin-y;
|
|
|
|
margin-left: -$form-check-input-gutter;
|
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
|
2016-05-09 01:05:27 +02:00
|
|
|
.form-check-inline {
|
2012-01-07 08:59:22 +01:00
|
|
|
display: inline-block;
|
2017-08-13 23:58:47 +02:00
|
|
|
margin-right: $form-check-inline-margin-x;
|
2012-01-07 08:59:22 +01:00
|
|
|
|
2016-11-29 05:56:49 +01:00
|
|
|
.form-check-label {
|
|
|
|
vertical-align: middle;
|
2014-06-05 22:31:39 +02:00
|
|
|
}
|
2013-08-15 03:20:28 +02:00
|
|
|
}
|
2012-01-05 23:11:41 +01:00
|
|
|
|
2013-12-16 00:24:52 +01:00
|
|
|
|
2017-06-11 01:30:26 +02:00
|
|
|
// Form validation
|
2013-07-26 03:29:51 +02:00
|
|
|
//
|
2017-06-11 01:30:26 +02: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 10:40:27 +02:00
|
|
|
|
2017-06-11 01:30:26 +02:00
|
|
|
@include form-validation-state("valid", $form-feedback-valid-color);
|
|
|
|
@include form-validation-state("invalid", $form-feedback-invalid-color);
|
2014-07-03 07:54:56 +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-03 03:48:44 +02:00
|
|
|
|
|
|
|
.form-inline {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2016-12-29 04:08:33 +01: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-22 05:26:17 +01: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-27 01:55:18 +01:00
|
|
|
}
|
2013-08-05 20:47:12 +02:00
|
|
|
|
2013-08-12 20:07:23 +02:00
|
|
|
// Kick in the inline
|
2014-12-29 22:40:19 +01:00
|
|
|
@include media-breakpoint-up(sm) {
|
2016-11-27 01:55:18 +01:00
|
|
|
label {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-11-27 01:55:18 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
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 {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
flex-flow: row wrap;
|
2016-12-25 23:18:45 +01:00
|
|
|
align-items: center;
|
2013-08-12 20:07:23 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-08-13 01:09:21 +02:00
|
|
|
|
2015-12-08 08:52:10 +01:00
|
|
|
// Allow folks to *not* use `.form-group`
|
2013-08-13 01:09:21 +02:00
|
|
|
.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
|
|
|
}
|
2014-03-10 05:25:51 +01:00
|
|
|
|
2014-07-24 05:54:07 +02:00
|
|
|
// Make static controls behave like regular ones
|
2017-06-26 16:59:20 +02:00
|
|
|
.form-control-plaintext {
|
2014-07-24 05:54:07 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-03-10 05:25:51 +01:00
|
|
|
.input-group {
|
2016-10-10 01:00:30 +02:00
|
|
|
width: auto;
|
2014-02-07 11:58:10 +01:00
|
|
|
}
|
2013-08-12 20:07:23 +02:00
|
|
|
|
2015-08-25 09:12:18 +02:00
|
|
|
.form-control-label {
|
2013-12-16 02:15:09 +01:00
|
|
|
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
|
2014-12-22 23:57:40 +01:00
|
|
|
// then undo the floating of radios and checkboxes to match.
|
2016-05-09 08:14:48 +02:00
|
|
|
.form-check {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-11-27 01:55:18 +01:00
|
|
|
width: auto;
|
2013-08-12 20:07:23 +02:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2016-05-09 08:14:48 +02:00
|
|
|
.form-check-label {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
.form-check-input {
|
2014-06-26 01:56:36 +02:00
|
|
|
position: relative;
|
2016-12-27 01:11:50 +01:00
|
|
|
margin-top: 0;
|
|
|
|
margin-right: $form-check-input-margin-x;
|
2013-08-12 20:07:23 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-12-16 02:15:09 +01:00
|
|
|
|
2016-11-27 01:55:18 +01:00
|
|
|
// Custom form controls
|
|
|
|
.custom-control {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-11-27 01:55:18 +01:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
.custom-control-indicator {
|
|
|
|
position: static;
|
|
|
|
display: inline-block;
|
2016-12-27 01:11:50 +01:00
|
|
|
margin-right: $form-check-input-margin-x; // Flexbox alignment means we lose our HTML space here, so we compensate.
|
2016-11-27 01:55:18 +01:00
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
|
2014-07-03 07:54:56 +02:00
|
|
|
// Re-override the feedback icon.
|
2013-12-16 02:15:09 +01:00
|
|
|
.has-feedback .form-control-feedback {
|
|
|
|
top: 0;
|
|
|
|
}
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
2013-08-03 03:48:44 +02:00
|
|
|
}
|