Skip to content

Commit

Permalink
Remove checkbox label purple color
Browse files Browse the repository at this point in the history
  • Loading branch information
akhuoa committed Nov 12, 2024
1 parent cd633d0 commit 842ddc1
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/components/SelectionsGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
:key="item[identifierKey]"
:label="item[identifierKey]"
>
<div class="checkbox-container"
<div class="checkbox-container"
@mouseenter="checkboxMouseEnterEmit(item[identifierKey], true)"
@mouseleave="checkboxMouseEnterEmit(item[identifierKey], false)"
>
Expand Down Expand Up @@ -171,7 +171,7 @@ export default {
this.checkedItems = val
? this.selections.map((a) => a[this.identifierKey])
: []
this.$emit('checkAll', {
keys: this.selections.map((a) => a[this.identifierKey]),
value: val,
Expand Down Expand Up @@ -312,7 +312,7 @@ export default {
:deep(.el-checkbox__label) {
padding-left: 5px;
color: $app-primary-color;
color: inherit !important;
font-size: 12px;
font-weight: 500;
letter-spacing: 0px;
Expand All @@ -335,10 +335,6 @@ export default {
margin-bottom: 0;
}
:deep(.el-checkbox__label) {
color: $app-primary-color !important;
}
.checkbox-row {
width: 100%;
top: 2px;
Expand Down

0 comments on commit 842ddc1

Please sign in to comment.