// Form validation states // // Used in forms.less to generate the form validation CSS for warnings, errors, // and successes. @mixin form-control-validation($body-color: #555, $border-color: #ccc, $background-color: #f5f5f5) { // Color the label and help text .help-block, .control-label, .radio, .checkbox, .radio-inline, .checkbox-inline { color: $body-color; } // Set the border and box shadow on specific inputs to match .form-control { border-color: $border-color; @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work &:focus { border-color: darken($border-color, 10%); $shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($border-color, 20%); @include box-shadow($shadow); } } // Set validation states also for addons .input-group-addon { color: $body-color; border-color: $border-color; background-color: $background-color; } // Optional feedback icon .form-control-feedback { color: $body-color; } } // Form control focus state // // Generate a customized focus state and for any input with the specified color, // which defaults to the `$input-border-focus` variable. // // We highly encourage you to not customize the default value, but instead use // this to tweak colors on an as-needed basis. This aesthetic change is based on // WebKit's default styles, but applicable to a wider range of browsers. Its // usability and accessibility should be taken into account with any change. // // Example usage: change the default blue border and shadow to white for better // contrast against a dark gray background. @mixin form-control-focus($color: #ccc) { $color-rgba: rgba(red($color), green($color), blue($color), .6); &:focus { border-color: $color; outline: 0; @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $color-rgba); } } // Form control sizing // // Relative text size, padding, and border-radii changes for form controls. For // horizontal sizing, wrap controls in the predefined grid classes. `<select>` // element gets special love because it's special, and that's a fact! // [converter] $parent hack @mixin input-size($parent, $input-height, $padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { #{$parent} { height: $input-height; padding: $padding-vertical $padding-horizontal; font-size: $font-size; line-height: $line-height; border-radius: $border-radius; } select#{$parent} { height: $input-height; line-height: $input-height; } textarea#{$parent}, select[multiple]#{$parent} { height: auto; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
_alerts.scss | File | 263 B | 0644 |
|
_background-variant.scss | File | 212 B | 0644 |
|
_border-radius.scss | File | 492 B | 0644 |
|
_buttons.scss | File | 1.04 KB | 0644 |
|
_center-block.scss | File | 126 B | 0644 |
|
_clearfix.scss | File | 611 B | 0644 |
|
_forms.scss | File | 2.61 KB | 0644 |
|
_gradients.scss | File | 4.29 KB | 0644 |
|
_grid-framework.scss | File | 2.29 KB | 0644 |
|
_grid.scss | File | 3.12 KB | 0644 |
|
_hide-text.scss | File | 599 B | 0644 |
|
_image.scss | File | 1.25 KB | 0644 |
|
_labels.scss | File | 169 B | 0644 |
|
_list-group.scss | File | 593 B | 0644 |
|
_nav-divider.scss | File | 209 B | 0644 |
|
_nav-vertical-align.scss | File | 370 B | 0644 |
|
_opacity.scss | File | 152 B | 0644 |
|
_pagination.scss | File | 460 B | 0644 |
|
_panels.scss | File | 543 B | 0644 |
|
_progress-bar.scss | File | 202 B | 0644 |
|
_reset-filter.scss | File | 246 B | 0644 |
|
_resize.scss | File | 202 B | 0644 |
|
_responsive-visibility.scss | File | 503 B | 0644 |
|
_size.scss | File | 147 B | 0644 |
|
_tab-focus.scss | File | 165 B | 0644 |
|
_table-row.scss | File | 715 B | 0644 |
|
_text-emphasis.scss | File | 189 B | 0644 |
|
_text-overflow.scss | File | 168 B | 0644 |
|
_vendor-prefixes.scss | File | 6.53 KB | 0644 |
|