Skip to content

Commit

Permalink
fix placeholder hover
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnickii committed Aug 16, 2023
1 parent b4130d6 commit 6611d40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@

fluent-combobox {
&::part(control) {
.selected-value {
&::placeholder {
color: $picker-text-color;
}

&:hover {
--secondary-text-color: var(--secondary-text-hover-color);
&::placeholder {
color: $picker-text-hover-color;
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@

$picker-background-color: var(--picker-background-color, transparent);
$picker-text-color: var(--picker-text-color, var(--secondary-text-color));
$picker-text-hover-color: var(--picker-text-color-hover, var(--secondary-text-hover-color));

0 comments on commit 6611d40

Please sign in to comment.