// Forms.less // Base styles for various input types, form layouts, and states // ------------------------------------------------------------- // GENERAL STYLES // -------------- // Make all forms have space below them form, .uneditable-form { margin: 0 0 @baseLineHeight; > *:last-child { margin-bottom: 0; } } fieldset { padding: 0; margin: 0; border: 0; } // Groups of fields with labels on top (legends) legend { display: block; width: 100%; padding: 0; margin-bottom: @baseLineHeight * 1.5; font-size: @baseFontSize * 1.5; line-height: @baseLineHeight * 2; color: @grayDark; border: 0; border-bottom: 1px solid #eee; } // Set font for forms label, input, button, select, textarea { #font > .sans-serif(@baseFontSize,normal,@baseLineHeight); } // Identify controls by their labels label { display: block; margin-bottom: 5px; color: @grayDark; } // Inputs, Textareas, Selects input, textarea, select, .uneditable-input, .uneditable-textarea { display: inline-block; width: 210px; height: @baseLineHeight; padding: 4px; margin-bottom: 9px; font-size: @baseFontSize; line-height: @baseLineHeight; color: @gray; border: 1px solid #ccc; .border-radius(3px); } // Inputs within a label label input, label textarea, label select { display: block; } label input[type="image"], label input[type="checkbox"], label input[type="radio"] { vertical-align: middle; } // Mini reset for unique input types input[type="image"], input[type="checkbox"], input[type="radio"] { width: auto; height: auto; padding: 0; margin: 3px 0; *margin-top: 0; /* IE7 */ line-height: normal; border: 0; cursor: pointer; .border-radius(0); } // Reset the file input to browser defaults input[type="file"] { padding: initial; line-height: initial; border: initial; background-color: @white; background-color: initial; .box-shadow(none); } // Help out input buttons input[type="button"], input[type="reset"], input[type="submit"] { width: auto; height: auto; } // Set the height of select and file controls to match text inputs select, input[type="file"] { height: 28px; /* In IE7, the height of the select element cannot be changed by height, only font-size */ *margin-top: 4px; /* For IE7, add top margin to align select with labels */ line-height: 28px; } // Chrome on Linux and Mobile Safari need background-color select { width: 220px; // default input width + 10px of padding that doesn't get applied background-color: @white; } // Make multiple select elements height not fixed select[multiple], select[size] { height: auto; } // Remove shadow from image inputs input[type="image"] { .box-shadow(none); } // Make textarea height behave textarea { height: auto; } // Hidden inputs input[type="hidden"] { display: none; } // CHECKBOXES & RADIOS // ------------------- // Indent the labels to position radios/checkboxes as hanging .radio, .checkbox { padding-left: 18px; } .radio input[type="radio"], .checkbox input[type="checkbox"] { float: left; margin-left: -18px; } // 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 .radio.inline, .checkbox.inline { display: inline-block; margin-bottom: 0; vertical-align: middle; } .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline { margin-left: 10px; // space out consecutive inline controls } // But don't forget to remove their padding on first-child .controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child { padding-top: 0; } // FOCUS STATE // ----------- input, textarea { .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); @transition: border linear .2s, box-shadow linear .2s; .transition(@transition); } input:focus, textarea:focus { border-color: rgba(82,168,236,.8); @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); .box-shadow(@shadow); outline: 0; outline: thin dotted \9; /* IE6-8 */ } input[type="file"]:focus, input[type="checkbox"]:focus, select:focus { .box-shadow(none); // override for file inputs .tab-focus(); } // 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; } // Grid style input sizes input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"], .uneditable-textarea[class*="span"] { float: none; margin-left: 0; } // GRID SIZING FOR INPUTS // ---------------------- #inputGridSystem > .generate(@gridColumns, @gridColumnWidth, @gridGutterWidth); // DISABLED STATE // -------------- // Disabled and read-only inputs input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] { background-color: #f5f5f5; border-color: #ddd; cursor: not-allowed; } // FORM FIELD FEEDBACK STATES // -------------------------- // Mixin for form field states .formFieldState(@textColor: #555, @borderColor: #ccc, @backgroundColor: #f5f5f5) { // Set the text color > label, .help-block, .help-inline { color: @textColor; } // Style inputs accordingly input, select, textarea { color: @textColor; border-color: @borderColor; &:focus { border-color: darken(@borderColor, 10%); .box-shadow(0 0 6px lighten(@borderColor, 20%)); } } // Give a small background color for input-prepend/-append .input-prepend .add-on, .input-append .add-on { color: @textColor; background-color: @backgroundColor; border-color: @textColor; } } // Warning .control-group.warning { .formFieldState(@warningText, @warningText, @warningBackground); } // Error .control-group.error { .formFieldState(@errorText, @errorText, @errorBackground); } // Success .control-group.success { .formFieldState(@successText, @successText, @successBackground); } // HTML5 invalid states // Shares styles with the .control-group.error above input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid { color: #b94a48; border-color: #ee5f5b; &:focus { border-color: darken(#ee5f5b, 10%); .box-shadow(0 0 6px lighten(#ee5f5b, 20%)); } } // FORM ACTIONS // ------------ .form-actions { padding: (@baseLineHeight - 1) 20px @baseLineHeight; margin-top: @baseLineHeight; margin-bottom: @baseLineHeight; background-color: #f5f5f5; border-top: 1px solid #ddd; } // UNEDITABLE INPUTS // ------------ // For text that needs to appear as an input but should not be an input .uneditable-input, .uneditable-textarea { display: block; background-color: @white; border-color: #eee; .box-shadow(inset 0 1px 2px rgba(0,0,0,.025)); cursor: text; padding: 4px 3px 4px 5px; } .uneditable-input[disabled], .uneditable-textarea[disabled] { background-color: #f5f5f5; border-color: #ddd; cursor: not-allowed; } .uneditable-input { white-space: pre; overflow: hidden; } .uneditable-textarea { height: 3 * @baseLineHeight; white-space: pre-wrap; overflow-y: auto; overflow-x: hidden; &[rows="1"] { height: (1 + 1) * @baseLineHeight; } &[rows="2"] { height: (1 + 2) * @baseLineHeight; } &[rows="3"] { height: (1 + 3) * @baseLineHeight; } &[rows="4"] { height: (1 + 4) * @baseLineHeight; } &[rows="5"] { height: (1 + 5) * @baseLineHeight; } &[rows="6"] { height: (1 + 6) * @baseLineHeight; } &[rows="7"] { height: (1 + 7) * @baseLineHeight; } &[rows="8"] { height: (1 + 8) * @baseLineHeight; } &[rows="9"] { height: (1 + 9) * @baseLineHeight; } &[rows="10"] { height: (1 + 10) * @baseLineHeight; } &[rows="11"] { height: (1 + 11) * @baseLineHeight; } &[rows="12"] { height: (1 + 12) * @baseLineHeight; } &[rows="13"] { height: (1 + 13) * @baseLineHeight; } &[rows="14"] { height: (1 + 14) * @baseLineHeight; } &[rows="15"] { height: (1 + 15) * @baseLineHeight; } &[rows="16"] { height: (1 + 16) * @baseLineHeight; } &[rows="17"] { height: (1 + 17) * @baseLineHeight; } &[rows="18"] { height: (1 + 18) * @baseLineHeight; } &[rows="19"] { height: (1 + 19) * @baseLineHeight; } &[rows="20"] { height: (1 + 20) * @baseLineHeight; } &[rows="21"] { height: (1 + 21) * @baseLineHeight; } &[rows="22"] { height: (1 + 22) * @baseLineHeight; } &[rows="23"] { height: (1 + 23) * @baseLineHeight; } &[rows="24"] { height: (1 + 24) * @baseLineHeight; } &[rows="25"] { height: (1 + 25) * @baseLineHeight; } &[rows="26"] { height: (1 + 26) * @baseLineHeight; } &[rows="27"] { height: (1 + 27) * @baseLineHeight; } &[rows="28"] { height: (1 + 28) * @baseLineHeight; } &[rows="29"] { height: (1 + 29) * @baseLineHeight; } &[rows="30"] { height: (1 + 30) * @baseLineHeight; } &[rows="35"] { height: (1 + 35) * @baseLineHeight; } &[rows="40"] { height: (1 + 40) * @baseLineHeight; } &[rows="45"] { height: (1 + 45) * @baseLineHeight; } &[rows="50"] { height: (1 + 50) * @baseLineHeight; } &[rows="55"] { height: (1 + 55) * @baseLineHeight; } &[rows="60"] { height: (1 + 60) * @baseLineHeight; } &[rows="65"] { height: (1 + 65) * @baseLineHeight; } &[rows="70"] { height: (1 + 70) * @baseLineHeight; } &[rows="75"] { height: (1 + 75) * @baseLineHeight; } &[rows="80"] { height: (1 + 80) * @baseLineHeight; } &[rows="85"] { height: (1 + 85) * @baseLineHeight; } &[rows="90"] { height: (1 + 90) * @baseLineHeight; } &[rows="95"] { height: (1 + 95) * @baseLineHeight; } &[rows="100"] { height: (1 + 100) * @baseLineHeight; } } // Placeholder text gets special styles; can't be bundled together though for some reason .placeholder(@grayLight); // EDITOR INPUT // ------------ .editor { .box-sizing(border-box); height: 100px; width: 100%; padding: 5px; } .editor-ckeditor { height: 277px; } .uneditable-textarea.editor-ckeditor { white-space: normal; padding: 5px 3px 5px 5px; } textarea.editor-ckeditor { visibility: hidden; // Assume it will be replaced } // HELP TEXT // --------- .help-block { margin-top: 5px; margin-bottom: 0; color: @grayLight; } .help-inline { display: inline-block; .ie7-inline-block(); margin-bottom: 9px; vertical-align: middle; padding-left: 5px; } // INPUT GROUPS // ------------ // Allow us to put symbols and text within the input field for a cleaner look .input-prepend, .input-append { margin-bottom: 0px; .clearfix(); // Clear the float to prevent wrapping input, .uneditable-input { .border-radius(0 3px 3px 0); &:focus { position: relative; z-index: 2; } } .uneditable-input { border-left-color: #ccc; } .add-on { float: left; display: block; width: auto; min-width: 16px; height: @baseLineHeight; margin-right: -1px; padding: 4px 5px; font-weight: normal; line-height: @baseLineHeight; color: @grayLight; text-align: center; text-shadow: 0 1px 0 @white; background-color: #f5f5f5; border: 1px solid #ccc; .border-radius(3px 0 0 3px); } .active { background-color: lighten(@green, 30); border-color: @green; } } .input-prepend { .add-on { *margin-top: 1px; /* IE6-7 */ } } .input-append { input, .uneditable-input { float: left; .border-radius(3px 0 0 3px); } .uneditable-input { border-right-color: #ccc; } .add-on { margin-right: 0; margin-left: -1px; .border-radius(0 3px 3px 0); } 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; } } } // SEARCH FORM // ----------- .search-query { padding-left: 14px; padding-right: 14px; margin-bottom: 0; // remove the default margin on all inputs .border-radius(14px); } // UNEDITABLE FORM // --------------- .uneditable-form { .form-actions { background-color: transparent; } } // HORIZONTAL & VERTICAL FORMS // --------------------------- // Common properties // ----------------- .form-search, .form-inline, .form-horizontal { input, textarea, select, .help-inline { display: inline-block; margin-bottom: 0; } .uneditable-input, .uneditable-textarea { margin-bottom: 0; } } .form-search label, .form-inline label, .form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend { display: inline-block; } // Make the prepend and append add-on vertical-align: middle; .form-search .input-append .add-on, .form-inline .input-prepend .add-on, .form-search .input-append .add-on, .form-inline .input-prepend .add-on { vertical-align: middle; } // Margin to space out fieldsets .control-group { margin-bottom: @baseLineHeight / 2; } // Horizontal-specific styles // -------------------------- .form-horizontal { // Legend collapses margin, so we're relegated to padding legend + .control-group { margin-top: @baseLineHeight; -webkit-margin-top-collapse: separate; } // Increase spacing between groups .control-group { margin-bottom: @baseLineHeight; .clearfix(); } // Float the labels left .control-group > label { float: left; width: 140px; padding-top: 5px; text-align: right; } // Move over all input controls and content .controls { margin-left: 160px; } // Move over buttons in .form-actions to align with .controls .form-actions { padding-left: 160px; } } // Smaller labels // -------------- .small-labels { .control-group > label { width: 80px; } .controls { margin-left: 100px; } } // Combining horizonal and vertical forms // -------------------------------------- .form-vertical .form-horizontal { .control-group > label { text-align: left; } } .form-horizontal .form-vertical { .control-group > label { float: none; padding-top: 0; text-align: left; } .controls { margin-left: 0; } &.form-actions, .form-actions { padding-left: 20px; } } .control-group .control-group { margin-bottom: 0; } // Wells in forms // -------------- .horizontal-form .well { .control-group > label { width: 120px; } .controls { margin-left: 140px; } }