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