perfect-gui 4.6.5 → 4.6.6
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 +2 -0
- package/dist/perfect-gui.umd.js +2 -0
- package/package.json +1 -1
- package/src/styles.js +2 -0
package/dist/perfect-gui.mjs
CHANGED
|
@@ -276,6 +276,7 @@ function w(m) {
|
|
|
276
276
|
cursor: pointer;
|
|
277
277
|
border-radius: 3px;
|
|
278
278
|
border: 1px solid var(--color-border-2);
|
|
279
|
+
outline: none;
|
|
279
280
|
}
|
|
280
281
|
|
|
281
282
|
.p-gui__list-dropdown {
|
|
@@ -367,6 +368,7 @@ function w(m) {
|
|
|
367
368
|
flex-wrap: wrap;
|
|
368
369
|
border: 1px solid grey;
|
|
369
370
|
padding: 0 3px;
|
|
371
|
+
border-radius: var(--main-border-radius);
|
|
370
372
|
}
|
|
371
373
|
|
|
372
374
|
.p-gui__folder:last-of-type {
|
package/dist/perfect-gui.umd.js
CHANGED
|
@@ -273,6 +273,7 @@
|
|
|
273
273
|
cursor: pointer;
|
|
274
274
|
border-radius: 3px;
|
|
275
275
|
border: 1px solid var(--color-border-2);
|
|
276
|
+
outline: none;
|
|
276
277
|
}
|
|
277
278
|
|
|
278
279
|
.p-gui__list-dropdown {
|
|
@@ -364,6 +365,7 @@
|
|
|
364
365
|
flex-wrap: wrap;
|
|
365
366
|
border: 1px solid grey;
|
|
366
367
|
padding: 0 3px;
|
|
368
|
+
border-radius: var(--main-border-radius);
|
|
367
369
|
}
|
|
368
370
|
|
|
369
371
|
.p-gui__folder:last-of-type {
|
package/package.json
CHANGED
package/src/styles.js
CHANGED
|
@@ -279,6 +279,7 @@ export default function( position_type ) {
|
|
|
279
279
|
cursor: pointer;
|
|
280
280
|
border-radius: 3px;
|
|
281
281
|
border: 1px solid var(--color-border-2);
|
|
282
|
+
outline: none;
|
|
282
283
|
}
|
|
283
284
|
|
|
284
285
|
.p-gui__list-dropdown {
|
|
@@ -370,6 +371,7 @@ export default function( position_type ) {
|
|
|
370
371
|
flex-wrap: wrap;
|
|
371
372
|
border: 1px solid grey;
|
|
372
373
|
padding: 0 3px;
|
|
374
|
+
border-radius: var(--main-border-radius);
|
|
373
375
|
}
|
|
374
376
|
|
|
375
377
|
.p-gui__folder:last-of-type {
|