@quidgest/ui 0.5.16 → 0.5.18
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/ui.css +4 -14
- package/dist/ui.esm.js +1 -1
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +1 -1
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +6 -29
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -285,7 +285,6 @@ body {
|
|
|
285
285
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
286
286
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
287
287
|
transition-duration: 0.15s;
|
|
288
|
-
line-height: 15px;
|
|
289
288
|
}
|
|
290
289
|
.q-btn:hover:not(:disabled) {
|
|
291
290
|
cursor: pointer;
|
|
@@ -305,18 +304,11 @@ body {
|
|
|
305
304
|
align-items: center;
|
|
306
305
|
justify-content: center;
|
|
307
306
|
font-size: 0.9rem;
|
|
307
|
+
line-height: 0.9rem;
|
|
308
|
+
min-width: 0.9rem;
|
|
308
309
|
white-space: nowrap;
|
|
309
310
|
gap: 0.25rem;
|
|
310
311
|
pointer-events: none;
|
|
311
|
-
line-height: 15px;
|
|
312
|
-
min-width: 15px;
|
|
313
|
-
}
|
|
314
|
-
.q-btn .e-icon__svg {
|
|
315
|
-
padding: 0;
|
|
316
|
-
margin: 0;
|
|
317
|
-
fill: currentColor;
|
|
318
|
-
width: 15px;
|
|
319
|
-
height: 15px;
|
|
320
312
|
}
|
|
321
313
|
.q-btn .q-spinner-loader {
|
|
322
314
|
color: currentColor;
|
|
@@ -385,10 +377,6 @@ body {
|
|
|
385
377
|
font-size: 0.75rem;
|
|
386
378
|
line-height: 14px;
|
|
387
379
|
}
|
|
388
|
-
.q-btn--small .e-icon__svg {
|
|
389
|
-
width: 14px;
|
|
390
|
-
height: 14px;
|
|
391
|
-
}
|
|
392
380
|
.q-btn--borderless {
|
|
393
381
|
border-color: transparent !important;
|
|
394
382
|
}
|
|
@@ -442,6 +430,8 @@ body {
|
|
|
442
430
|
}
|
|
443
431
|
.q-icon__svg {
|
|
444
432
|
fill: currentColor;
|
|
433
|
+
}
|
|
434
|
+
.q-icon__svg, .q-icon__img {
|
|
445
435
|
width: 1em;
|
|
446
436
|
height: 1em;
|
|
447
437
|
}
|
package/dist/ui.esm.js
CHANGED