Skip to content

Commit

Permalink
Merge pull request #3701 from nextcloud/fix/vue-select
Browse files Browse the repository at this point in the history
  • Loading branch information
Pytal authored Feb 6, 2023
2 parents 8491ffd + f374528 commit 45130cd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/NcSelect/NcSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,15 @@ export default {
margin-right: 2px;
}
&.vs--open .vs__dropdown-toggle {
border-color: var(--color-primary);
border-bottom-color: transparent;
}
&:not(.vs--open) .vs__dropdown-toggle:hover {
border-color: var(--color-primary);
}
&--no-wrap {
.vs__selected-options {
flex-wrap: nowrap;
Expand All @@ -996,6 +1005,8 @@ export default {
}
.vs__dropdown-menu {
border-color: var(--color-primary);
&--floating {
width: max-content;
position: absolute;
Expand All @@ -1009,5 +1020,9 @@ export default {
box-shadow: 0px -1px 1px 0px var(--color-box-shadow);
}
}
.vs__no-options {
color: var(--color-text-lighter)
}
}
</style>

0 comments on commit 45130cd

Please sign in to comment.