twbs--bootstrap/less/forms.less

694 lines
15 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Forms
// --------------------------------------------------
// Non-controls
2012-11-30 08:21:44 +00:00
// -------------------------
2011-05-04 01:09:25 +00:00
form {
margin: 0 0 @line-height-base;
}
fieldset {
padding: 0;
margin: 0;
border: 0;
}
2011-08-17 05:58:01 +00:00
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: @line-height-base;
font-size: @font-size-base * 1.5;
line-height: @line-height-base * 2;
color: @grayDark;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
2011-08-17 05:58:01 +00:00
label {
display: inline-block;
margin-bottom: 5px;
font-weight: bold;
}
2011-08-17 05:58:01 +00:00
// Form controls
// -------------------------
// Shared size and type resets
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
display: inline-block;
.box-sizing(border-box); // Makes inputs behave like true block-level elements
2012-11-30 23:05:23 +00:00
min-height: @input-height; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
padding: 6px 9px;
margin-bottom: @line-height-base / 2;
font-size: @font-size-base;
line-height: @line-height-base;
color: @gray;
vertical-align: middle;
2012-11-30 23:05:23 +00:00
background-color: @input-background;
border: 1px solid @input-border;
border-radius: @input-border-radius;
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
.transition(~"border linear .2s, box-shadow linear .2s");
}
2012-05-15 07:17:02 +00:00
// Reset appearance properties for textual inputs and textarea
// Can't be on input[type=*] selectors or it's too specific
2012-05-15 07:17:02 +00:00
input,
select,
textarea,
.uneditable-input {
width: 100%;
2012-05-15 07:17:02 +00:00
}
// Reset width of input images, buttons, radios, checkboxes
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
width: auto; // Override of generic input selector
}
// Reset height since textareas have rows
textarea {
height: auto;
}
2012-05-15 07:17:02 +00:00
// Everything else
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
// Focus state
&:focus {
border-color: rgba(82,168,236,.8);
outline: 0;
outline: thin dotted \9; /* IE6-9 */
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)");
}
}
2012-05-15 07:17:02 +00:00
// Position radios and checkboxes better
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9; /* IE8-9 */
2012-05-15 07:17:02 +00:00
line-height: normal;
}
2012-05-15 07:17:02 +00:00
// Set the height of select and file controls to match text inputs
select,
input[type="file"] {
2012-11-30 23:05:23 +00:00
height: @input-height; /* In IE7, the height of the select element cannot be changed by height, only font-size. TODO: Check if this is still needed when dropping IE7 support */
line-height: @input-height;
2011-09-12 01:01:29 +00:00
}
2012-05-15 07:17:02 +00:00
// Make select elements obey height by applying a border
// TODO: See if this can be part of the above selector stack
2012-05-15 07:17:02 +00:00
select {
2012-11-30 23:05:23 +00:00
border: 1px solid @input-border;
2012-05-15 07:17:02 +00:00
}
2011-09-14 15:58:20 +00:00
// Make multiple select elements height not fixed
select[multiple],
select[size] {
2012-01-25 19:51:13 +00:00
height: auto;
2011-09-14 15:58:20 +00:00
}
// Focus for select, file, radio, and checkbox
select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
.tab-focus();
}
2011-08-17 05:58:01 +00:00
2012-07-07 19:52:05 +00:00
// Uneditable inputs
// -------------------------
// Make uneditable inputs look inactive
.uneditable-input,
.uneditable-textarea {
color: @grayLight;
2012-11-30 23:05:23 +00:00
background-color: darken(@input-background, 1%);
border-color: @input-border;
2012-07-07 19:52:05 +00:00
.box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
cursor: not-allowed;
}
// For text that needs to appear as an input but should not be an input
.uneditable-input {
overflow: hidden; // prevent text from wrapping, but still cut it off like an input does
white-space: nowrap;
}
// Make uneditable textareas behave like a textarea
.uneditable-textarea {
width: auto;
height: auto;
}
// Placeholder
// -------------------------
// Placeholder text gets special styles because when browsers invalidate entire lines if it doesn't understand a selector
2012-07-07 19:52:05 +00:00
input,
textarea {
.placeholder();
}
// CHECKBOXES & RADIOS
// -------------------
// Indent the labels to position radios/checkboxes as hanging
.radio,
.checkbox {
display: block;
min-height: @line-height-base; // clear the floating input if there is no label text
padding-left: 20px;
}
.radio label,
.checkbox label {
font-weight: normal;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
float: left;
margin-left: -20px;
}
// Move the options list down to align with labels
.controls > .radio:first-child,
.controls > .checkbox:first-child {
padding-top: 5px; // has to be padding because margin collaspes
}
// Radios and checkboxes on same line
// TODO v3: Convert .inline to .control-inline
.radio.inline,
.checkbox.inline {
display: inline-block;
padding-top: 5px;
margin-bottom: 0;
vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
margin-left: 10px; // space out consecutive inline controls
}
// INPUT SIZES
// -----------
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
&.input-large {
padding: @padding-large;
padding-left: 14px;
padding-right: 14px; // TODO: Resolve this override
font-size: @font-size-large;
border-radius: @border-radius-large;
}
&.input-small {
padding: @padding-small;
font-size: @font-size-small;
border-radius: @border-radius-small;
}
&.input-mini {
padding: @padding-mini;
font-size: @font-size-mini;
border-radius: @border-radius-small;
}
}
2011-08-17 05:58:01 +00:00
2012-09-25 22:01:03 +00:00
// GRID SIZING FOR INPUTS
// ----------------------
// Grid style input sizes
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
2012-09-25 22:01:03 +00:00
.uneditable-input[class*="span"] {
float: none;
margin-left: 0;
margin-right: 0;
}
2012-09-25 22:01:03 +00:00
.controls-row {
#grid > .input(@gridColumnWidth, @gridGutterWidth, @gridRowWidth);
}
// Ensure input-prepend/append never wraps
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
2012-09-25 22:01:03 +00:00
.input-prepend .uneditable-input[class*="span"] {
display: inline-block;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"] {
height: 30px;
}
// Control row for multiple inputs per line
.controls-row {
.clearfix(); // Clear the float from controls
}
// Float to collapse white-space for proper grid alignment
2012-09-26 05:20:24 +00:00
.controls-row [class*="span"] {
float: left;
}
// Explicity set top padding on all checkboxes/radios, not just first-child
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
padding-top: 5px;
}
// DISABLED STATE
// --------------
// Disabled and read-only inputs
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
2012-04-16 23:34:08 +00:00
cursor: not-allowed;
2012-11-30 23:05:23 +00:00
background-color: @input-background-disabled;
2011-05-04 01:09:25 +00:00
}
// Explicitly reset the colors here
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
background-color: transparent;
}
2011-05-04 01:09:25 +00:00
// FORM FIELD FEEDBACK STATES
// --------------------------
// Warning
.control-group.warning {
.formFieldState(@warningText, @warningText, @warningBackground);
}
// Error
.control-group.error {
.formFieldState(@errorText, @errorText, @errorBackground);
}
// Success
.control-group.success {
.formFieldState(@successText, @successText, @successBackground);
}
2012-08-22 09:24:02 +00:00
// Success
.control-group.info {
.formFieldState(@infoText, @infoText, @infoBackground);
}
// HTML5 invalid states
// Shares styles with the .control-group.error above
2012-11-05 03:53:13 +00:00
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
color: #b94a48;
border-color: #ee5f5b;
&:focus {
border-color: darken(#ee5f5b, 10%);
@shadow: 0 0 6px lighten(#ee5f5b, 20%);
.box-shadow(@shadow);
}
}
// FORM ACTIONS
// ------------
.form-actions {
padding: (@line-height-base - 1) 20px @line-height-base;
margin-top: @line-height-base;
margin-bottom: @line-height-base;
2012-11-30 23:05:23 +00:00
background-color: @form-actions-background;
border-top: 1px solid #e5e5e5;
.clearfix(); // Adding clearfix to allow for .pull-right button containers
2011-05-04 01:09:25 +00:00
}
// HELP TEXT
// ---------
2012-02-21 21:43:13 +00:00
.help-block,
.help-inline {
2012-11-30 22:37:24 +00:00
color: lighten(@text-color, 25%); // lighten the text some for contrast
2012-02-21 21:43:13 +00:00
}
.help-block {
2012-02-13 06:49:06 +00:00
display: block; // account for any element using help-block
margin-bottom: @line-height-base / 2;
2011-05-04 01:09:25 +00:00
}
2011-05-04 01:09:25 +00:00
.help-inline {
display: inline-block;
vertical-align: middle;
padding-left: 5px;
2011-05-04 01:09:25 +00:00
}
2011-08-17 05:58:01 +00:00
// INPUT GROUPS
// ------------
2011-05-04 01:09:25 +00:00
// Allow us to put symbols and text within the input field for a cleaner look
.input-append,
.input-prepend {
margin-bottom: 5px;
font-size: 0; // white space collapse hack
white-space: nowrap; // Prevent span and input from separating
2012-07-07 19:52:05 +00:00
// Reset the white space collapse hack
input,
select,
.uneditable-input,
.dropdown-menu {
font-size: @font-size-base;
}
input,
select,
.uneditable-input {
position: relative; // placed here by default so that on :focus we can place the input above the .add-on for full border and box-shadow goodness
2012-09-25 22:01:03 +00:00
float: none; // Undo the float from grid sizing
margin: 0; // Prevent bottom margin from screwing up alignment in stacked forms
font-size: @font-size-base;
vertical-align: top;
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius @input-border-radius 0;
// Make input on top when focused so blue border and shadow always show
&:focus {
z-index: 2;
}
2011-05-04 01:09:25 +00:00
}
2012-09-25 22:01:03 +00:00
input[class*="span"],
select[class*="span"],
.uneditable-input[class*="span"] {
margin: 0;
}
2011-05-04 01:09:25 +00:00
.add-on {
display: inline-block;
2011-05-04 01:09:25 +00:00
width: auto;
height: @line-height-base;
2012-04-16 23:34:08 +00:00
min-width: 16px;
padding: 6px;
font-size: @font-size-base;
2011-05-04 01:09:25 +00:00
font-weight: normal;
line-height: @line-height-base;
2011-05-04 01:09:25 +00:00
text-align: center;
2012-11-30 23:05:23 +00:00
text-shadow: 0 1px 0 #fff;
background-color: @grayLighter;
border: 1px solid #ccc;
}
.add-on,
.btn,
.btn-group > .dropdown-toggle {
vertical-align: top;
border-radius: 0;
2011-05-04 01:09:25 +00:00
}
.active {
background-color: @successBackground;
border-color: @successText;
2011-05-04 01:09:25 +00:00
}
}
.input-prepend {
.add-on,
.btn {
margin-right: -1px;
}
.add-on:first-child,
.btn:first-child {
// FYI, `.btn:first-child` accounts for a button group that's prepended
2012-11-30 23:05:23 +00:00
border-radius: @input-border-radius 0 0 @input-border-radius;
}
}
2011-08-22 03:27:19 +00:00
.input-append {
input,
select,
.uneditable-input {
2012-11-30 23:05:23 +00:00
border-radius: @input-border-radius 0 0 @input-border-radius;
+ .btn-group .btn,
+ .btn-group .btn:last-child {
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius @input-border-radius 0;
}
2011-05-04 01:09:25 +00:00
}
.add-on,
.btn,
.btn-group {
margin-left: -1px;
}
.add-on:last-child,
.btn:last-child,
.btn-group:last-child > .dropdown-toggle {
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius @input-border-radius 0;
}
}
// Remove all border-radius for inputs with both prepend and append
.input-prepend.input-append {
input,
select,
.uneditable-input {
border-radius: 0;
+ .btn-group .btn {
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius @input-border-radius 0;
}
}
.add-on:first-child,
.btn:first-child {
margin-right: -1px;
2012-11-30 23:05:23 +00:00
border-radius: @input-border-radius 0 0 @input-border-radius;
}
.add-on:last-child,
.btn:last-child {
margin-left: -1px;
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius @input-border-radius 0;
2011-05-04 01:09:25 +00:00
}
.btn-group:first-child {
margin-left: 0;
}
2011-05-04 01:09:25 +00:00
}
// SEARCH FORM
// -----------
input.search-query {
padding-right: 14px;
padding-right: 4px \9;
2012-04-16 23:34:08 +00:00
padding-left: 14px;
padding-left: 4px \9; /* IE8 doesn't have border radius, so don't indent the padding */
margin-bottom: 0; // Remove the default margin on all inputs
2012-11-30 23:05:23 +00:00
border-radius: @input-border-radius-search;
}
/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
border-radius: 0; // Override due to specificity
}
.form-search .input-append .search-query {
2012-11-30 23:05:23 +00:00
border-radius: @input-border-radius-search 0 0 @input-border-radius-search;
}
.form-search .input-append .btn {
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius-search @input-border-radius-search 0;
}
.form-search .input-prepend .search-query {
2012-11-30 23:05:23 +00:00
border-radius: 0 @input-border-radius-search @input-border-radius-search 0;
}
.form-search .input-prepend .btn {
2012-11-30 23:05:23 +00:00
border-radius: @input-border-radius-search 0 0 @input-border-radius-search;
}
// HORIZONTAL & VERTICAL FORMS
// ---------------------------
// Common properties
// -----------------
.form-search,
.form-inline,
.form-horizontal {
input,
textarea,
select,
.help-inline,
.uneditable-input,
.input-prepend,
.input-append {
display: inline-block;
margin-bottom: 0;
2012-07-06 17:59:46 +00:00
vertical-align: middle;
}
// Re-hide hidden elements due to specifity
.hide {
display: none;
}
}
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
display: inline-block;
}
// Remove margin for input-prepend/-append
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
margin-bottom: 0;
}
// Inline checkbox/radio labels (remove padding on left)
2012-02-11 08:24:06 +00:00
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
2012-02-11 08:24:06 +00:00
.form-inline .checkbox {
display: inline-block;
padding-left: 0;
label {
margin-bottom: 0;
vertical-align: middle;
}
2012-02-11 08:24:06 +00:00
}
// Remove float and margin, set to inline-block
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
float: left;
margin-right: 3px;
2012-04-16 23:34:08 +00:00
margin-left: 0;
}
// Margin to space out fieldsets
.control-group {
margin-bottom: @line-height-base / 2;
2011-05-04 01:09:25 +00:00
}
// Legend collapses margin, so next element is responsible for spacing
legend + .control-group {
margin-top: @line-height-base;
-webkit-margin-top-collapse: separate;
}
// Horizontal-specific styles
// --------------------------
.form-horizontal {
2012-01-23 21:46:26 +00:00
// Increase spacing between groups
2012-01-23 20:21:00 +00:00
.control-group {
margin-bottom: @line-height-base;
.clearfix();
2012-01-23 20:21:00 +00:00
}
// Float the labels left
.control-label {
float: left;
2012-11-30 23:27:13 +00:00
width: @component-offset-horizontal - 20;
padding-top: 5px;
text-align: right;
}
// Move over all input controls and content
.controls {
2012-11-30 23:27:13 +00:00
margin-left: @component-offset-horizontal;
}
2012-02-21 21:43:13 +00:00
// Remove bottom margin on block level help text since that's accounted for on .control-group
.help-block {
margin-bottom: 0;
}
// And apply it only to .help-block instances that follow a form control
input,
select,
textarea,
.uneditable-input,
.input-prepend,
.input-append {
+ .help-block {
margin-top: @line-height-base / 2;
}
}
// Move over buttons in .form-actions to align with .controls
.form-actions {
2012-11-30 23:27:13 +00:00
padding-left: @component-offset-horizontal;
}
}