@quidgest/ui 0.16.17 → 0.16.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 +35 -9
- package/dist/ui.esm.js +124 -120
- package/dist/ui.js +4 -4
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +15 -15
- package/dist/ui.scss +38 -10
- package/esm/components/QSwitch/QSwitch.d.ts.map +1 -1
- package/esm/components/QSwitch/QSwitch.vue.js +28 -24
- package/esm/templates/theme.js +35 -35
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -229,6 +229,7 @@ to ensure consistent appearance across different browsers.
|
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
body {
|
|
232
|
+
background-color: var(--q-theme-background);
|
|
232
233
|
font-size: 0.9rem;
|
|
233
234
|
color: var(--q-theme-on-background);
|
|
234
235
|
caret-color: var(--q-theme-on-background);
|
|
@@ -250,6 +251,29 @@ body *::-webkit-scrollbar-track {
|
|
|
250
251
|
border-radius: var(--border-radius);
|
|
251
252
|
}
|
|
252
253
|
|
|
254
|
+
a {
|
|
255
|
+
text-decoration: underline;
|
|
256
|
+
text-decoration-color: transparent;
|
|
257
|
+
transition: color 0.15s, text-decoration-color 0.15s;
|
|
258
|
+
}
|
|
259
|
+
a:not(:visited) {
|
|
260
|
+
color: var(--q-theme-primary);
|
|
261
|
+
}
|
|
262
|
+
a:visited {
|
|
263
|
+
color: #6a0dad;
|
|
264
|
+
}
|
|
265
|
+
a:hover, a:focus {
|
|
266
|
+
color: var(--q-theme-primary-dark);
|
|
267
|
+
text-decoration-color: currentcolor;
|
|
268
|
+
}
|
|
269
|
+
a:active {
|
|
270
|
+
color: var(--q-theme-primary-dark);
|
|
271
|
+
text-decoration: none;
|
|
272
|
+
}
|
|
273
|
+
a:focus {
|
|
274
|
+
outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
|
|
275
|
+
}
|
|
276
|
+
|
|
253
277
|
.fade-enter-from,
|
|
254
278
|
.fade-leave-to {
|
|
255
279
|
opacity: 0;
|
|
@@ -926,7 +950,7 @@ body *::-webkit-scrollbar-track {
|
|
|
926
950
|
margin: 0;
|
|
927
951
|
font-size: 0.75rem;
|
|
928
952
|
color: var(--q-theme-neutral);
|
|
929
|
-
padding-top: 0.
|
|
953
|
+
padding-top: 0.5rem;
|
|
930
954
|
}
|
|
931
955
|
.q-card__content {
|
|
932
956
|
display: flex;
|
|
@@ -2687,7 +2711,7 @@ body *::-webkit-scrollbar-track {
|
|
|
2687
2711
|
align-items: center;
|
|
2688
2712
|
justify-content: center;
|
|
2689
2713
|
position: relative;
|
|
2690
|
-
color:
|
|
2714
|
+
color: var(--q-theme-neutral);
|
|
2691
2715
|
font-size: 0.875rem;
|
|
2692
2716
|
}
|
|
2693
2717
|
|
|
@@ -2701,18 +2725,17 @@ body *::-webkit-scrollbar-track {
|
|
|
2701
2725
|
.q-divider--horizontal:not(.q-divider--labeled)::before {
|
|
2702
2726
|
content: "";
|
|
2703
2727
|
flex: 1;
|
|
2704
|
-
border-top: 1px
|
|
2728
|
+
border-top-width: 1px;
|
|
2705
2729
|
}
|
|
2706
2730
|
|
|
2707
2731
|
/* Labeled horizontal: lines + label */
|
|
2708
2732
|
.q-divider--horizontal.q-divider--labeled .q-divider__line {
|
|
2709
2733
|
flex: 1;
|
|
2710
|
-
border-top: 1px
|
|
2734
|
+
border-top-width: 1px;
|
|
2711
2735
|
}
|
|
2712
2736
|
|
|
2713
2737
|
.q-divider--horizontal.q-divider--labeled .q-divider__label {
|
|
2714
2738
|
padding: 0 12px;
|
|
2715
|
-
background: white;
|
|
2716
2739
|
white-space: nowrap;
|
|
2717
2740
|
}
|
|
2718
2741
|
|
|
@@ -2735,12 +2758,12 @@ body *::-webkit-scrollbar-track {
|
|
|
2735
2758
|
.q-divider--vertical:not(.q-divider--labeled)::before {
|
|
2736
2759
|
content: "";
|
|
2737
2760
|
flex: 1;
|
|
2738
|
-
border-left: 1px
|
|
2761
|
+
border-left-width: 1px;
|
|
2739
2762
|
}
|
|
2740
2763
|
|
|
2741
2764
|
/* Labeled vertical: lines + label */
|
|
2742
2765
|
.q-divider--vertical.q-divider--labeled .q-divider__line {
|
|
2743
|
-
border-left: 1px
|
|
2766
|
+
border-left-width: 1px;
|
|
2744
2767
|
height: 100%;
|
|
2745
2768
|
}
|
|
2746
2769
|
|
|
@@ -2748,7 +2771,6 @@ body *::-webkit-scrollbar-track {
|
|
|
2748
2771
|
writing-mode: vertical-rl;
|
|
2749
2772
|
text-orientation: mixed;
|
|
2750
2773
|
padding: 12px 0;
|
|
2751
|
-
background: white;
|
|
2752
2774
|
white-space: nowrap;
|
|
2753
2775
|
}
|
|
2754
2776
|
|
|
@@ -3801,7 +3823,7 @@ body *::-webkit-scrollbar-track {
|
|
|
3801
3823
|
background-color: rgb(var(--q-theme-primary-rgb)/15%);
|
|
3802
3824
|
}
|
|
3803
3825
|
.q-property-list__cell {
|
|
3804
|
-
padding: 0.
|
|
3826
|
+
padding: 0.25rem 0.5rem;
|
|
3805
3827
|
}
|
|
3806
3828
|
.q-property-list__cell--label {
|
|
3807
3829
|
width: 20%;
|
|
@@ -3809,6 +3831,10 @@ body *::-webkit-scrollbar-track {
|
|
|
3809
3831
|
text-wrap: nowrap;
|
|
3810
3832
|
opacity: 0.8;
|
|
3811
3833
|
}
|
|
3834
|
+
.q-property-list-field__container {
|
|
3835
|
+
display: flex;
|
|
3836
|
+
align-items: center;
|
|
3837
|
+
}
|
|
3812
3838
|
.q-property-list-group {
|
|
3813
3839
|
cursor: pointer;
|
|
3814
3840
|
}
|