2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Forms
|
|
|
|
// --------------------------------------------------
|
2011-06-30 03:15:37 -04:00
|
|
|
|
2015-04-16 21:39:45 -04:00
|
|
|
|
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-06-22 21:57:56 -04:00
|
|
|
padding: $padding-y $padding-x;
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: $font-size-base;
|
2015-06-23 02:24:32 -04:00
|
|
|
line-height: $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;
|
2015-06-22 19:30:31 -04:00
|
|
|
border: $border-width solid $input-border;
|
2015-04-17 19:02:41 -04:00
|
|
|
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
|
|
|
@include border-radius($input-border-radius);
|
2014-12-02 17:02:35 -05:00
|
|
|
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
2014-07-08 05:04:48 -04:00
|
|
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2013-07-25 21:29:51 -04:00
|
|
|
|
2015-04-17 19:02:41 -04:00
|
|
|
// Make inputs at least the height of their button counterpart (base line-height + padding + border).
|
|
|
|
// Only apply the height to textual inputs and some selcts.
|
2015-06-22 19:30:31 -04:00
|
|
|
// &:not(textarea),
|
|
|
|
// &:not(select[size]),
|
|
|
|
// &:not(select[multiple]) {
|
2015-06-22 21:53:04 -04:00
|
|
|
// height: $input-height;
|
2015-06-22 19:30:31 -04:00
|
|
|
// }
|
2015-04-17 19:02:41 -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,
|
2013-07-25 21:29:51 -04:00
|
|
|
&[readonly],
|
|
|
|
fieldset[disabled] & {
|
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-01-29 16:51:21 -05:00
|
|
|
&[disabled],
|
|
|
|
fieldset[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
|
|
|
|
|
|
|
|
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.
|
|
|
|
.form-control-label {
|
2015-06-22 21:57:56 -04:00
|
|
|
padding: ($padding-y + $border-width) $padding-x;
|
2015-04-23 03:51:39 -04:00
|
|
|
margin-bottom: 0; // Override the `<label>` default
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-18 14:30:29 -04:00
|
|
|
// Todo: clear this up
|
2014-02-07 05:08:32 -05:00
|
|
|
|
2014-05-21 19:44:09 -04:00
|
|
|
// Special styles for iOS temporal inputs
|
2013-12-15 18:27:46 -05:00
|
|
|
//
|
2014-05-21 19:44:09 -04:00
|
|
|
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
2014-11-09 18:04:32 -05:00
|
|
|
// text within the input to become vertically misaligned. As a workaround, we
|
|
|
|
// set a pixel line-height that matches the given height of the input, but only
|
2014-12-22 18:02:34 -05:00
|
|
|
// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
|
2014-02-07 05:08:32 -05:00
|
|
|
|
2015-06-19 02:56:43 -04:00
|
|
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
|
|
input[type="date"],
|
|
|
|
input[type="time"],
|
|
|
|
input[type="datetime-local"],
|
|
|
|
input[type="month"] {
|
|
|
|
&.form-control {
|
2015-06-22 21:53:04 -04:00
|
|
|
line-height: $input-height;
|
2015-06-19 02:56:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.input-sm,
|
|
|
|
.input-group-sm &.form-control {
|
|
|
|
line-height: $input-height-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.input-lg,
|
|
|
|
.input-group-lg &.form-control {
|
|
|
|
line-height: $input-height-lg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-03 00:16:32 -04:00
|
|
|
|
2013-07-25 21:29:51 -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-06-22 21:57:56 -04:00
|
|
|
padding-top: ($padding-y + $border-width);
|
|
|
|
padding-bottom: ($padding-y + $border-width);
|
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 {
|
|
|
|
height: $input-height-sm;
|
2015-06-22 19:33:17 -04:00
|
|
|
padding: $padding-sm-y $padding-sm-x;
|
2015-04-23 04:10:14 -04:00
|
|
|
font-size: $font-size-sm;
|
|
|
|
line-height: $line-height-sm;
|
|
|
|
border-radius: $input-border-radius-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control-lg {
|
|
|
|
height: $input-height-lg;
|
2015-06-22 19:33:17 -04:00
|
|
|
padding: $padding-lg-y $padding-lg-x;
|
2015-04-23 04:10:14 -04:00
|
|
|
font-size: $font-size-lg;
|
|
|
|
line-height: $line-height-lg;
|
|
|
|
border-radius: $input-border-radius-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
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-top: ($spacer * .75);
|
|
|
|
margin-bottom: ($spacer * .75);
|
2014-03-10 19:43:57 -04:00
|
|
|
|
2013-01-16 15:20:34 -05:00
|
|
|
label {
|
2015-04-17 19:02:41 -04:00
|
|
|
padding-left: 1.25rem;
|
2014-03-10 19:41:56 -04:00
|
|
|
margin-bottom: 0;
|
2013-01-16 15:20:34 -05:00
|
|
|
font-weight: normal;
|
2013-05-03 14:56:00 -04:00
|
|
|
cursor: pointer;
|
2015-04-29 15:01:57 -04:00
|
|
|
|
|
|
|
// When there's no labels, don't position the input.
|
|
|
|
input:only-child {
|
|
|
|
position: static;
|
|
|
|
}
|
2013-01-16 15:20:34 -05:00
|
|
|
}
|
2012-01-05 17:11:41 -05:00
|
|
|
}
|
2012-01-27 23:05:03 -05:00
|
|
|
.radio input[type="radio"],
|
2013-01-16 15:20:34 -05:00
|
|
|
.radio-inline input[type="radio"],
|
|
|
|
.checkbox input[type="checkbox"],
|
|
|
|
.checkbox-inline input[type="checkbox"] {
|
2014-06-10 23:50:58 -04:00
|
|
|
position: absolute;
|
2015-04-17 19:02:41 -04:00
|
|
|
margin-top: .25rem;
|
|
|
|
// margin-top: 4px \9;
|
|
|
|
margin-left: -1.25rem;
|
2012-01-05 17:11:41 -05:00
|
|
|
}
|
2014-06-10 23:50:58 -04:00
|
|
|
|
2013-01-16 15:20:34 -05:00
|
|
|
.radio + .radio,
|
|
|
|
.checkbox + .checkbox {
|
2015-04-17 19:02:41 -04:00
|
|
|
// Move up sibling radios or checkboxes for tighter spacing
|
|
|
|
margin-top: -.25rem;
|
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
|
2013-01-16 15:20:34 -05:00
|
|
|
.radio-inline,
|
|
|
|
.checkbox-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;
|
2012-01-07 03:26:58 -05:00
|
|
|
margin-bottom: 0;
|
2013-01-16 15:20:34 -05:00
|
|
|
font-weight: normal;
|
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
|
|
|
}
|
2013-01-16 15:20:34 -05:00
|
|
|
.radio-inline + .radio-inline,
|
|
|
|
.checkbox-inline + .checkbox-inline {
|
|
|
|
margin-top: 0;
|
2015-04-17 19:02:41 -04:00
|
|
|
margin-left: .75rem;
|
2012-01-07 02:59:22 -05:00
|
|
|
}
|
|
|
|
|
2013-08-14 21:20:28 -04:00
|
|
|
// Apply same disabled cursor tweak as for inputs
|
2014-06-05 16:31:39 -04:00
|
|
|
// Some special care is needed because <label>s don't inherit their parent's `cursor`.
|
2013-08-15 14:52:22 -04:00
|
|
|
//
|
2013-08-14 21:20:28 -04:00
|
|
|
// Note: Neither radios nor checkboxes can be readonly.
|
2013-08-15 14:52:22 -04:00
|
|
|
input[type="radio"],
|
2014-06-05 16:31:39 -04:00
|
|
|
input[type="checkbox"] {
|
2014-12-22 16:33:58 -05:00
|
|
|
&:disabled,
|
2014-06-05 16:31:39 -04:00
|
|
|
&.disabled,
|
|
|
|
fieldset[disabled] & {
|
2014-12-02 17:02:35 -05:00
|
|
|
cursor: $cursor-disabled;
|
2014-06-05 16:31:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// These classes are used directly on <label>s
|
2013-08-14 21:20:28 -04:00
|
|
|
.radio-inline,
|
|
|
|
.checkbox-inline {
|
2014-06-05 16:31:39 -04:00
|
|
|
&.disabled,
|
2013-08-14 21:20:28 -04:00
|
|
|
fieldset[disabled] & {
|
2014-12-02 17:02:35 -05:00
|
|
|
cursor: $cursor-disabled;
|
2013-08-14 21:20:28 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-05 16:31:39 -04:00
|
|
|
// These classes are used on elements with <label> descendants
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
|
|
|
&.disabled,
|
|
|
|
fieldset[disabled] & {
|
|
|
|
label {
|
2014-12-02 17:02:35 -05:00
|
|
|
cursor: $cursor-disabled;
|
2014-06-05 16:31:39 -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
|
|
|
|
2013-12-15 20:15:09 -05:00
|
|
|
.has-feedback {
|
|
|
|
// Enable absolute positioning
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
// Ensure icons don't overlap text
|
|
|
|
.form-control {
|
2015-06-22 21:53:04 -04:00
|
|
|
padding-right: ($input-height * 1.25);
|
2013-12-15 20:15:09 -05:00
|
|
|
}
|
2014-03-04 17:12:57 -05:00
|
|
|
}
|
2014-07-08 03:33:21 -04:00
|
|
|
// Feedback icon
|
2014-03-04 17:12:57 -05:00
|
|
|
.form-control-feedback {
|
|
|
|
position: absolute;
|
2014-07-01 11:15:00 -04:00
|
|
|
top: 0;
|
2014-03-04 17:12:57 -05:00
|
|
|
right: 0;
|
2014-03-24 23:07:54 -04:00
|
|
|
z-index: 2; // Ensure icon is above input groups
|
2014-03-04 17:12:57 -05:00
|
|
|
display: block;
|
2015-06-22 21:53:04 -04:00
|
|
|
width: $input-height;
|
|
|
|
height: $input-height;
|
|
|
|
line-height: $input-height;
|
2014-03-04 17:12:57 -05:00
|
|
|
text-align: center;
|
2014-07-09 19:21:45 -04:00
|
|
|
pointer-events: none;
|
2014-03-04 17:12:57 -05:00
|
|
|
}
|
2015-03-01 04:01:14 -05:00
|
|
|
.input-lg + .form-control-feedback,
|
|
|
|
.input-group-lg + .form-control-feedback {
|
2014-12-02 17:02:35 -05:00
|
|
|
width: $input-height-lg;
|
|
|
|
height: $input-height-lg;
|
|
|
|
line-height: $input-height-lg;
|
2014-03-04 17:12:57 -05:00
|
|
|
}
|
2015-03-01 04:01:14 -05:00
|
|
|
.input-sm + .form-control-feedback,
|
|
|
|
.input-group-sm + .form-control-feedback {
|
2014-12-02 17:02:35 -05:00
|
|
|
width: $input-height-sm;
|
|
|
|
height: $input-height-sm;
|
|
|
|
line-height: $input-height-sm;
|
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 {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include form-control-validation($state-success-text, $state-success-text, $state-success-bg);
|
2014-01-07 16:24:45 -05:00
|
|
|
}
|
2012-12-26 16:57:52 -05:00
|
|
|
.has-warning {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include form-control-validation($state-warning-text, $state-warning-text, $state-warning-bg);
|
2012-01-24 19:54:35 -05:00
|
|
|
}
|
2012-12-26 16:57:52 -05:00
|
|
|
.has-error {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include form-control-validation($state-danger-text, $state-danger-text, $state-danger-bg);
|
2011-11-12 03:46:02 -05:00
|
|
|
}
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2014-07-01 11:15:00 -04:00
|
|
|
// Reposition feedback icon if input has visible label above
|
|
|
|
.has-feedback label {
|
2014-07-03 01:54:56 -04:00
|
|
|
|
2014-12-11 15:05:29 -05:00
|
|
|
~ .form-control-feedback {
|
2015-06-22 22:02:30 -04:00
|
|
|
// TODO: redo this since we nuked the `$line-height-computed`
|
|
|
|
top: 0; // Height of the `label` and its margin
|
2014-07-01 11:15:00 -04:00
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2014-07-01 11:15:00 -04:00
|
|
|
&.sr-only ~ .form-control-feedback {
|
2014-12-11 15:05:29 -05:00
|
|
|
top: 0;
|
2014-07-01 11:15:00 -04:00
|
|
|
}
|
2014-04-10 20:43:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-25 21:29:51 -04:00
|
|
|
// Help text
|
|
|
|
//
|
|
|
|
// Apply to any element you wish to create light text for placement immediately
|
|
|
|
// below a form control. Use for general help, formatting, or instructional text.
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2012-01-06 00:43:28 -05:00
|
|
|
.help-block {
|
2012-02-13 01:49:06 -05:00
|
|
|
display: block; // account for any element using help-block
|
2015-04-17 19:02:41 -04:00
|
|
|
margin-top: .25rem;
|
|
|
|
margin-bottom: .75rem;
|
2014-12-02 17:02:35 -05:00
|
|
|
color: lighten($text-color, 25%); // lighten the text some for contrast
|
2011-05-03 21:09:25 -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-12 19:09:21 -04:00
|
|
|
//
|
|
|
|
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
|
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
|
|
|
|
|
|
|
// In navbar-form, allow folks to *not* use `.form-group`
|
|
|
|
.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
|
|
|
|
2013-12-15 20:15:09 -05:00
|
|
|
.control-label {
|
|
|
|
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
|
|
|
}
|