CSR-918 Fix styling based on Bryan's feedback

This commit is contained in:
Katie 2022-11-03 17:02:31 -04:00
parent 5df0e3b087
commit f4c23cb5b5
3 changed files with 21 additions and 6 deletions

View file

@ -11,15 +11,21 @@ html {
} }
&:hover { &:hover {
position: relative; input[type="radio"],
@include box-shadow-hover($red-200); input[type="checkbox"] {
z-index: 4; + .button-content {
position: relative;
z-index: 4;
@include box-shadow-hover($red-200);
}
}
} }
} }
&.ui-radio { &.ui-radio {
&:hover { &:hover {
input { input[type="radio"],
input[type="checkbox"] {
@include box-shadow-hover($red-200); @include box-shadow-hover($red-200);
} }
} }

View file

@ -5,7 +5,16 @@
&.list-button, &.list-button,
&.list-button-horizontal, &.list-button-horizontal,
&.list-card { &.list-card {
@include box-shadow-hover($blue-300); input[type="radio"],
input[type="checkbox"] {
&:not(:checked) {
+ .button-content {
position: relative;
z-index: 4;
@include box-shadow-hover($blue-300);
}
}
}
} }
} }
} }

View file

@ -64,7 +64,7 @@ export default {
} }
&:hover { &:hover {
.form-check-input { .form-check-input:not(:checked) {
box-shadow: 0 0 0 4px $blue-300; box-shadow: 0 0 0 4px $blue-300;
} }
} }