mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
22 lines
851 B
SCSS
22 lines
851 B
SCSS
// Form control focus state
|
|
//
|
|
// Generate a customized focus state and for any input with the specified color,
|
|
// which defaults to the `@input-border-color-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() {
|
|
&:focus {
|
|
color: $input-color-focus;
|
|
background-color: $input-bg-focus;
|
|
border-color: $input-border-color-focus;
|
|
outline: none;
|
|
@include box-shadow($input-box-shadow-focus);
|
|
}
|
|
}
|