|
146 | 146 | opacity: .2;
|
147 | 147 | }
|
148 | 148 | /* Search Input */
|
| 149 | + .v-select input[type="search"]::-ms-clear, |
149 | 150 | .v-select input[type="search"]::-webkit-search-decoration,
|
150 | 151 | .v-select input[type="search"]::-webkit-search-cancel-button,
|
151 | 152 | .v-select input[type="search"]::-webkit-search-results-button,
|
152 | 153 | .v-select input[type="search"]::-webkit-search-results-decoration {
|
153 | 154 | display: none;
|
154 | 155 | }
|
155 |
| - .v-select input[type=search], |
156 |
| - .v-select input[type=search]:focus { |
| 156 | + .v-select input[type="search"], |
| 157 | + .v-select input[type="search"]:focus { |
157 | 158 | appearance: none;
|
| 159 | + -webkit-appearance: none; |
158 | 160 | line-height: 1.42857143;
|
159 | 161 | /*color: #555;*/
|
160 | 162 | border-radius: 4px;
|
|
174 | 176 | clear: none;
|
175 | 177 | }
|
176 | 178 | /* Search Input States */
|
177 |
| - .v-select.unsearchable input[type=search] { |
| 179 | + .v-select.unsearchable input[type="search"] { |
178 | 180 | max-width: 1px;
|
179 | 181 | }
|
180 | 182 | /* List Items */
|
|
254 | 256 | <div class="dropdown v-select" :class="dropdownClasses">
|
255 | 257 | <div ref="toggle" @mousedown.prevent="toggleDropdown" class="dropdown-toggle" type="button">
|
256 | 258 |
|
257 |
| - <span class="selected-tag" v-for="option in valueAsArray" v-bind:key="option.index"> |
258 |
| - {{ getOptionLabel(option) }} |
259 |
| - <button v-if="multiple" @click="deselect(option)" type="button" class="close"> |
260 |
| - <span aria-hidden="true">×</span> |
261 |
| - </button> |
262 |
| - </span> |
| 259 | + <span class="selected-tag" v-for="option in valueAsArray" v-bind:key="option.index"> |
| 260 | + {{ getOptionLabel(option) }} |
| 261 | + <button v-if="multiple" @click="deselect(option)" type="button" class="close"> |
| 262 | + <span aria-hidden="true">×</span> |
| 263 | + </button> |
| 264 | + </span> |
263 | 265 |
|
264 | 266 | <input
|
265 | 267 | ref="search"
|
|
282 | 284 | <i v-if="!noDrop" ref="openIndicator" role="presentation" class="open-indicator"></i>
|
283 | 285 |
|
284 | 286 | <slot name="spinner">
|
285 |
| - <div class="spinner" v-show="mutableLoading">Loading...</div> |
| 287 | + <div class="spinner" v-show="mutableLoading">Loading...</div> |
286 | 288 | </slot>
|
287 | 289 | </div>
|
288 | 290 |
|
|
0 commit comments