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 {
position: relative;
@include box-shadow-hover($red-200);
z-index: 4;
input[type="radio"],
input[type="checkbox"] {
+ .button-content {
position: relative;
z-index: 4;
@include box-shadow-hover($red-200);
}
}
}
}
&.ui-radio {
&:hover {
input {
input[type="radio"],
input[type="checkbox"] {
@include box-shadow-hover($red-200);
}
}

View file

@ -5,7 +5,16 @@
&.list-button,
&.list-button-horizontal,
&.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 {
.form-check-input {
.form-check-input:not(:checked) {
box-shadow: 0 0 0 4px $blue-300;
}
}