Skip to content

Commit

Permalink
fix(select): change outline-color to match state of the component
Browse files Browse the repository at this point in the history
  • Loading branch information
Divoolej committed Dec 20, 2018
1 parent 9813073 commit 607828f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scss/form/select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
cursor: $cursor-click-url, pointer;
border: none;
border-radius: 0;
outline-color: map-get($default-colors, "hover");
box-shadow: 0 4px $color-black, 0 -4px $color-black, 4px 0 $color-black, -4px 0 $color-black;

&:invalid {
Expand All @@ -46,6 +47,7 @@
}

select {
outline-color: map-get($success-colors, "hover");
box-shadow: 0 4px $color, 0 -4px $color, 4px 0 $color, -4px 0 $color;
}
}
Expand All @@ -58,6 +60,7 @@
}

select {
outline-color: map-get($warning-colors, "hover");
box-shadow: 0 4px $color, 0 -4px $color, 4px 0 $color, -4px 0 $color;
}
}
Expand All @@ -70,6 +73,7 @@
}

select {
outline-color: map-get($error-colors, "hover");
box-shadow: 0 4px $color, 0 -4px $color, 4px 0 $color, -4px 0 $color;
}
}
Expand Down

0 comments on commit 607828f

Please sign in to comment.