@opentiny/vue-search-box 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 -2
- package/index.js +1258 -1230
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -121,6 +121,10 @@
|
|
|
121
121
|
.tvp-search-box__popover.tiny-popover[x-placement^='bottom'] {
|
|
122
122
|
margin-top: 0;
|
|
123
123
|
}
|
|
124
|
+
.tiny-popper.tvp-search-box__dropdown-menu,
|
|
125
|
+
.tvp-search-box__popover {
|
|
126
|
+
padding: 0;
|
|
127
|
+
}
|
|
124
128
|
.tvp-search-box {
|
|
125
129
|
--tvp-SearchBox-bg-color: var(--tv-color-bg-secondary, #ffffff);
|
|
126
130
|
--tvp-SearchBox-border-color: var(--tv-color-bg-control-unactive, #c2c2c2);
|
|
@@ -281,7 +285,6 @@
|
|
|
281
285
|
}
|
|
282
286
|
.tvp-search-box__checkbox-wrap {
|
|
283
287
|
max-height: 186px;
|
|
284
|
-
overflow: auto;
|
|
285
288
|
}
|
|
286
289
|
.tvp-search-box__checkbox {
|
|
287
290
|
flex-direction: column;
|
|
@@ -340,7 +343,6 @@
|
|
|
340
343
|
width: 100%;
|
|
341
344
|
overflow: hidden;
|
|
342
345
|
text-overflow: ellipsis;
|
|
343
|
-
padding-top: 4px;
|
|
344
346
|
}
|
|
345
347
|
.tvp-search-box__checkbox-item .tiny-dropdown-item__wrap {
|
|
346
348
|
padding: 0;
|
|
@@ -402,3 +404,9 @@
|
|
|
402
404
|
.tvp-search-box--small .tvp-search-box__prop span {
|
|
403
405
|
padding-left: 8px;
|
|
404
406
|
}
|
|
407
|
+
.tvp-search-box.hide-prefix-icon {
|
|
408
|
+
padding-left: 16px;
|
|
409
|
+
}
|
|
410
|
+
.tvp-search-box__suffix-icon-slot {
|
|
411
|
+
margin-right: 4px;
|
|
412
|
+
}
|