Merge pull request #2221 from Safelite/feature/CASH-122
Feature/cash 122 css bug fix
This commit is contained in:
commit
a19b66cee8
2 changed files with 10 additions and 4 deletions
|
|
@ -128,7 +128,7 @@ export default {
|
|||
@include blue-gradient;
|
||||
}
|
||||
&:focus, // Mouse, touch, stylus focus
|
||||
&:focus-visible {
|
||||
&:focus-visible {
|
||||
// Keyboard focus for accessibility
|
||||
outline: none;
|
||||
box-shadow:
|
||||
|
|
|
|||
|
|
@ -143,11 +143,12 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
.skip-button {
|
||||
.btn.btn-secondary.skip-button {
|
||||
order: 4;
|
||||
position: relative;
|
||||
color: $black;
|
||||
border: none;
|
||||
border-radius: .25rem;
|
||||
font-weight: 900;
|
||||
font-size: 0.875rem;
|
||||
text-align: center;
|
||||
|
|
@ -164,12 +165,17 @@ export default {
|
|||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus,
|
||||
&:focus-visible {
|
||||
&:focus {
|
||||
color: $blue-700;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
&:focus-visible {
|
||||
outline: none;
|
||||
box-shadow:
|
||||
0 0 0 3px $white,
|
||||
0 0 0 5.5px $blue-300;
|
||||
}
|
||||
|
||||
&.delay {
|
||||
// fixes flicker while transitioning between states
|
||||
|
|
|
|||
Loading…
Reference in a new issue