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