2016-02-06 12:28:18 -08:00
|
|
|
// scss-lint:disable QualifyingElement
|
|
|
|
|
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%;
|
2015-04-17 16:02:41 -07:00
|
|
|
// // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
2015-06-22 18:53:04 -07:00
|
|
|
// height: $input-height;
|
2015-08-13 23:04:16 -07:00
|
|
|
padding: $input-padding-y $input-padding-x;
|
2014-12-02 14:02:35 -08:00
|
|
|
font-size: $font-size-base;
|
2016-02-07 22:46:50 -08:00
|
|
|
line-height: $input-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 {
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $input-color-placeholder;
|
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] {
|
2014-12-02 14:02:35 -08:00
|
|
|
background-color: $input-bg-disabled;
|
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 13:44:10 -08:00
|
|
|
|
2015-08-27 13:10:32 +01:00
|
|
|
&:disabled {
|
2015-03-01 13:44:10 -08:00
|
|
|
cursor: $cursor-disabled;
|
2015-01-29 16:51:21 -05: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]) {
|
2016-10-09 18:04:30 -07:00
|
|
|
$select-border-width: ($border-width * 2);
|
2016-11-28 22:33:11 +01:00
|
|
|
height: calc(#{$input-height} + #{$select-border-width});
|
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 {
|
2016-12-25 14:35:57 -08:00
|
|
|
padding-top: calc(#{$input-padding-y} - #{$input-btn-border-width} * 2);
|
|
|
|
padding-bottom: calc(#{$input-padding-y} - #{$input-btn-border-width} * 2);
|
2015-04-23 00:51:39 -07:00
|
|
|
margin-bottom: 0; // Override the `<label>` default
|
|
|
|
}
|
|
|
|
|
2016-04-08 21:05:23 -05:00
|
|
|
.col-form-label-lg {
|
2016-12-25 14:35:57 -08:00
|
|
|
padding-top: calc(#{$input-padding-y-lg} - #{$input-btn-border-width} * 2);
|
|
|
|
padding-bottom: calc(#{$input-padding-y-lg} - #{$input-btn-border-width} * 2);
|
2016-02-09 00:35:14 -08:00
|
|
|
font-size: $font-size-lg;
|
|
|
|
}
|
|
|
|
|
2016-04-08 21:05:23 -05:00
|
|
|
.col-form-label-sm {
|
2016-12-25 14:35:57 -08:00
|
|
|
padding-top: calc(#{$input-padding-y-sm} - #{$input-btn-border-width} * 2);
|
|
|
|
padding-bottom: calc(#{$input-padding-y-sm} - #{$input-btn-border-width} * 2);
|
2016-02-09 00:35:14 -08:00
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
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 {
|
2016-04-08 20:58:36 -05:00
|
|
|
padding-top: $input-padding-y;
|
|
|
|
padding-bottom: $input-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
|
|
|
|
2015-04-23 01:10:14 -07:00
|
|
|
// Static form control text
|
|
|
|
//
|
|
|
|
// Apply class to an element to make any string of text align with labels in a
|
|
|
|
// horizontal form layout.
|
|
|
|
|
|
|
|
.form-control-static {
|
2015-09-15 21:11:15 -07:00
|
|
|
padding-top: $input-padding-y;
|
|
|
|
padding-bottom: $input-padding-y;
|
2016-12-25 14:22:03 -08:00
|
|
|
margin-bottom: 0; // match inputs if this class comes on inputs with default margins
|
2016-10-09 16:16:13 -07:00
|
|
|
line-height: $input-line-height;
|
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 {
|
2015-08-13 23:04:16 -07:00
|
|
|
padding: $input-padding-y-sm $input-padding-x-sm;
|
2015-04-23 01:10:14 -07:00
|
|
|
font-size: $font-size-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]) {
|
|
|
|
height: $input-height-sm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 01:10:14 -07:00
|
|
|
.form-control-lg {
|
2015-08-13 23:04:16 -07:00
|
|
|
padding: $input-padding-y-lg $input-padding-x-lg;
|
2015-04-23 01:10:14 -07:00
|
|
|
font-size: $font-size-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]) {
|
|
|
|
height: $input-height-lg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
// 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;
|
2016-05-08 16:05:27 -07:00
|
|
|
cursor: $cursor-disabled;
|
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
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2014-06-10 20:50:58 -07:00
|
|
|
|
2016-05-08 16:05:27 -07:00
|
|
|
&:only-child {
|
|
|
|
position: static;
|
|
|
|
}
|
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;
|
|
|
|
|
2016-11-28 22:56:49 -06:00
|
|
|
.form-check-label {
|
|
|
|
vertical-align: middle;
|
2014-06-05 13:31:39 -07:00
|
|
|
}
|
2016-05-08 16:05:27 -07:00
|
|
|
|
2016-11-28 22:56:49 -06:00
|
|
|
+ .form-check-inline {
|
2016-12-26 15:42:19 -08:00
|
|
|
margin-left: $form-check-inline-margin-x;
|
2013-08-14 18:20:28 -07:00
|
|
|
}
|
|
|
|
}
|
2012-01-05 14:11:41 -08:00
|
|
|
|
2013-12-15 15:24:52 -08:00
|
|
|
|
2013-07-25 18:29:51 -07:00
|
|
|
// Form control feedback states
|
|
|
|
//
|
|
|
|
// Apply contextual and semantic states to individual form controls.
|
2011-09-29 01:40:27 -07:00
|
|
|
|
2016-02-09 01:10:05 -08:00
|
|
|
.form-control-feedback {
|
2016-12-26 15:42:19 -08:00
|
|
|
margin-top: $form-feedback-margin-top;
|
2016-02-09 01:10:05 -08:00
|
|
|
}
|
|
|
|
|
2015-08-08 14:15:09 -07:00
|
|
|
.form-control-success,
|
|
|
|
.form-control-warning,
|
2015-11-14 19:45:48 -08:00
|
|
|
.form-control-danger {
|
2015-08-13 23:04:16 -07:00
|
|
|
padding-right: ($input-padding-x * 3);
|
2015-08-23 01:00:22 -07:00
|
|
|
background-repeat: no-repeat;
|
2016-02-08 03:34:24 -08:00
|
|
|
background-position: center right ($input-height / 4);
|
|
|
|
background-size: ($input-height / 2) ($input-height / 2);
|
2013-12-15 17:15:09 -08:00
|
|
|
}
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
// Form validation states
|
2014-01-07 22:24:45 +01:00
|
|
|
.has-success {
|
2015-08-26 01:30:30 -07:00
|
|
|
@include form-control-validation($brand-success);
|
2015-08-08 14:15:09 -07:00
|
|
|
|
|
|
|
.form-control-success {
|
2016-02-06 18:05:24 -08:00
|
|
|
background-image: $form-icon-success;
|
2015-08-08 14:15:09 -07:00
|
|
|
}
|
2014-01-07 22:24:45 +01:00
|
|
|
}
|
2015-08-08 14:15:09 -07:00
|
|
|
|
2012-12-26 15:57:52 -06:00
|
|
|
.has-warning {
|
2015-08-26 01:30:30 -07:00
|
|
|
@include form-control-validation($brand-warning);
|
2015-08-08 14:15:09 -07:00
|
|
|
|
|
|
|
.form-control-warning {
|
2016-02-06 18:05:24 -08:00
|
|
|
background-image: $form-icon-warning;
|
2015-08-08 14:15:09 -07:00
|
|
|
}
|
2012-01-24 16:54:35 -08:00
|
|
|
}
|
2015-08-08 14:15:09 -07:00
|
|
|
|
2015-10-07 00:05:38 -07:00
|
|
|
.has-danger {
|
2015-08-26 01:30:30 -07:00
|
|
|
@include form-control-validation($brand-danger);
|
2015-08-08 14:15:09 -07:00
|
|
|
|
2015-11-14 19:45:48 -08:00
|
|
|
.form-control-danger {
|
2016-02-06 18:05:24 -08:00
|
|
|
background-image: $form-icon-danger;
|
2015-08-08 14:15:09 -07:00
|
|
|
}
|
2011-11-12 00:46:02 -08:00
|
|
|
}
|
2011-09-29 01:40:27 -07:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
// 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
|
|
|
|
.form-control-static {
|
|
|
|
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
|
|
|
}
|