File tree Expand file tree Collapse file tree 1 file changed +7
-15
lines changed Expand file tree Collapse file tree 1 file changed +7
-15
lines changed Original file line number Diff line number Diff line change 13
13
/* Rtl support - Because we're using a flexbox-based layout, the `dir="rtl"` HTML
14
14
attribute does most of the work for us by rearranging the child elements visually.
15
15
*/
16
- .v-select [dir = " rtl" ] .v-select__actions {
16
+ .v-select [dir = " rtl" ] .vs__actions {
17
17
padding : 0 3px 0 4px ;
18
18
}
19
19
.v-select [dir = " rtl" ] .dropdown-toggle .clear {
73
73
border-radius : 4px ;
74
74
white-space : normal ;
75
75
}
76
- .v-select .dropdown-toggle :after {
77
- visibility : hidden ;
78
- display : block ;
79
- font-size : 0 ;
80
- content : " " ;
81
- clear : both ;
82
- height : 0 ;
83
- }
84
- .v-select .v-select__selected-options {
76
+ .v-select .vs__selected-options {
85
77
display : flex ;
86
78
flex-basis : 100% ;
87
79
flex-grow : 1 ;
88
80
flex-wrap : wrap ;
89
81
padding : 0 2px ;
90
82
}
91
- .v-select .v-select__actions {
83
+ .v-select .vs__actions {
92
84
display : flex ;
93
85
align-items : stretch ;
94
- padding : 0 4 px 0 3px ;
86
+ padding : 0 6 px 0 3px ;
95
87
}
96
88
97
89
/* Clear Button */
324
316
325
317
<template >
326
318
<div :dir =" dir" class =" dropdown v-select" :class =" dropdownClasses" >
327
- <div ref =" toggle" @mousedown.prevent =" toggleDropdown" class =" dropdown-toggle clearfix " >
319
+ <div ref =" toggle" @mousedown.prevent =" toggleDropdown" class =" dropdown-toggle" >
328
320
329
- <div class =" v-select__selected -options" ref =" selectedOptions" >
321
+ <div class =" vs__selected -options" ref =" selectedOptions" >
330
322
<slot v-for =" option in valueAsArray" name =" selected-option-container"
331
323
:option =" (typeof option === 'object')?option:{[label]: option}" :deselect =" deselect" :multiple =" multiple" :disabled =" disabled" >
332
324
<span class =" selected-tag" v-bind:key =" option.index" >
362
354
>
363
355
364
356
</div >
365
- <div class =" v-select__actions " >
357
+ <div class =" vs__actions " >
366
358
<button
367
359
v-show =" showClearButton"
368
360
:disabled =" disabled"
You can’t perform that action at this time.
0 commit comments