-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: switch to use vue-select instead of Multiselect (#2274)
* fix: switch to use vue-select instead of Multiselect * fix: remove unnecessary Multiselect workaround * fix: work in progress, styling of v-select control * fix: make sure there's a pointer cursor on the open indicator * fix: remove custom styling for now * fix: don't submit the form on enter for open dropdowns When enter is used to select options in a dropdown that will stay open, don't submit the form.
- Loading branch information
1 parent
8bf99c5
commit 3baacc6
Showing
4 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* Make vue-select dropdowns match the height for other form controls */ | ||
.vs__dropdown-toggle { | ||
padding-top: 4px; | ||
padding-bottom: 7px; | ||
padding-left: 4px; | ||
padding-right: 4px; | ||
} | ||
|
||
.vs__open-indicator { | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters