2011-11-26 00:34:55 -05:00
|
|
|
// Forms.less
|
|
|
|
// Base styles for various input types, form layouts, and states
|
|
|
|
// -------------------------------------------------------------
|
2011-06-30 03:15:37 -04:00
|
|
|
|
2011-11-12 03:46:02 -05:00
|
|
|
|
2011-09-28 22:15:31 -04:00
|
|
|
// GENERAL STYLES
|
|
|
|
// --------------
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// Make all forms have space below them
|
2011-05-03 21:09:25 -04:00
|
|
|
form {
|
2012-01-20 16:16:40 -05:00
|
|
|
margin: 0 0 @baseLineHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
2011-08-25 03:13:40 -04:00
|
|
|
}
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-08-25 03:13:40 -04:00
|
|
|
// Groups of fields with labels on top (legends)
|
2011-09-29 04:40:27 -04:00
|
|
|
legend {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2012-01-20 16:16:40 -05:00
|
|
|
padding: 0;
|
2011-10-04 03:20:38 -04:00
|
|
|
margin-bottom: @baseLineHeight * 1.5;
|
|
|
|
font-size: @baseFontSize * 1.5;
|
|
|
|
line-height: @baseLineHeight * 2;
|
2011-09-29 04:40:27 -04:00
|
|
|
color: @grayDark;
|
2012-01-20 16:16:40 -05:00
|
|
|
border: 0;
|
2011-09-29 04:40:27 -04:00
|
|
|
border-bottom: 1px solid #eee;
|
2012-02-11 19:50:57 -05:00
|
|
|
|
|
|
|
// Small
|
|
|
|
small {
|
|
|
|
font-size: @baseLineHeight * .75;
|
|
|
|
color: @grayLight;
|
|
|
|
}
|
2011-08-25 03:13:40 -04:00
|
|
|
}
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-08-25 03:13:40 -04:00
|
|
|
// Set font for forms
|
|
|
|
label,
|
|
|
|
input,
|
2012-01-20 16:16:40 -05:00
|
|
|
button,
|
2011-08-25 03:13:40 -04:00
|
|
|
select,
|
|
|
|
textarea {
|
2012-02-13 11:18:19 -05:00
|
|
|
#font > .shorthand(@baseFontSize,normal,@baseLineHeight); // Set size, weight, line-height here
|
|
|
|
}
|
|
|
|
input,
|
|
|
|
button,
|
|
|
|
select,
|
|
|
|
textarea {
|
2012-03-07 00:13:29 -05:00
|
|
|
font-family: @baseFontFamily; // And only set font-family here for those that need it (note the missing label element)
|
2011-08-25 03:13:40 -04:00
|
|
|
}
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// Identify controls by their labels
|
2011-08-25 03:13:40 -04:00
|
|
|
label {
|
2011-09-29 04:40:27 -04:00
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
2011-08-25 03:13:40 -04:00
|
|
|
color: @grayDark;
|
|
|
|
}
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-08-25 03:13:40 -04:00
|
|
|
// Inputs, Textareas, Selects
|
2011-09-02 01:53:24 -04:00
|
|
|
input,
|
2011-08-25 03:13:40 -04:00
|
|
|
textarea,
|
|
|
|
select,
|
|
|
|
.uneditable-input {
|
2012-01-25 14:26:45 -05:00
|
|
|
display: inline-block;
|
2011-08-25 03:13:40 -04:00
|
|
|
width: 210px;
|
2011-10-04 03:20:38 -04:00
|
|
|
height: @baseLineHeight;
|
2011-08-25 03:13:40 -04:00
|
|
|
padding: 4px;
|
2012-01-06 00:43:28 -05:00
|
|
|
margin-bottom: 9px;
|
2011-10-04 03:20:38 -04:00
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: @baseLineHeight;
|
2011-08-25 03:13:40 -04:00
|
|
|
color: @gray;
|
2012-03-05 03:29:16 -05:00
|
|
|
border: 1px solid @inputBorder;
|
2011-08-25 03:13:40 -04:00
|
|
|
.border-radius(3px);
|
|
|
|
}
|
2012-01-25 14:21:44 -05:00
|
|
|
.uneditable-textarea {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
2011-09-02 01:53:24 -04:00
|
|
|
|
2012-01-26 00:28:24 -05:00
|
|
|
// Inputs within a label
|
|
|
|
label input,
|
|
|
|
label textarea,
|
|
|
|
label select {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2011-12-11 01:29:49 -05:00
|
|
|
// Mini reset for unique input types
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="image"],
|
|
|
|
input[type="checkbox"],
|
|
|
|
input[type="radio"] {
|
2011-09-02 01:53:24 -04:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2011-09-02 14:53:58 -04:00
|
|
|
padding: 0;
|
2011-09-02 01:53:24 -04:00
|
|
|
margin: 3px 0;
|
2012-01-25 14:21:44 -05:00
|
|
|
*margin-top: 0; /* IE7 */
|
2011-09-02 14:53:58 -04:00
|
|
|
line-height: normal;
|
2011-10-16 21:01:05 -04:00
|
|
|
cursor: pointer;
|
2012-02-01 19:44:07 -05:00
|
|
|
.border-radius(0);
|
2012-02-17 01:34:30 -05:00
|
|
|
border: 0 \9; /* IE9 and down */
|
|
|
|
}
|
|
|
|
input[type="image"] {
|
|
|
|
border: 0;
|
2011-09-02 01:53:24 -04:00
|
|
|
}
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// Reset the file input to browser defaults
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="file"] {
|
2012-02-02 01:27:11 -05:00
|
|
|
width: auto;
|
2011-09-02 14:53:58 -04:00
|
|
|
padding: initial;
|
|
|
|
line-height: initial;
|
2011-11-17 04:28:42 -05:00
|
|
|
border: initial;
|
2012-03-05 03:29:16 -05:00
|
|
|
background-color: @inputBackground;
|
2011-11-17 04:28:42 -05:00
|
|
|
background-color: initial;
|
2011-09-02 01:53:24 -04:00
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// Help out input buttons
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="button"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="submit"] {
|
2011-09-02 01:53:24 -04:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2011-11-12 03:46:02 -05:00
|
|
|
// Set the height of select and file controls to match text inputs
|
2011-08-25 03:13:40 -04:00
|
|
|
select,
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="file"] {
|
2012-01-25 15:04:19 -05:00
|
|
|
height: 28px; /* In IE7, the height of the select element cannot be changed by height, only font-size */
|
2011-09-11 21:09:01 -04:00
|
|
|
*margin-top: 4px; /* For IE7, add top margin to align select with labels */
|
2012-01-25 15:04:19 -05:00
|
|
|
line-height: 28px;
|
2011-09-11 21:01:29 -04:00
|
|
|
}
|
2011-09-02 01:53:24 -04:00
|
|
|
|
2012-02-11 23:00:44 -05:00
|
|
|
// Reset line-height for IE
|
|
|
|
input[type="file"] {
|
|
|
|
line-height: 18px \9;
|
|
|
|
}
|
|
|
|
|
2011-12-21 20:31:01 -05:00
|
|
|
// Chrome on Linux and Mobile Safari need background-color
|
2011-12-20 01:58:56 -05:00
|
|
|
select {
|
2012-01-07 03:47:53 -05:00
|
|
|
width: 220px; // default input width + 10px of padding that doesn't get applied
|
2012-03-05 03:29:16 -05:00
|
|
|
background-color: @inputBackground;
|
2011-12-20 01:58:56 -05:00
|
|
|
}
|
|
|
|
|
2011-09-14 11:58:20 -04:00
|
|
|
// Make multiple select elements height not fixed
|
2011-12-27 17:08:07 -05:00
|
|
|
select[multiple],
|
|
|
|
select[size] {
|
2012-01-25 14:51:13 -05:00
|
|
|
height: auto;
|
2011-09-14 11:58:20 -04:00
|
|
|
}
|
|
|
|
|
2011-12-11 01:29:49 -05:00
|
|
|
// Remove shadow from image inputs
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="image"] {
|
2011-12-11 01:29:49 -05:00
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
2012-01-26 13:00:09 -05:00
|
|
|
// Make textarea height behave
|
2011-08-25 03:13:40 -04:00
|
|
|
textarea {
|
|
|
|
height: auto;
|
|
|
|
}
|
2011-09-02 01:53:24 -04:00
|
|
|
|
2012-01-26 13:00:09 -05:00
|
|
|
// Hidden inputs
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="hidden"] {
|
2012-01-26 13:00:09 -05:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-08-25 03:13:40 -04:00
|
|
|
|
2012-01-05 17:11:41 -05:00
|
|
|
// CHECKBOXES & RADIOS
|
|
|
|
// -------------------
|
|
|
|
|
|
|
|
// Indent the labels to position radios/checkboxes as hanging
|
|
|
|
.radio,
|
|
|
|
.checkbox {
|
|
|
|
padding-left: 18px;
|
|
|
|
}
|
2012-01-27 23:05:03 -05:00
|
|
|
.radio input[type="radio"],
|
|
|
|
.checkbox input[type="checkbox"] {
|
2012-01-05 17:11:41 -05:00
|
|
|
float: left;
|
|
|
|
margin-left: -18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move the options list down to align with labels
|
|
|
|
.controls > .radio:first-child,
|
|
|
|
.controls > .checkbox:first-child {
|
2012-01-26 13:56:18 -05:00
|
|
|
padding-top: 5px; // has to be padding because margin collaspes
|
2012-01-05 17:11:41 -05:00
|
|
|
}
|
|
|
|
|
2012-01-07 02:59:22 -05:00
|
|
|
// Radios and checkboxes on same line
|
2012-02-05 05:16:46 -05:00
|
|
|
// TODO v3: Convert .inline to .control-inline
|
2012-01-07 02:59:22 -05:00
|
|
|
.radio.inline,
|
|
|
|
.checkbox.inline {
|
|
|
|
display: inline-block;
|
2012-02-05 05:16:46 -05:00
|
|
|
padding-top: 5px;
|
2012-01-07 03:26:58 -05:00
|
|
|
margin-bottom: 0;
|
2012-01-28 17:50:56 -05:00
|
|
|
vertical-align: middle;
|
2012-01-07 02:59:22 -05:00
|
|
|
}
|
|
|
|
.radio.inline + .radio.inline,
|
|
|
|
.checkbox.inline + .checkbox.inline {
|
2012-01-07 03:26:58 -05:00
|
|
|
margin-left: 10px; // space out consecutive inline controls
|
2012-01-07 02:59:22 -05:00
|
|
|
}
|
|
|
|
|
2012-01-05 17:11:41 -05:00
|
|
|
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// FOCUS STATE
|
|
|
|
// -----------
|
|
|
|
|
2011-09-02 01:53:24 -04:00
|
|
|
input,
|
2011-09-03 00:54:11 -04:00
|
|
|
textarea {
|
2012-01-25 04:22:29 -05:00
|
|
|
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
2011-08-25 03:13:40 -04:00
|
|
|
@transition: border linear .2s, box-shadow linear .2s;
|
|
|
|
.transition(@transition);
|
|
|
|
}
|
2011-09-02 01:53:24 -04:00
|
|
|
input:focus,
|
2011-08-25 03:13:40 -04:00
|
|
|
textarea:focus {
|
|
|
|
border-color: rgba(82,168,236,.8);
|
2012-01-25 04:22:29 -05:00
|
|
|
@shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
|
2011-08-25 03:13:40 -04:00
|
|
|
.box-shadow(@shadow);
|
2012-01-28 01:56:48 -05:00
|
|
|
outline: 0;
|
2012-02-11 23:58:10 -05:00
|
|
|
outline: thin dotted \9; /* IE6-9 */
|
2011-08-25 03:13:40 -04:00
|
|
|
}
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="file"]:focus,
|
2012-02-05 05:14:25 -05:00
|
|
|
input[type="radio"]:focus,
|
2012-01-27 23:05:03 -05:00
|
|
|
input[type="checkbox"]:focus,
|
2011-09-09 03:02:47 -04:00
|
|
|
select:focus {
|
|
|
|
.box-shadow(none); // override for file inputs
|
2012-01-27 21:33:25 -05:00
|
|
|
.tab-focus();
|
2011-09-09 03:02:47 -04:00
|
|
|
}
|
2011-08-17 01:58:01 -04:00
|
|
|
|
|
|
|
|
2011-09-28 22:15:31 -04:00
|
|
|
|
|
|
|
// INPUT SIZES
|
|
|
|
// -----------
|
|
|
|
|
|
|
|
// General classes for quick sizes
|
|
|
|
.input-mini { width: 60px; }
|
|
|
|
.input-small { width: 90px; }
|
|
|
|
.input-medium { width: 150px; }
|
|
|
|
.input-large { width: 210px; }
|
|
|
|
.input-xlarge { width: 270px; }
|
|
|
|
.input-xxlarge { width: 530px; }
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-09-11 21:44:25 -04:00
|
|
|
// Grid style input sizes
|
2012-01-07 03:47:53 -05:00
|
|
|
input[class*="span"],
|
|
|
|
select[class*="span"],
|
|
|
|
textarea[class*="span"],
|
2012-01-07 04:22:52 -05:00
|
|
|
.uneditable-input {
|
2011-09-13 01:19:28 -04:00
|
|
|
float: none;
|
2011-09-11 21:44:25 -04:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2012-01-07 03:47:53 -05:00
|
|
|
|
|
|
|
|
2012-01-30 03:39:44 -05:00
|
|
|
|
|
|
|
// GRID SIZING FOR INPUTS
|
|
|
|
// ----------------------
|
|
|
|
|
2012-02-22 02:16:06 -05:00
|
|
|
#grid > .input (@gridColumnWidth, @gridGutterWidth);
|
2012-01-30 03:39:44 -05:00
|
|
|
|
2011-09-11 21:44:25 -04:00
|
|
|
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
|
|
|
|
// DISABLED STATE
|
|
|
|
// --------------
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2011-09-03 00:54:11 -04:00
|
|
|
// Disabled and read-only inputs
|
|
|
|
input[disabled],
|
|
|
|
select[disabled],
|
|
|
|
textarea[disabled],
|
|
|
|
input[readonly],
|
|
|
|
select[readonly],
|
|
|
|
textarea[readonly] {
|
2012-03-05 03:29:16 -05:00
|
|
|
background-color: @inputDisabledBackground;
|
2011-08-25 03:13:40 -04:00
|
|
|
border-color: #ddd;
|
2011-09-03 00:54:11 -04:00
|
|
|
cursor: not-allowed;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
|
|
|
|
|
2012-01-06 00:43:28 -05:00
|
|
|
|
2011-11-12 03:46:02 -05:00
|
|
|
// FORM FIELD FEEDBACK STATES
|
|
|
|
// --------------------------
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2011-11-12 03:46:02 -05:00
|
|
|
// Warning
|
2011-11-29 15:06:31 -05:00
|
|
|
.control-group.warning {
|
2012-01-25 02:35:34 -05:00
|
|
|
.formFieldState(@warningText, @warningText, @warningBackground);
|
2012-01-24 19:54:35 -05:00
|
|
|
}
|
|
|
|
// Error
|
|
|
|
.control-group.error {
|
2012-01-25 02:35:34 -05:00
|
|
|
.formFieldState(@errorText, @errorText, @errorBackground);
|
2011-11-12 03:46:02 -05:00
|
|
|
}
|
|
|
|
// Success
|
2011-11-29 15:06:31 -05:00
|
|
|
.control-group.success {
|
2012-01-25 02:35:34 -05:00
|
|
|
.formFieldState(@successText, @successText, @successBackground);
|
2011-11-12 03:46:02 -05:00
|
|
|
}
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2012-01-07 07:28:30 -05:00
|
|
|
// HTML5 invalid states
|
|
|
|
// Shares styles with the .control-group.error above
|
2012-01-22 23:50:35 -05:00
|
|
|
input:focus:required:invalid,
|
|
|
|
textarea:focus:required:invalid,
|
|
|
|
select:focus:required:invalid {
|
2012-01-07 07:28:30 -05:00
|
|
|
color: #b94a48;
|
|
|
|
border-color: #ee5f5b;
|
|
|
|
&:focus {
|
|
|
|
border-color: darken(#ee5f5b, 10%);
|
2012-02-22 02:16:06 -05:00
|
|
|
.box-shadow(0 0 6px lighten(#ee5f5b, 20%));
|
2012-01-07 07:28:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
// FORM ACTIONS
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
.form-actions {
|
2011-10-04 03:20:38 -04:00
|
|
|
padding: (@baseLineHeight - 1) 20px @baseLineHeight;
|
|
|
|
margin-top: @baseLineHeight;
|
|
|
|
margin-bottom: @baseLineHeight;
|
2012-03-06 02:06:27 -05:00
|
|
|
background-color: @grayLighter;
|
2011-05-03 21:09:25 -04:00
|
|
|
border-top: 1px solid #ddd;
|
2012-02-14 15:16:55 -05:00
|
|
|
.clearfix(); // Adding clearfix to allow for .pull-right button containers
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// For text that needs to appear as an input but should not be an input
|
|
|
|
.uneditable-input {
|
|
|
|
display: block;
|
2012-03-05 03:29:16 -05:00
|
|
|
background-color: @inputBackground;
|
2011-09-29 04:40:27 -04:00
|
|
|
border-color: #eee;
|
|
|
|
.box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Placeholder text gets special styles; can't be bundled together though for some reason
|
2012-01-18 03:35:14 -05:00
|
|
|
.placeholder(@grayLight);
|
2011-09-29 04:40:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-28 22:15:31 -04:00
|
|
|
// HELP TEXT
|
|
|
|
// ---------
|
|
|
|
|
2012-02-21 16:43:13 -05:00
|
|
|
.help-block,
|
|
|
|
.help-inline {
|
|
|
|
color: @gray; // lighten the text some for contrast
|
|
|
|
}
|
|
|
|
|
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
|
2012-02-21 16:43:13 -05:00
|
|
|
margin-bottom: @baseLineHeight / 2;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2011-05-03 21:09:25 -04:00
|
|
|
.help-inline {
|
2012-01-26 16:02:27 -05:00
|
|
|
display: inline-block;
|
2012-01-27 19:40:14 -05:00
|
|
|
.ie7-inline-block();
|
2012-01-26 16:02:27 -05:00
|
|
|
vertical-align: middle;
|
2011-11-17 04:28:42 -05:00
|
|
|
padding-left: 5px;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2011-11-12 03:46:02 -05:00
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// INPUT GROUPS
|
|
|
|
// ------------
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2011-05-03 21:09:25 -04:00
|
|
|
// Allow us to put symbols and text within the input field for a cleaner look
|
2011-08-21 23:27:19 -04:00
|
|
|
.input-prepend,
|
|
|
|
.input-append {
|
2012-01-06 00:43:28 -05:00
|
|
|
margin-bottom: 5px;
|
2011-12-27 18:04:55 -05:00
|
|
|
.clearfix(); // Clear the float to prevent wrapping
|
2012-01-07 04:22:52 -05:00
|
|
|
input,
|
2012-02-21 10:32:57 -05:00
|
|
|
select,
|
2012-01-07 04:22:52 -05:00
|
|
|
.uneditable-input {
|
2011-05-03 21:09:25 -04:00
|
|
|
.border-radius(0 3px 3px 0);
|
2012-01-28 02:53:56 -05:00
|
|
|
&:focus {
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
2012-01-07 04:22:52 -05:00
|
|
|
.uneditable-input {
|
|
|
|
border-left-color: #ccc;
|
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
.add-on {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
min-width: 16px;
|
2011-10-10 00:25:28 -04:00
|
|
|
height: @baseLineHeight;
|
2011-09-11 23:17:34 -04:00
|
|
|
margin-right: -1px;
|
2012-01-29 16:25:13 -05:00
|
|
|
padding: 4px 5px;
|
2011-05-03 21:09:25 -04:00
|
|
|
font-weight: normal;
|
2011-10-10 00:25:28 -04:00
|
|
|
line-height: @baseLineHeight;
|
2011-05-03 21:09:25 -04:00
|
|
|
text-align: center;
|
2011-09-13 01:19:28 -04:00
|
|
|
text-shadow: 0 1px 0 @white;
|
2012-03-06 02:06:27 -05:00
|
|
|
background-color: @grayLighter;
|
2011-11-17 04:28:42 -05:00
|
|
|
border: 1px solid #ccc;
|
2011-05-03 21:09:25 -04:00
|
|
|
.border-radius(3px 0 0 3px);
|
|
|
|
}
|
|
|
|
.active {
|
2011-11-17 04:28:42 -05:00
|
|
|
background-color: lighten(@green, 30);
|
2011-05-03 21:09:25 -04:00
|
|
|
border-color: @green;
|
|
|
|
}
|
|
|
|
}
|
2011-08-21 23:42:54 -04:00
|
|
|
.input-prepend {
|
2011-08-21 23:41:34 -04:00
|
|
|
.add-on {
|
|
|
|
*margin-top: 1px; /* IE6-7 */
|
|
|
|
}
|
|
|
|
}
|
2011-08-21 23:27:19 -04:00
|
|
|
.input-append {
|
2012-01-07 04:22:52 -05:00
|
|
|
input,
|
2012-02-21 10:32:57 -05:00
|
|
|
select
|
2012-01-07 04:22:52 -05:00
|
|
|
.uneditable-input {
|
2011-05-03 21:09:25 -04:00
|
|
|
float: left;
|
|
|
|
.border-radius(3px 0 0 3px);
|
|
|
|
}
|
2012-01-07 04:22:52 -05:00
|
|
|
.uneditable-input {
|
2012-02-12 17:01:58 -05:00
|
|
|
border-left-color: #eee;
|
2012-02-22 02:16:06 -05:00
|
|
|
border-right-color: #ccc;
|
2012-01-07 04:22:52 -05:00
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
.add-on {
|
2011-09-11 23:17:34 -04:00
|
|
|
margin-right: 0;
|
|
|
|
margin-left: -1px;
|
2011-11-17 04:28:42 -05:00
|
|
|
.border-radius(0 3px 3px 0);
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
2012-01-26 18:03:53 -05:00
|
|
|
input:first-child {
|
|
|
|
// In IE7, having a hasLayout container (from clearfix's zoom:1) can make the first input
|
|
|
|
// inherit the sum of its ancestors' margins.
|
|
|
|
*margin-left: -160px;
|
|
|
|
|
|
|
|
&+.add-on {
|
|
|
|
*margin-left: -21px;
|
|
|
|
}
|
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
|
2011-09-29 04:47:55 -04:00
|
|
|
// SEARCH FORM
|
|
|
|
// -----------
|
|
|
|
|
2012-01-06 02:24:19 -05:00
|
|
|
.search-query {
|
2012-01-06 00:43:28 -05:00
|
|
|
padding-left: 14px;
|
|
|
|
padding-right: 14px;
|
2012-01-06 02:24:19 -05:00
|
|
|
margin-bottom: 0; // remove the default margin on all inputs
|
2011-09-29 04:47:55 -04:00
|
|
|
.border-radius(14px);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// HORIZONTAL & VERTICAL FORMS
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
// Common properties
|
2011-09-28 22:15:31 -04:00
|
|
|
// -----------------
|
|
|
|
|
2012-01-15 00:28:47 -05:00
|
|
|
.form-search,
|
|
|
|
.form-inline,
|
|
|
|
.form-horizontal {
|
2012-01-06 00:43:28 -05:00
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
select,
|
2012-01-26 16:02:27 -05:00
|
|
|
.help-inline,
|
2012-01-06 00:43:28 -05:00
|
|
|
.uneditable-input {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2012-02-04 21:26:04 -05:00
|
|
|
// Re-hide hidden elements due to specifity
|
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-01-06 00:43:28 -05:00
|
|
|
}
|
2012-01-15 00:28:47 -05:00
|
|
|
.form-search label,
|
2012-01-29 03:07:01 -05:00
|
|
|
.form-inline label,
|
|
|
|
.form-search .input-append,
|
|
|
|
.form-inline .input-append,
|
|
|
|
.form-search .input-prepend,
|
|
|
|
.form-inline .input-prepend {
|
2012-01-14 19:38:40 -05:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2012-01-29 03:07:01 -05:00
|
|
|
// Make the prepend and append add-on vertical-align: middle;
|
|
|
|
.form-search .input-append .add-on,
|
2012-02-17 23:40:56 -05:00
|
|
|
.form-search .input-prepend .add-on,
|
|
|
|
.form-inline .input-append .add-on,
|
2012-01-29 03:07:01 -05:00
|
|
|
.form-inline .input-prepend .add-on {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2012-02-20 21:56:05 -05:00
|
|
|
// Inline checkbox/radio labels (remove padding on left)
|
2012-02-11 03:24:06 -05:00
|
|
|
.form-search .radio,
|
|
|
|
.form-search .checkbox,
|
2012-02-17 23:40:56 -05:00
|
|
|
.form-inline .radio,
|
2012-02-11 03:24:06 -05:00
|
|
|
.form-inline .checkbox {
|
2012-02-20 21:56:05 -05:00
|
|
|
padding-left: 0;
|
2012-02-11 03:24:06 -05:00
|
|
|
margin-bottom: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2012-02-20 21:56:05 -05: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-left: 0;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
2012-01-06 00:43:28 -05:00
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// Margin to space out fieldsets
|
|
|
|
.control-group {
|
2012-01-23 15:21:00 -05:00
|
|
|
margin-bottom: @baseLineHeight / 2;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
2011-09-28 22:15:31 -04:00
|
|
|
|
2012-02-09 15:27:42 -05:00
|
|
|
// Legend collapses margin, so next element is responsible for spacing
|
|
|
|
legend + .control-group {
|
|
|
|
margin-top: @baseLineHeight;
|
|
|
|
-webkit-margin-top-collapse: separate;
|
|
|
|
}
|
|
|
|
|
2011-09-29 04:40:27 -04:00
|
|
|
// Horizontal-specific styles
|
|
|
|
// --------------------------
|
|
|
|
|
2012-01-15 00:28:47 -05:00
|
|
|
.form-horizontal {
|
2012-01-23 16:46:26 -05:00
|
|
|
// Increase spacing between groups
|
2012-01-23 15:21:00 -05:00
|
|
|
.control-group {
|
|
|
|
margin-bottom: @baseLineHeight;
|
2012-01-28 00:20:58 -05:00
|
|
|
.clearfix();
|
2012-01-23 15:21:00 -05:00
|
|
|
}
|
2011-11-17 03:06:16 -05:00
|
|
|
// Float the labels left
|
2012-02-05 01:55:47 -05:00
|
|
|
.control-label {
|
2011-11-17 03:06:16 -05:00
|
|
|
float: left;
|
2012-01-15 15:53:35 -05:00
|
|
|
width: 140px;
|
2011-11-17 03:06:16 -05:00
|
|
|
padding-top: 5px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
// Move over all input controls and content
|
|
|
|
.controls {
|
2012-01-15 15:53:35 -05:00
|
|
|
margin-left: 160px;
|
2011-11-17 03:06:16 -05:00
|
|
|
}
|
2012-02-21 16:43:13 -05:00
|
|
|
// Remove bottom margin on block level help text since that's accounted for on .control-group
|
|
|
|
.help-block {
|
|
|
|
margin-top: @baseLineHeight / 2;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2011-11-17 03:06:16 -05:00
|
|
|
// Move over buttons in .form-actions to align with .controls
|
|
|
|
.form-actions {
|
2012-01-15 15:53:35 -05:00
|
|
|
padding-left: 160px;
|
2011-11-17 03:06:16 -05:00
|
|
|
}
|
2011-09-29 04:40:27 -04:00
|
|
|
}
|