CSR-933 fix error styles.

This commit is contained in:
Bryan Mauger 2022-11-11 09:04:57 -05:00
parent 03ffdf1878
commit 6d233b521d
2 changed files with 53 additions and 46 deletions

View file

@ -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,

View file

@ -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>