Skip to content

Commit de2efaa

Browse files
committed
proper colors on selected-indeterminate and non-selected in clipboard
1 parent 507fa32 commit de2efaa

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

contentcuration/contentcuration/frontend/channelEdit/components/Clipboard/Channel.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<Checkbox
1313
ref="checkbox"
1414
class="ma-0 pa-0"
15+
:class="{ selectedIndeterminate: !selected && indeterminate }"
1516
:inputValue="selected"
1617
:indeterminate="indeterminate"
1718
@input="goNextSelectionState"
@@ -140,4 +141,8 @@
140141
line-height: 1.3 !important;
141142
}
142143
144+
/deep/ .selectedIndeterminate svg {
145+
fill: gray !important;
146+
}
147+
143148
</style>

contentcuration/contentcuration/frontend/channelEdit/components/Clipboard/ContentNode.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<Checkbox
3333
ref="checkbox"
3434
class="mt-0 pt-0"
35+
:class="{ selectedIndeterminate: !selected && indeterminate }"
3536
:inputValue="selected"
3637
:indeterminate="indeterminate"
3738
@input="goNextSelectionState"
@@ -303,4 +304,8 @@
303304
line-height: 1.3 !important;
304305
}
305306
307+
/deep/ .selectedIndeterminate svg {
308+
fill: gray !important;
309+
}
310+
306311
</style>

0 commit comments

Comments
 (0)