Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(NcSelect): Styles on state change #4211

Merged
merged 2 commits into from
Jun 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(NcSelect): Disabled hover should not be colored
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Jun 14, 2023
commit da537d35056f26d6d05cdfe58a04e80a478716ff
2 changes: 1 addition & 1 deletion src/components/NcSelect/NcSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ body {
border-bottom-color: transparent;
}

&:not(.vs--open) .vs__dropdown-toggle:hover:not([disabled]) {
&:not(.vs--disabled, .vs--open) .vs__dropdown-toggle:hover {
border-color: var(--color-primary-element);
}

Expand Down