1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 17:11:48 +02:00

Add $input-bg-focus and $input-color-focus variables

This commit is contained in:
Kevin P. Kucharczyk
2016-03-02 17:41:20 +01:00
parent 4480b684a3
commit 585e5e9adf
2 changed files with 4 additions and 0 deletions

View File

@@ -56,7 +56,9 @@
// contrast against a dark gray background.
@mixin form-control-focus() {
&:focus {
color: $input-color-focus;
border-color: $input-border-focus;
background-color: $input-bg-focus;
outline: none;
$shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $input-box-shadow-focus;
@include box-shadow($shadow);