From 5271ed7c70e838150e5505bf5c29f9400b68dbe0 Mon Sep 17 00:00:00 2001 From: Brandon Bey Date: Thu, 30 Mar 2017 16:21:18 -0700 Subject: [PATCH 1/4] Added features to non multiple selects - added a single class to the selected-tag for non multiple selects - added styling to the single selected-tag to differentiate it from the default --- src/components/Select.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/components/Select.vue b/src/components/Select.vue index 56e35db..13e8285 100644 --- a/src/components/Select.vue +++ b/src/components/Select.vue @@ -115,6 +115,14 @@ float: left; line-height: 24px; } + .v-select .selected-tag.single { + background-color: transparent; + border-color: transparent; + } + .v-select.open .selected-tag.single { + position: absolute; + opacity: 0.5; + } .v-select .selected-tag .close { float: none; margin-right: 0; @@ -254,7 +262,7 @@