Skip to content

Commit

Permalink
fix(select): change item count color if select is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Erbil Nas committed Feb 8, 2024
1 parent 22f71c7 commit 0eba2aa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/select/bl-select.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@
text-overflow: ellipsis;
}

:host([disabled]) .select-input .selected-options {
color: var(--bl-color-neutral-light);
}

.selected-options li {
display: inline;
font-size: var(--font-size);
Expand All @@ -176,6 +180,10 @@
display: none;
}

:host([disabled]) .additional-selection-count {
color: var(--bl-color-neutral-light);
}

:host([disabled]) .selected-options li {
color: var(--bl-color-neutral-light);
}
Expand Down

0 comments on commit 0eba2aa

Please sign in to comment.