Merge pull request #812 from Safelite/CSR-933-accessibility-and-error-styling-fixes
CSR-933 fix error styles.
This commit is contained in:
commit
908ff5b9bb
2 changed files with 53 additions and 46 deletions
|
|
@ -3,6 +3,7 @@ html {
|
||||||
// START HOVER
|
// START HOVER
|
||||||
&.list-button-horizontal,
|
&.list-button-horizontal,
|
||||||
&.list-button,
|
&.list-button,
|
||||||
|
&.list-button.list-group,
|
||||||
&.list-card {
|
&.list-card {
|
||||||
border: 1px solid $red;
|
border: 1px solid $red;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
@ -16,6 +17,9 @@ html {
|
||||||
@include box-shadow-hover($red-200);
|
@include box-shadow-hover($red-200);
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
}
|
}
|
||||||
|
input[type="radio"]:focus + .list-button-content {
|
||||||
|
box-shadow: 0 0 0 2.5px $red;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.ui-radio {
|
&.ui-radio {
|
||||||
|
|
@ -26,6 +30,11 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.form-check-input {
|
||||||
|
&:focus {
|
||||||
|
@include box-shadow-hover($red-200);
|
||||||
|
}
|
||||||
|
}
|
||||||
// END HOVER
|
// END HOVER
|
||||||
|
|
||||||
&.list-button,
|
&.list-button,
|
||||||
|
|
|
||||||
|
|
@ -60,11 +60,10 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.list-group {
|
|
||||||
.loader {
|
.loader {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
&.list-button {
|
.list-button {
|
||||||
outline: none;
|
outline: none;
|
||||||
input[type="radio"],
|
input[type="radio"],
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
|
|
@ -112,5 +111,4 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue