quasar-ui-sellmate-ui-kit 3.14.21 → 3.14.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/SSelectSearch.vue +24 -25
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
class="s-select-search"
|
|
11
11
|
:popup-content-class="
|
|
12
12
|
[
|
|
13
|
-
's-select-opts',
|
|
13
|
+
's-select-opts s-select-opts__select-search',
|
|
14
14
|
`s-select-opt-${id}`,
|
|
15
15
|
isScrolled && 's-select-opts--scroll',
|
|
16
16
|
popupContentClass,
|
|
@@ -288,38 +288,37 @@
|
|
|
288
288
|
max-height: $default-height;
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
+
}
|
|
291
292
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
293
|
+
.s-select-opts.s-select-opts__select-search {
|
|
294
|
+
@extend %select-menu-list;
|
|
295
|
+
max-height: 252px !important;
|
|
296
|
+
.search-input-form-container {
|
|
297
|
+
position: sticky;
|
|
298
|
+
top: 0px;
|
|
299
|
+
padding: 4px;
|
|
300
|
+
z-index: 1;
|
|
301
|
+
background-color: white;
|
|
302
|
+
}
|
|
303
|
+
&.s-select-opts--scroll {
|
|
295
304
|
.search-input-form-container {
|
|
296
|
-
|
|
297
|
-
top: 0px;
|
|
298
|
-
padding: 4px;
|
|
299
|
-
z-index: 1;
|
|
300
|
-
background-color: white;
|
|
301
|
-
}
|
|
302
|
-
&--scroll {
|
|
303
|
-
.search-input-form-container {
|
|
304
|
-
box-shadow: 2px 2px 8px 2px #00000033;
|
|
305
|
-
}
|
|
305
|
+
box-shadow: 2px 2px 8px 2px #00000033;
|
|
306
306
|
}
|
|
307
|
+
}
|
|
307
308
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
309
|
+
.q-virtual-scroll__content .q-manual-focusable--focused {
|
|
310
|
+
background-color: transparent !important;
|
|
311
|
+
color: $grey_90 !important;
|
|
312
|
+
}
|
|
312
313
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
}
|
|
314
|
+
.q-virtual-scroll__content .custom-select-options {
|
|
315
|
+
&.custom-select-options--selected,
|
|
316
|
+
&:hover {
|
|
317
|
+
background-color: $brilliantblue_75 !important;
|
|
318
|
+
color: white !important;
|
|
319
319
|
}
|
|
320
320
|
}
|
|
321
321
|
}
|
|
322
|
-
|
|
323
322
|
.custom-select-options {
|
|
324
323
|
height: $default-height;
|
|
325
324
|
}
|