2016-02-06 15:28:18 -05:00
|
|
|
// scss-lint:disable QualifyingElement
|
|
|
|
|
2014-01-22 22:43:08 -05:00
|
|
|
//
|
2015-04-18 14:30:29 -04:00
|
|
|
// Textual form controls
|
2013-07-25 21:29:51 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2015-04-17 19:02:41 -04:00
|
|
|
// // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
2015-06-22 21:53:04 -04:00
|
|
|
// height: $input-height;
|
2015-08-14 02:04:16 -04:00
|
|
|
padding: $input-padding-y $input-padding-x;
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: $font-size-base;
|
2016-02-08 01:46:50 -05:00
|
|
|
line-height: $input-line-height;
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $input-color;
|
|
|
|
background-color: $input-bg;
|
2015-04-17 19:02:41 -04:00
|
|
|
// Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214.
|
|
|
|
background-image: none;
|
2016-02-09 01:28:11 -05:00
|
|
|
background-clip: padding-box;
|
2015-12-07 05:07:35 -05:00
|
|
|
border: $input-btn-border-width solid $input-border-color;
|
2015-10-28 17:33:48 -04:00
|
|
|
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
2015-04-17 19:02:41 -04:00
|
|
|
@include border-radius($input-border-radius);
|
2015-07-03 21:35:46 -04:00
|
|
|
@include box-shadow($input-box-shadow);
|
2015-07-03 21:35:53 -04:00
|
|
|
@include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
|
2013-07-25 21:29:51 -04:00
|
|
|
|
2015-06-19 02:56:43 -04:00
|
|
|
// Unstyle the caret on `<select>`s in IE10+.
|
|
|
|
&::-ms-expand {
|
|
|
|
background-color: transparent;
|
2015-06-19 03:14:36 -04:00
|
|
|
border: 0;
|
2015-06-19 02:56:43 -04:00
|
|
|
}
|
|
|
|
|
2013-08-05 02:05:54 -04:00
|
|
|
// Customize the `:focus` state to imitate native WebKit styles.
|
2014-12-02 17:02:35 -05:00
|
|
|
@include form-control-focus();
|
2013-07-25 21:29:51 -04:00
|
|
|
|
2013-11-02 04:35:51 -04:00
|
|
|
// Placeholder
|
2014-07-08 05:04:48 -04:00
|
|
|
&::placeholder {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $input-color-placeholder;
|
2015-04-17 19:02:41 -04:00
|
|
|
// Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
|
|
|
|
opacity: 1;
|
2014-07-08 05:04:48 -04:00
|
|
|
}
|
2013-11-02 04:35:51 -04:00
|
|
|
|
2013-07-25 21:29:51 -04:00
|
|
|
// Disabled and read-only inputs
|
2014-02-07 05:58:10 -05: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 16:33:58 -05:00
|
|
|
&:disabled,
|
2015-08-27 08:10:32 -04:00
|
|
|
&[readonly] {
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $input-bg-disabled;
|
2015-04-17 19:02:41 -04:00
|
|
|
// iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
|
|
|
|
opacity: 1;
|
2013-07-25 21:29:51 -04:00
|
|
|
}
|
2015-03-01 16:44:10 -05:00
|
|
|
|
2015-08-27 08:10:32 -04:00
|
|
|
&:disabled {
|
2015-03-01 16:44:10 -05:00
|
|
|
cursor: $cursor-disabled;
|
2015-01-29 16:51:21 -05:00
|
|
|
}
|
2015-03-01 17:11:22 -05:00
|
|
|
}
|
2013-07-25 21:29:51 -04:00
|
|
|
|
2016-02-06 21:20:27 -05:00
|
|
|
select.form-control {
|
2016-02-07 11:21:26 -05:00
|
|
|
&:not([size]):not([multiple]) {
|
2016-02-06 21:20:27 -05:00
|
|
|
height: $input-height;
|
|
|
|
}
|
2016-04-11 16:18:48 -04: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 21:20:27 -05:00
|
|
|
}
|
2013-07-25 21:29:51 -04:00
|
|
|
|
2015-04-17 19:02:41 -04:00
|
|
|
// Make file inputs better match text inputs by forcing them to new lines.
|
2015-04-18 14:30:29 -04:00
|
|
|
.form-control-file,
|
|
|
|
.form-control-range {
|
2015-04-17 19:02:41 -04:00
|
|
|
display: block;
|
|
|
|
}
|
2014-02-07 05:08:32 -05:00
|
|
|
|
2015-04-23 03:51:39 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Labels
|
|
|
|
//
|
|
|
|
|
|
|
|
// For use with horizontal and inline forms, when you need the label text to
|
|
|
|
// align with the form controls.
|
2016-04-08 22:05:23 -04:00
|
|
|
.col-form-label {
|
2016-02-09 03:34:41 -05:00
|
|
|
padding-top: $input-padding-y;
|
|
|
|
padding-bottom: $input-padding-y;
|
2015-04-23 03:51:39 -04:00
|
|
|
margin-bottom: 0; // Override the `<label>` default
|
|
|
|
}
|
|
|
|
|
2016-04-08 22:05:23 -04:00
|
|
|
.col-form-label-lg {
|
2016-02-09 03:35:14 -05:00
|
|
|
padding-top: $input-padding-y-lg;
|
|
|
|
padding-bottom: $input-padding-y-lg;
|
|
|
|
font-size: $font-size-lg;
|
|
|
|
}
|
|
|
|
|
2016-04-08 22:05:23 -04:00
|
|
|
.col-form-label-sm {
|
2016-02-09 03:35:14 -05:00
|
|
|
padding-top: $input-padding-y-sm;
|
|
|
|
padding-bottom: $input-padding-y-sm;
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
2015-04-23 03:51:39 -04:00
|
|
|
|
2016-02-19 10:35:00 -05: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 22:05:23 -04:00
|
|
|
.col-form-legend {
|
2016-04-08 21:58:36 -04:00
|
|
|
padding-top: $input-padding-y;
|
|
|
|
padding-bottom: $input-padding-y;
|
2016-02-19 10:35:00 -05:00
|
|
|
margin-bottom: 0;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
}
|
|
|
|
|
2015-04-23 03:51:39 -04:00
|
|
|
|
2015-04-23 04:10:14 -04: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-06-22 21:53:04 -04:00
|
|
|
min-height: $input-height;
|
2015-04-23 04:10:14 -04:00
|
|
|
// Size it appropriately next to real form controls
|
2015-09-16 00:11:15 -04:00
|
|
|
padding-top: $input-padding-y;
|
|
|
|
padding-bottom: $input-padding-y;
|
2015-04-23 04:10:14 -04:00
|
|
|
// Remove default margin from `p`
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
&.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-14 02:04:16 -04:00
|
|
|
padding: $input-padding-y-sm $input-padding-x-sm;
|
2015-04-23 04:10:14 -04:00
|
|
|
font-size: $font-size-sm;
|
2015-08-20 15:53:41 -04:00
|
|
|
@include border-radius($input-border-radius-sm);
|
2015-04-23 04:10:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-control-lg {
|
2015-08-14 02:04:16 -04:00
|
|
|
padding: $input-padding-y-lg $input-padding-x-lg;
|
2015-04-23 04:10:14 -04:00
|
|
|
font-size: $font-size-lg;
|
2015-08-20 15:53:41 -04:00
|
|
|
@include border-radius($input-border-radius-lg);
|
2015-04-23 04:10:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-25 21:29:51 -04: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 17:11:22 -05:00
|
|
|
margin-bottom: $form-group-margin-bottom;
|
2013-07-25 21:29:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Checkboxes and radios
|
|
|
|
//
|
|
|
|
// Indent the labels to position radios/checkboxes as hanging controls.
|
2012-01-05 17:11:41 -05:00
|
|
|
|
2016-05-08 19:05:27 -04:00
|
|
|
.form-check {
|
2014-06-10 23:50:58 -04:00
|
|
|
position: relative;
|
2012-11-30 16:35:20 -05:00
|
|
|
display: block;
|
2015-04-17 19:02:41 -04:00
|
|
|
margin-bottom: ($spacer * .75);
|
2014-03-10 19:43:57 -04:00
|
|
|
|
2016-05-08 19:05:27 -04:00
|
|
|
// Move up sibling radios or checkboxes for tighter spacing
|
|
|
|
+ .form-check {
|
|
|
|
margin-top: -.25rem;
|
|
|
|
}
|
2015-04-29 15:01:57 -04:00
|
|
|
|
2016-05-08 19:05:27 -04:00
|
|
|
&.disabled {
|
|
|
|
.form-check-label {
|
|
|
|
cursor: $cursor-disabled;
|
2015-04-29 15:01:57 -04:00
|
|
|
}
|
2013-01-16 15:20:34 -05:00
|
|
|
}
|
2012-01-05 17:11:41 -05:00
|
|
|
}
|
2016-05-08 19:05:27 -04:00
|
|
|
|
|
|
|
.form-check-label {
|
|
|
|
padding-left: 1.25rem;
|
|
|
|
margin-bottom: 0; // Override default `<label>` bottom margin
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-check-input {
|
2014-06-10 23:50:58 -04:00
|
|
|
position: absolute;
|
2015-04-17 19:02:41 -04:00
|
|
|
margin-top: .25rem;
|
|
|
|
margin-left: -1.25rem;
|
2014-06-10 23:50:58 -04:00
|
|
|
|
2016-05-08 19:05:27 -04:00
|
|
|
&:only-child {
|
|
|
|
position: static;
|
|
|
|
}
|
2013-01-16 15:20:34 -05:00
|
|
|
}
|
2012-01-05 17:11:41 -05:00
|
|
|
|
2012-01-07 02:59:22 -05:00
|
|
|
// Radios and checkboxes on same line
|
2016-05-08 19:05:27 -04:00
|
|
|
.form-check-inline {
|
2015-01-23 14:14:10 -05:00
|
|
|
position: relative;
|
2012-01-07 02:59:22 -05:00
|
|
|
display: inline-block;
|
2015-04-17 19:02:41 -04:00
|
|
|
padding-left: 1.25rem;
|
2016-05-08 19:05:27 -04:00
|
|
|
margin-bottom: 0; // Override default `<label>` bottom margin
|
2014-12-11 15:05:29 -05:00
|
|
|
vertical-align: middle;
|
2013-05-03 14:56:00 -04:00
|
|
|
cursor: pointer;
|
2012-01-07 02:59:22 -05:00
|
|
|
|
2016-05-08 19:05:27 -04:00
|
|
|
+ .form-check-inline {
|
|
|
|
margin-left: .75rem;
|
2014-06-05 16:31:39 -04:00
|
|
|
}
|
2016-05-08 19:05:27 -04:00
|
|
|
|
2015-08-27 08:10:32 -04:00
|
|
|
&.disabled {
|
2014-12-02 17:02:35 -05:00
|
|
|
cursor: $cursor-disabled;
|
2013-08-14 21:20:28 -04:00
|
|
|
}
|
|
|
|
}
|
2012-01-05 17:11:41 -05:00
|
|
|
|
2013-12-15 18:24:52 -05:00
|
|
|
|
2013-07-25 21:29:51 -04:00
|
|
|
// Form control feedback states
|
|
|
|
//
|
|
|
|
// Apply contextual and semantic states to individual form controls.
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2016-02-09 04:10:05 -05:00
|
|
|
.form-control-feedback {
|
|
|
|
margin-top: .5rem;
|
|
|
|
}
|
|
|
|
|
2015-08-08 17:15:09 -04:00
|
|
|
.form-control-success,
|
|
|
|
.form-control-warning,
|
2015-11-14 22:45:48 -05:00
|
|
|
.form-control-danger {
|
2015-08-14 02:04:16 -04:00
|
|
|
padding-right: ($input-padding-x * 3);
|
2015-08-23 04:00:22 -04:00
|
|
|
background-repeat: no-repeat;
|
2016-02-08 06:34:24 -05:00
|
|
|
background-position: center right ($input-height / 4);
|
|
|
|
background-size: ($input-height / 2) ($input-height / 2);
|
2013-12-15 20:15:09 -05:00
|
|
|
}
|
|
|
|
|
2014-12-02 17:02:35 -05:00
|
|
|
// Form validation states
|
2014-01-07 16:24:45 -05:00
|
|
|
.has-success {
|
2015-08-26 04:30:30 -04:00
|
|
|
@include form-control-validation($brand-success);
|
2015-08-08 17:15:09 -04:00
|
|
|
|
|
|
|
.form-control-success {
|
2016-02-06 21:05:24 -05:00
|
|
|
background-image: $form-icon-success;
|
2015-08-08 17:15:09 -04:00
|
|
|
}
|
2014-01-07 16:24:45 -05:00
|
|
|
}
|
2015-08-08 17:15:09 -04:00
|
|
|
|
2012-12-26 16:57:52 -05:00
|
|
|
.has-warning {
|
2015-08-26 04:30:30 -04:00
|
|
|
@include form-control-validation($brand-warning);
|
2015-08-08 17:15:09 -04:00
|
|
|
|
|
|
|
.form-control-warning {
|
2016-02-06 21:05:24 -05:00
|
|
|
background-image: $form-icon-warning;
|
2015-08-08 17:15:09 -04:00
|
|
|
}
|
2012-01-24 19:54:35 -05:00
|
|
|
}
|
2015-08-08 17:15:09 -04:00
|
|
|
|
2015-10-07 03:05:38 -04:00
|
|
|
.has-danger {
|
2015-08-26 04:30:30 -04:00
|
|
|
@include form-control-validation($brand-danger);
|
2015-08-08 17:15:09 -04:00
|
|
|
|
2015-11-14 22:45:48 -05:00
|
|
|
.form-control-danger {
|
2016-02-06 21:05:24 -05:00
|
|
|
background-image: $form-icon-danger;
|
2015-08-08 17:15:09 -04:00
|
|
|
}
|
2011-11-12 03:46:02 -05:00
|
|
|
}
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2014-07-03 01:54:56 -04:00
|
|
|
|
2013-08-02 21:48:44 -04:00
|
|
|
// Inline forms
|
|
|
|
//
|
2013-08-12 14:07:23 -04: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 21:48:44 -04:00
|
|
|
|
|
|
|
.form-inline {
|
2013-08-05 14:47:12 -04:00
|
|
|
|
2013-08-12 14:07:23 -04:00
|
|
|
// Kick in the inline
|
2014-12-29 16:40:19 -05:00
|
|
|
@include media-breakpoint-up(sm) {
|
2013-08-12 14:07:23 -04:00
|
|
|
// Inline-block all the things for "inline"
|
2013-12-15 20:15:09 -05:00
|
|
|
.form-group {
|
2013-08-12 14:07:23 -04:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2013-08-12 19:09:21 -04:00
|
|
|
|
2015-12-08 02:52:10 -05:00
|
|
|
// Allow folks to *not* use `.form-group`
|
2013-08-12 19:09:21 -04:00
|
|
|
.form-control {
|
|
|
|
display: inline-block;
|
2013-12-15 20:15:09 -05:00
|
|
|
width: auto; // Prevent labels from stacking above inputs in `.form-group`
|
2013-12-08 04:59:44 -05:00
|
|
|
vertical-align: middle;
|
2013-08-12 19:09:21 -04:00
|
|
|
}
|
2014-03-10 00:25:51 -04:00
|
|
|
|
2014-07-23 23:54:07 -04:00
|
|
|
// Make static controls behave like regular ones
|
|
|
|
.form-control-static {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-03-10 00:25:51 -04:00
|
|
|
.input-group {
|
|
|
|
display: inline-table;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
.input-group-addon,
|
|
|
|
.input-group-btn,
|
|
|
|
.form-control {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-07 05:58:10 -05:00
|
|
|
// Input groups need that 100% width though
|
|
|
|
.input-group > .form-control {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2013-08-12 14:07:23 -04:00
|
|
|
|
2015-08-25 03:12:18 -04:00
|
|
|
.form-control-label {
|
2013-12-15 20:15:09 -05:00
|
|
|
margin-bottom: 0;
|
|
|
|
vertical-align: middle;
|
2013-12-15 17:52:49 -05:00
|
|
|
}
|
|
|
|
|
2013-08-12 14:07:23 -04:00
|
|
|
// Remove default margin on radios/checkboxes that were used for stacking, and
|
2014-12-22 17:57:40 -05:00
|
|
|
// then undo the floating of radios and checkboxes to match.
|
2013-08-12 14:07:23 -04:00
|
|
|
.radio,
|
|
|
|
.checkbox {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2013-12-08 04:59:44 -05:00
|
|
|
vertical-align: middle;
|
2014-05-22 21:42:21 -04:00
|
|
|
|
|
|
|
label {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2013-08-12 14:07:23 -04:00
|
|
|
}
|
|
|
|
.radio input[type="radio"],
|
|
|
|
.checkbox input[type="checkbox"] {
|
2014-06-25 19:56:36 -04:00
|
|
|
position: relative;
|
2013-08-12 14:07:23 -04:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-12-15 20:15:09 -05:00
|
|
|
|
2014-07-03 01:54:56 -04:00
|
|
|
// Re-override the feedback icon.
|
2013-12-15 20:15:09 -05:00
|
|
|
.has-feedback .form-control-feedback {
|
|
|
|
top: 0;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
2013-08-02 21:48:44 -04:00
|
|
|
}
|