Fix disabled css selector Closes #1042 (#1076)

* Fix disabled css selector Closes #1042

* Run prettier
This commit is contained in:
Prospector
2023-04-07 18:37:18 -07:00
committed by GitHub
parent a37210b22e
commit 8d85158f91
3 changed files with 21 additions and 6 deletions

View File

@@ -778,7 +778,7 @@
}
&:disabled,
&[disabled] {
&[disabled='true'] {
cursor: not-allowed;
filter: grayscale(50%);
opacity: 0.5;
@@ -816,7 +816,7 @@ tr.button-transparent {
}
&:disabled > *,
&[disabled] > * {
&[disabled='true'] > * {
cursor: not-allowed;
filter: grayscale(50%);
opacity: 0.5;
@@ -849,7 +849,7 @@ tr.button-transparent {
box-shadow: none;
&disabled,
&[disabled] {
&[disabled='true'] {
cursor: not-allowed;
box-shadow: none;
}

View File

@@ -399,7 +399,7 @@ textarea {
}
&:disabled,
&[disabled] {
&[disabled='true'] {
opacity: 0.6;
pointer-events: none;
cursor: not-allowed;