perfect-gui 4.11.13 → 4.11.15
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/perfect-gui.mjs
CHANGED
|
@@ -219,6 +219,11 @@ const P = (
|
|
|
219
219
|
border-radius: 3px;
|
|
220
220
|
border: 1px solid var(--color-border-2);
|
|
221
221
|
outline: none;
|
|
222
|
+
|
|
223
|
+
option {
|
|
224
|
+
background: white;
|
|
225
|
+
color: black;
|
|
226
|
+
}
|
|
222
227
|
}
|
|
223
228
|
|
|
224
229
|
.p-gui__list-dropdown:hover {
|
|
@@ -433,9 +438,10 @@ const P = (
|
|
|
433
438
|
display: flex;
|
|
434
439
|
flex-wrap: wrap;
|
|
435
440
|
border: 1px solid var(--color-border-2);
|
|
436
|
-
padding: 0
|
|
441
|
+
padding: 0 2px 0 3px;
|
|
437
442
|
border-radius: var(--main-border-radius);
|
|
438
443
|
box-sizing: border-box;
|
|
444
|
+
border-left: 1px solid #bbbbbb;
|
|
439
445
|
}
|
|
440
446
|
|
|
441
447
|
.p-gui__folder--first {
|
package/dist/perfect-gui.umd.js
CHANGED
|
@@ -137,6 +137,11 @@
|
|
|
137
137
|
border-radius: 3px;
|
|
138
138
|
border: 1px solid var(--color-border-2);
|
|
139
139
|
outline: none;
|
|
140
|
+
|
|
141
|
+
option {
|
|
142
|
+
background: white;
|
|
143
|
+
color: black;
|
|
144
|
+
}
|
|
140
145
|
}
|
|
141
146
|
|
|
142
147
|
.p-gui__list-dropdown:hover {
|
|
@@ -336,9 +341,10 @@
|
|
|
336
341
|
display: flex;
|
|
337
342
|
flex-wrap: wrap;
|
|
338
343
|
border: 1px solid var(--color-border-2);
|
|
339
|
-
padding: 0
|
|
344
|
+
padding: 0 2px 0 3px;
|
|
340
345
|
border-radius: var(--main-border-radius);
|
|
341
346
|
box-sizing: border-box;
|
|
347
|
+
border-left: 1px solid #bbbbbb;
|
|
342
348
|
}
|
|
343
349
|
|
|
344
350
|
.p-gui__folder--first {
|
package/package.json
CHANGED