@vixcom/ui 1.7.5 → 1.7.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.
|
@@ -377,10 +377,16 @@
|
|
|
377
377
|
gap: 1rem;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
+
.p-toast {
|
|
381
|
+
white-space: unset;
|
|
382
|
+
}
|
|
380
383
|
.p-toast .p-toast-message .p-toast-icon-close {
|
|
381
384
|
min-width: 2rem;
|
|
382
385
|
border: none;
|
|
383
386
|
}
|
|
387
|
+
.p-toast ul {
|
|
388
|
+
list-style: disc;
|
|
389
|
+
}
|
|
384
390
|
|
|
385
391
|
.p-selectbutton {
|
|
386
392
|
display: flex;
|
package/dist/css/main.css
CHANGED
|
@@ -83,23 +83,12 @@ b {
|
|
|
83
83
|
.bg-text-color {
|
|
84
84
|
--opacity: 0.055;
|
|
85
85
|
position: relative;
|
|
86
|
+
background-color: color-mix(in oklch, currentColor, white 75%);
|
|
86
87
|
}
|
|
87
|
-
.bg-text:hover
|
|
88
|
-
.bg-text-color:hover
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
.bg-text::after,
|
|
92
|
-
.bg-text-color::after {
|
|
93
|
-
content: "";
|
|
94
|
-
position: absolute;
|
|
95
|
-
top: 0;
|
|
96
|
-
left: 0;
|
|
97
|
-
background-color: currentColor;
|
|
98
|
-
opacity: var(--opacity);
|
|
99
|
-
height: 100%;
|
|
100
|
-
width: 100%;
|
|
101
|
-
border-radius: inherit;
|
|
102
|
-
z-index: 0;
|
|
88
|
+
.bg-text:is(a):hover, .bg-text.link:hover,
|
|
89
|
+
.bg-text-color:is(a):hover,
|
|
90
|
+
.bg-text-color.link:hover {
|
|
91
|
+
background-color: color-mix(in oklch, currentColor, white 70%);
|
|
103
92
|
}
|
|
104
93
|
|
|
105
94
|
.is-blur {
|
|
@@ -1171,6 +1160,19 @@ table {
|
|
|
1171
1160
|
}
|
|
1172
1161
|
|
|
1173
1162
|
/* Modal Close Button - End */
|
|
1163
|
+
.collapsable {
|
|
1164
|
+
overflow: scroll;
|
|
1165
|
+
transition-property: max-height cubic-bezier(0.4, 0, 0.2, 1) 150ms;
|
|
1166
|
+
max-height: 100vh;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.trigger:checked ~ .icon {
|
|
1170
|
+
transform: rotate(180deg);
|
|
1171
|
+
}
|
|
1172
|
+
.trigger:checked ~ .collapsable {
|
|
1173
|
+
max-height: 0;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1174
1176
|
/* Scrollable Container - Start */
|
|
1175
1177
|
.scroll-container {
|
|
1176
1178
|
position: relative;
|
package/dist/package.json
CHANGED