File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 4
4
< head >
5
5
< meta charset ="utf-8 ">
6
6
< title > Vue Select Dev</ title >
7
- < link href ="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css " rel ="stylesheet ">
8
- <!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css"> -->
7
+ <!--<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">-->
8
+ <!--<link href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.3.1/css/foundation.min.css" rel="stylesheet">-->
9
+ <!--<link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.2/css/bulma.min.css" rel="stylesheet">-->
10
+ <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css">-->
9
11
< style >
10
12
html ,
11
13
body ,
Original file line number Diff line number Diff line change 22
22
23
23
}
24
24
25
-
26
-
27
25
.dropdown-menu > li > a {
28
26
29
27
}
163
161
float : left ;
164
162
line-height : 1.7em ;
165
163
}
164
+
166
165
.v-select .selected-tag .close {
167
166
float : none ;
168
167
margin-right : 0 ;
176
175
.v-select input [type = " search" ]::-webkit-search-results-decoration {
177
176
display : none ;
178
177
}
178
+
179
179
.v-select input [type = search ],
180
180
.v-select input [type = search ]:focus {
181
181
appearance : none ;
197
197
float : left ;
198
198
clear : none ;
199
199
}
200
+
200
201
.v-select.unsearchable input [type = search ] {
201
202
max-width : 1px ;
202
203
}
230
231
color : #fff ;
231
232
}
232
233
233
-
234
234
.v-select .spinner {
235
235
opacity : 0 ;
236
236
position : absolute ;
263
263
.v-select.open .open-indicator {
264
264
bottom : 1px ;
265
265
}
266
+
266
267
.v-select.open .open-indicator :before {
267
268
transform : rotate (315deg );
268
269
}
270
+
269
271
.v-select.open .dropdown-toggle {
270
272
border-bottom : none ;
271
273
border-bottom-left-radius : 0 ;
293
295
294
296
<template >
295
297
<div class =" dropdown v-select" :class =" dropdownClasses" >
296
- <div ref =" toggle" @mousedown.prevent =" toggleDropdown" class =" dropdown-toggle clearfix " type =" button" >
298
+ <div ref =" toggle" @mousedown.prevent =" toggleDropdown" class =" dropdown-toggle" type =" button" >
297
299
298
300
<span class =" selected-tag" v-for =" option in valueAsArray" v-bind:key =" option.index" >
299
301
{{ getOptionLabel(option) }}
345
347
</div >
346
348
</template >
347
349
348
-
349
350
<script type="text/babel">
350
351
import pointerScroll from ' ../mixins/pointerScroll'
351
352
import typeAheadPointer from ' ../mixins/typeAheadPointer'
801
802
return {
802
803
open: this .dropdownOpen ,
803
804
searchable: this .searchable ,
805
+ unsearchable: ! this .searchable ,
804
806
loading: this .mutableLoading
805
807
}
806
808
},
You can’t perform that action at this time.
0 commit comments