CSR-918 Fix styling based on Bryan's feedback
This commit is contained in:
parent
5df0e3b087
commit
f4c23cb5b5
3 changed files with 21 additions and 6 deletions
|
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue