Skip to content

Commit

Permalink
proper colors on selected-indeterminate and non-selected in clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
nucleogenesis committed Sep 10, 2024
1 parent ea4709b commit 8c717d0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Checkbox
ref="checkbox"
class="ma-0 pa-0"
:class="{ selectedIndeterminate: !selected && indeterminate }"
:inputValue="selected"
:indeterminate="indeterminate"
@input="goNextSelectionState"
Expand Down Expand Up @@ -140,4 +141,8 @@
line-height: 1.3 !important;
}
/deep/ .selectedIndeterminate svg {
fill: gray !important;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<Checkbox
ref="checkbox"
class="mt-0 pt-0"
:class="{ selectedIndeterminate: !selected && indeterminate }"
:inputValue="selected"
:indeterminate="indeterminate"
@input="goNextSelectionState"
Expand Down Expand Up @@ -303,4 +304,8 @@
line-height: 1.3 !important;
}
/deep/ .selectedIndeterminate svg {
fill: gray !important;
}
</style>

0 comments on commit 8c717d0

Please sign in to comment.