@opentiny/vue-search-box-saas 2.27.1 → 2.27.2
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/index.css +10 -1
- package/index.js +1258 -1230
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -83,6 +83,10 @@
|
|
|
83
83
|
/* Safari */
|
|
84
84
|
margin: var(--tiny-spacing-0, 0px);
|
|
85
85
|
}
|
|
86
|
+
.tiny-popper.tvp-search-box__dropdown-menu,
|
|
87
|
+
.tvp-search-box__popover {
|
|
88
|
+
padding: var(--tiny-spacing-0, 0px);
|
|
89
|
+
}
|
|
86
90
|
.tvp-search-box__popover.tiny-popover[x-placement^='bottom'] {
|
|
87
91
|
margin-top: var(--tiny-spacing-0, 0px);
|
|
88
92
|
}
|
|
@@ -216,7 +220,6 @@
|
|
|
216
220
|
}
|
|
217
221
|
.tvp-search-box__checkbox-wrap {
|
|
218
222
|
max-height: 186px;
|
|
219
|
-
overflow: auto;
|
|
220
223
|
}
|
|
221
224
|
.tvp-search-box__checkbox {
|
|
222
225
|
flex-direction: column;
|
|
@@ -332,3 +335,9 @@
|
|
|
332
335
|
.tvp-search-box__input-wrapper .tvp-search-box__dropdown .tvp-search-box__input .tiny-input__inner {
|
|
333
336
|
padding-left: var(--tiny-spacing-0, 0px);
|
|
334
337
|
}
|
|
338
|
+
.tvp-search-box.hide-prefix-icon {
|
|
339
|
+
padding-left: var(--tiny-spacing-4, 1.000rem);
|
|
340
|
+
}
|
|
341
|
+
.tvp-search-box__suffix-icon-slot {
|
|
342
|
+
margin-right: var(--tiny-spacing-1, 0.250rem);
|
|
343
|
+
}
|