manolis-ui 0.21.0 → 0.22.3
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/index.d.ts +17 -196
- package/dist/manolis-ui.css +1 -1
- package/dist/manolis-ui.js +1012 -1464
- package/dist/manolis-ui.umd.cjs +10 -10
- package/dist/style.css +18 -541
- package/package.json +12 -11
package/dist/style.css
CHANGED
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
17
17
|
--color-black: #000;
|
|
18
18
|
--spacing: 0.25rem;
|
|
19
|
-
--container-2xs: 18rem;
|
|
20
19
|
--container-xs: 20rem;
|
|
21
20
|
--text-xs: 0.75rem;
|
|
22
21
|
--text-xs--line-height: calc(1 / 0.75);
|
|
@@ -36,7 +35,6 @@
|
|
|
36
35
|
--font-weight-bold: 700;
|
|
37
36
|
--radius-sm: 0.25rem;
|
|
38
37
|
--radius-md: 0.375rem;
|
|
39
|
-
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
40
38
|
--default-transition-duration: 150ms;
|
|
41
39
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
42
40
|
--default-font-family: var(--font-sans);
|
|
@@ -887,9 +885,6 @@
|
|
|
887
885
|
.collapse {
|
|
888
886
|
visibility: collapse;
|
|
889
887
|
}
|
|
890
|
-
.visible {
|
|
891
|
-
visibility: visible;
|
|
892
|
-
}
|
|
893
888
|
.list {
|
|
894
889
|
display: flex;
|
|
895
890
|
flex-direction: column;
|
|
@@ -943,230 +938,6 @@
|
|
|
943
938
|
}
|
|
944
939
|
}
|
|
945
940
|
}
|
|
946
|
-
.toast {
|
|
947
|
-
position: fixed;
|
|
948
|
-
inset-inline-start: auto;
|
|
949
|
-
inset-inline-end: calc(0.25rem * 0);
|
|
950
|
-
top: auto;
|
|
951
|
-
bottom: calc(0.25rem * 0);
|
|
952
|
-
margin: calc(0.25rem * 4);
|
|
953
|
-
display: flex;
|
|
954
|
-
min-width: fit-content;
|
|
955
|
-
flex-direction: column;
|
|
956
|
-
gap: calc(0.25rem * 2);
|
|
957
|
-
background-color: transparent;
|
|
958
|
-
white-space: nowrap;
|
|
959
|
-
translate: var(--toast-x, 0) var(--toast-y, 0);
|
|
960
|
-
& > * {
|
|
961
|
-
animation: toast 0.25s ease-out;
|
|
962
|
-
}
|
|
963
|
-
&:where(.toast-start) {
|
|
964
|
-
inset-inline-start: calc(0.25rem * 0);
|
|
965
|
-
inset-inline-end: auto;
|
|
966
|
-
--toast-x: 0;
|
|
967
|
-
}
|
|
968
|
-
&:where(.toast-center) {
|
|
969
|
-
inset-inline-start: calc(1/2 * 100%);
|
|
970
|
-
inset-inline-end: calc(1/2 * 100%);
|
|
971
|
-
--toast-x: -50%;
|
|
972
|
-
}
|
|
973
|
-
&:where(.toast-end) {
|
|
974
|
-
inset-inline-start: auto;
|
|
975
|
-
inset-inline-end: calc(0.25rem * 0);
|
|
976
|
-
--toast-x: 0;
|
|
977
|
-
}
|
|
978
|
-
&:where(.toast-bottom) {
|
|
979
|
-
top: auto;
|
|
980
|
-
bottom: calc(0.25rem * 0);
|
|
981
|
-
--toast-y: 0;
|
|
982
|
-
}
|
|
983
|
-
&:where(.toast-middle) {
|
|
984
|
-
top: calc(1/2 * 100%);
|
|
985
|
-
bottom: auto;
|
|
986
|
-
--toast-y: -50%;
|
|
987
|
-
}
|
|
988
|
-
&:where(.toast-top) {
|
|
989
|
-
top: calc(0.25rem * 0);
|
|
990
|
-
bottom: auto;
|
|
991
|
-
--toast-y: 0;
|
|
992
|
-
}
|
|
993
|
-
}
|
|
994
|
-
.toast\! {
|
|
995
|
-
position: fixed !important;
|
|
996
|
-
inset-inline-start: auto !important;
|
|
997
|
-
inset-inline-end: calc(0.25rem * 0) !important;
|
|
998
|
-
top: auto !important;
|
|
999
|
-
bottom: calc(0.25rem * 0) !important;
|
|
1000
|
-
margin: calc(0.25rem * 4) !important;
|
|
1001
|
-
display: flex !important;
|
|
1002
|
-
min-width: fit-content !important;
|
|
1003
|
-
flex-direction: column !important;
|
|
1004
|
-
gap: calc(0.25rem * 2) !important;
|
|
1005
|
-
background-color: transparent !important;
|
|
1006
|
-
white-space: nowrap !important;
|
|
1007
|
-
translate: var(--toast-x, 0) var(--toast-y, 0) !important;
|
|
1008
|
-
& > * {
|
|
1009
|
-
animation: toast 0.25s ease-out !important;
|
|
1010
|
-
}
|
|
1011
|
-
&:where(.toast-start) {
|
|
1012
|
-
inset-inline-start: calc(0.25rem * 0) !important;
|
|
1013
|
-
inset-inline-end: auto !important;
|
|
1014
|
-
--toast-x: 0 !important;
|
|
1015
|
-
}
|
|
1016
|
-
&:where(.toast-center) {
|
|
1017
|
-
inset-inline-start: calc(1/2 * 100%) !important;
|
|
1018
|
-
inset-inline-end: calc(1/2 * 100%) !important;
|
|
1019
|
-
--toast-x: -50% !important;
|
|
1020
|
-
}
|
|
1021
|
-
&:where(.toast-end) {
|
|
1022
|
-
inset-inline-start: auto !important;
|
|
1023
|
-
inset-inline-end: calc(0.25rem * 0) !important;
|
|
1024
|
-
--toast-x: 0 !important;
|
|
1025
|
-
}
|
|
1026
|
-
&:where(.toast-bottom) {
|
|
1027
|
-
top: auto !important;
|
|
1028
|
-
bottom: calc(0.25rem * 0) !important;
|
|
1029
|
-
--toast-y: 0 !important;
|
|
1030
|
-
}
|
|
1031
|
-
&:where(.toast-middle) {
|
|
1032
|
-
top: calc(1/2 * 100%) !important;
|
|
1033
|
-
bottom: auto !important;
|
|
1034
|
-
--toast-y: -50% !important;
|
|
1035
|
-
}
|
|
1036
|
-
&:where(.toast-top) {
|
|
1037
|
-
top: calc(0.25rem * 0) !important;
|
|
1038
|
-
bottom: auto !important;
|
|
1039
|
-
--toast-y: 0 !important;
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
.\!toggle {
|
|
1043
|
-
border: var(--border) solid currentColor !important;
|
|
1044
|
-
color: var(--input-color) !important;
|
|
1045
|
-
position: relative !important;
|
|
1046
|
-
display: inline-grid !important;
|
|
1047
|
-
flex-shrink: 0 !important;
|
|
1048
|
-
cursor: pointer !important;
|
|
1049
|
-
appearance: none !important;
|
|
1050
|
-
place-content: center !important;
|
|
1051
|
-
vertical-align: middle !important;
|
|
1052
|
-
webkit-user-select: none !important;
|
|
1053
|
-
user-select: none !important;
|
|
1054
|
-
grid-template-columns: 0fr 1fr 1fr !important;
|
|
1055
|
-
--radius-selector-max: calc(
|
|
1056
|
-
var(--radius-selector) + var(--radius-selector) + var(--radius-selector)
|
|
1057
|
-
) !important;
|
|
1058
|
-
border-radius: calc( var(--radius-selector) + min(var(--toggle-p), var(--radius-selector-max)) + min(var(--border), var(--radius-selector-max)) ) !important;
|
|
1059
|
-
padding: var(--toggle-p) !important;
|
|
1060
|
-
box-shadow: 0 1px currentColor inset !important;
|
|
1061
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1062
|
-
box-shadow: 0 1px color-mix(in oklab, currentColor calc(var(--depth) * 10%), #0000) inset !important;
|
|
1063
|
-
}
|
|
1064
|
-
transition: color 0.3s, grid-template-columns 0.2s !important;
|
|
1065
|
-
--input-color: var(--color-base-content) !important;
|
|
1066
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1067
|
-
--input-color: color-mix(in oklab, var(--color-base-content) 50%, #0000) !important;
|
|
1068
|
-
}
|
|
1069
|
-
--toggle-p: 0.1875rem !important;
|
|
1070
|
-
--size: calc(var(--size-selector, 0.25rem) * 6) !important;
|
|
1071
|
-
width: calc((var(--size) * 2) - (var(--border) + var(--toggle-p)) * 2) !important;
|
|
1072
|
-
height: var(--size) !important;
|
|
1073
|
-
> * {
|
|
1074
|
-
z-index: 1 !important;
|
|
1075
|
-
grid-column: span 1 / span 1 !important;
|
|
1076
|
-
grid-column-start: 2 !important;
|
|
1077
|
-
grid-row-start: 1 !important;
|
|
1078
|
-
height: 100% !important;
|
|
1079
|
-
cursor: pointer !important;
|
|
1080
|
-
appearance: none !important;
|
|
1081
|
-
background-color: transparent !important;
|
|
1082
|
-
padding: calc(0.25rem * 0.5) !important;
|
|
1083
|
-
transition: opacity 0.2s, rotate 0.4s !important;
|
|
1084
|
-
border: none !important;
|
|
1085
|
-
&:focus {
|
|
1086
|
-
outline-style: none !important;
|
|
1087
|
-
@media (forced-colors: active) {
|
|
1088
|
-
outline: 2px solid transparent !important;
|
|
1089
|
-
outline-offset: 2px !important;
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
&:nth-child(2) {
|
|
1093
|
-
color: var(--color-base-100) !important;
|
|
1094
|
-
rotate: 0deg !important;
|
|
1095
|
-
}
|
|
1096
|
-
&:nth-child(3) {
|
|
1097
|
-
color: var(--color-base-100) !important;
|
|
1098
|
-
opacity: 0% !important;
|
|
1099
|
-
rotate: -15deg !important;
|
|
1100
|
-
}
|
|
1101
|
-
}
|
|
1102
|
-
&:has(:checked) {
|
|
1103
|
-
> :nth-child(2) {
|
|
1104
|
-
opacity: 0% !important;
|
|
1105
|
-
rotate: 15deg !important;
|
|
1106
|
-
}
|
|
1107
|
-
> :nth-child(3) {
|
|
1108
|
-
opacity: 100% !important;
|
|
1109
|
-
rotate: 0deg !important;
|
|
1110
|
-
}
|
|
1111
|
-
}
|
|
1112
|
-
&:before {
|
|
1113
|
-
position: relative !important;
|
|
1114
|
-
inset-inline-start: calc(0.25rem * 0) !important;
|
|
1115
|
-
grid-column-start: 2 !important;
|
|
1116
|
-
grid-row-start: 1 !important;
|
|
1117
|
-
aspect-ratio: 1 / 1 !important;
|
|
1118
|
-
height: 100% !important;
|
|
1119
|
-
border-radius: var(--radius-selector) !important;
|
|
1120
|
-
background-color: currentColor !important;
|
|
1121
|
-
@media print {
|
|
1122
|
-
outline: .25rem solid !important;
|
|
1123
|
-
}
|
|
1124
|
-
@media print {
|
|
1125
|
-
outline-offset: -1rem !important;
|
|
1126
|
-
}
|
|
1127
|
-
translate: 0 !important;
|
|
1128
|
-
--tw-content: "" !important;
|
|
1129
|
-
content: var(--tw-content) !important;
|
|
1130
|
-
transition: background-color 0.1s, translate 0.2s, inset-inline-start 0.2s !important;
|
|
1131
|
-
box-shadow: 0 -1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset, 0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset, 0 1px currentColor !important;
|
|
1132
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1133
|
-
box-shadow: 0 -1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset, 0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset, 0 1px color-mix(in oklab, currentColor calc(var(--depth) * 10%), #0000) !important;
|
|
1134
|
-
}
|
|
1135
|
-
background-size: auto, calc(var(--noise) * 100%) !important;
|
|
1136
|
-
background-image: none, var(--fx-noise) !important;
|
|
1137
|
-
@media (forced-colors: active) {
|
|
1138
|
-
outline-style: var(--tw-outline-style) !important;
|
|
1139
|
-
outline-width: 1px !important;
|
|
1140
|
-
outline-offset: calc(1px * -1) !important;
|
|
1141
|
-
}
|
|
1142
|
-
}
|
|
1143
|
-
&:focus-visible, &:has(:focus-visible) {
|
|
1144
|
-
outline: 2px solid currentColor !important;
|
|
1145
|
-
outline-offset: 2px !important;
|
|
1146
|
-
}
|
|
1147
|
-
&:checked, &[aria-checked="true"], &:has(> input:checked) {
|
|
1148
|
-
grid-template-columns: 1fr 1fr 0fr !important;
|
|
1149
|
-
background-color: var(--color-base-100) !important;
|
|
1150
|
-
--input-color: var(--color-base-content) !important;
|
|
1151
|
-
&:before {
|
|
1152
|
-
background-color: currentColor !important;
|
|
1153
|
-
@starting-style {
|
|
1154
|
-
opacity: 0 !important;
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
}
|
|
1158
|
-
&:indeterminate {
|
|
1159
|
-
grid-template-columns: 0.5fr 1fr 0.5fr !important;
|
|
1160
|
-
}
|
|
1161
|
-
&:disabled {
|
|
1162
|
-
cursor: not-allowed !important;
|
|
1163
|
-
opacity: 30% !important;
|
|
1164
|
-
&:before {
|
|
1165
|
-
background-color: transparent !important;
|
|
1166
|
-
border: var(--border) solid currentColor !important;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
}
|
|
1170
941
|
.toggle {
|
|
1171
942
|
border: var(--border) solid currentColor;
|
|
1172
943
|
color: var(--input-color);
|
|
@@ -2227,9 +1998,6 @@
|
|
|
2227
1998
|
.right-5 {
|
|
2228
1999
|
right: calc(var(--spacing) * 5);
|
|
2229
2000
|
}
|
|
2230
|
-
.bottom-0 {
|
|
2231
|
-
bottom: calc(var(--spacing) * 0);
|
|
2232
|
-
}
|
|
2233
2001
|
.bottom-5 {
|
|
2234
2002
|
bottom: calc(var(--spacing) * 5);
|
|
2235
2003
|
}
|
|
@@ -2239,83 +2007,6 @@
|
|
|
2239
2007
|
.left-5 {
|
|
2240
2008
|
left: calc(var(--spacing) * 5);
|
|
2241
2009
|
}
|
|
2242
|
-
.stack {
|
|
2243
|
-
display: inline-grid;
|
|
2244
|
-
grid-template-columns: 3px 4px 1fr 4px 3px;
|
|
2245
|
-
grid-template-rows: 3px 4px 1fr 4px 3px;
|
|
2246
|
-
& > * {
|
|
2247
|
-
height: 100%;
|
|
2248
|
-
width: 100%;
|
|
2249
|
-
&:nth-child(n + 2) {
|
|
2250
|
-
width: 100%;
|
|
2251
|
-
opacity: 70%;
|
|
2252
|
-
}
|
|
2253
|
-
&:nth-child(2) {
|
|
2254
|
-
z-index: 2;
|
|
2255
|
-
opacity: 90%;
|
|
2256
|
-
}
|
|
2257
|
-
&:nth-child(1) {
|
|
2258
|
-
z-index: 3;
|
|
2259
|
-
width: 100%;
|
|
2260
|
-
}
|
|
2261
|
-
}
|
|
2262
|
-
&, &.stack-bottom {
|
|
2263
|
-
> * {
|
|
2264
|
-
grid-column: 3 / 4;
|
|
2265
|
-
grid-row: 3 / 6;
|
|
2266
|
-
&:nth-child(2) {
|
|
2267
|
-
grid-column: 2 / 5;
|
|
2268
|
-
grid-row: 2 / 5;
|
|
2269
|
-
}
|
|
2270
|
-
&:nth-child(1) {
|
|
2271
|
-
grid-column: 1 / 6;
|
|
2272
|
-
grid-row: 1 / 4;
|
|
2273
|
-
}
|
|
2274
|
-
}
|
|
2275
|
-
}
|
|
2276
|
-
&.stack-top {
|
|
2277
|
-
> * {
|
|
2278
|
-
grid-column: 3 / 4;
|
|
2279
|
-
grid-row: 1 / 4;
|
|
2280
|
-
&:nth-child(2) {
|
|
2281
|
-
grid-column: 2 / 5;
|
|
2282
|
-
grid-row: 2 / 5;
|
|
2283
|
-
}
|
|
2284
|
-
&:nth-child(1) {
|
|
2285
|
-
grid-column: 1 / 6;
|
|
2286
|
-
grid-row: 3 / 6;
|
|
2287
|
-
}
|
|
2288
|
-
}
|
|
2289
|
-
}
|
|
2290
|
-
&.stack-start {
|
|
2291
|
-
> * {
|
|
2292
|
-
grid-column: 1 / 4;
|
|
2293
|
-
grid-row: 3 / 4;
|
|
2294
|
-
&:nth-child(2) {
|
|
2295
|
-
grid-column: 2 / 5;
|
|
2296
|
-
grid-row: 2 / 5;
|
|
2297
|
-
}
|
|
2298
|
-
&:nth-child(1) {
|
|
2299
|
-
grid-column: 3 / 6;
|
|
2300
|
-
grid-row: 1 / 6;
|
|
2301
|
-
}
|
|
2302
|
-
}
|
|
2303
|
-
}
|
|
2304
|
-
&.stack-end {
|
|
2305
|
-
> * {
|
|
2306
|
-
grid-column: 3 / 6;
|
|
2307
|
-
grid-row: 3 / 4;
|
|
2308
|
-
&:nth-child(2) {
|
|
2309
|
-
grid-column: 2 / 5;
|
|
2310
|
-
grid-row: 2 / 5;
|
|
2311
|
-
}
|
|
2312
|
-
&:nth-child(1) {
|
|
2313
|
-
grid-column: 1 / 4;
|
|
2314
|
-
grid-row: 1 / 6;
|
|
2315
|
-
}
|
|
2316
|
-
}
|
|
2317
|
-
}
|
|
2318
|
-
}
|
|
2319
2010
|
.modal-backdrop {
|
|
2320
2011
|
grid-column-start: 1;
|
|
2321
2012
|
grid-row-start: 1;
|
|
@@ -2340,9 +2031,6 @@
|
|
|
2340
2031
|
.z-50 {
|
|
2341
2032
|
z-index: 50;
|
|
2342
2033
|
}
|
|
2343
|
-
.z-60 {
|
|
2344
|
-
z-index: 60;
|
|
2345
|
-
}
|
|
2346
2034
|
.tab-content {
|
|
2347
2035
|
order: var(--tabcontent-order);
|
|
2348
2036
|
display: none;
|
|
@@ -2509,6 +2197,9 @@
|
|
|
2509
2197
|
}
|
|
2510
2198
|
}
|
|
2511
2199
|
}
|
|
2200
|
+
.my-2 {
|
|
2201
|
+
margin-block: calc(var(--spacing) * 2);
|
|
2202
|
+
}
|
|
2512
2203
|
.my-4 {
|
|
2513
2204
|
margin-block: calc(var(--spacing) * 4);
|
|
2514
2205
|
}
|
|
@@ -2572,43 +2263,6 @@
|
|
|
2572
2263
|
}
|
|
2573
2264
|
}
|
|
2574
2265
|
}
|
|
2575
|
-
.join-vertical {
|
|
2576
|
-
flex-direction: column;
|
|
2577
|
-
> .join-item:first-child {
|
|
2578
|
-
--join-ss: var(--radius-field);
|
|
2579
|
-
--join-se: var(--radius-field);
|
|
2580
|
-
--join-es: 0;
|
|
2581
|
-
--join-ee: 0;
|
|
2582
|
-
}
|
|
2583
|
-
:first-child:not(:last-child) {
|
|
2584
|
-
.join-item {
|
|
2585
|
-
--join-ss: var(--radius-field);
|
|
2586
|
-
--join-se: var(--radius-field);
|
|
2587
|
-
--join-es: 0;
|
|
2588
|
-
--join-ee: 0;
|
|
2589
|
-
}
|
|
2590
|
-
}
|
|
2591
|
-
> .join-item:last-child {
|
|
2592
|
-
--join-ss: 0;
|
|
2593
|
-
--join-se: 0;
|
|
2594
|
-
--join-es: var(--radius-field);
|
|
2595
|
-
--join-ee: var(--radius-field);
|
|
2596
|
-
}
|
|
2597
|
-
:last-child:not(:first-child) {
|
|
2598
|
-
.join-item {
|
|
2599
|
-
--join-ss: 0;
|
|
2600
|
-
--join-se: 0;
|
|
2601
|
-
--join-es: var(--radius-field);
|
|
2602
|
-
--join-ee: var(--radius-field);
|
|
2603
|
-
}
|
|
2604
|
-
}
|
|
2605
|
-
.join-item {
|
|
2606
|
-
&:where(*:not(:first-child)) {
|
|
2607
|
-
margin-inline-start: 0;
|
|
2608
|
-
margin-block-start: calc(var(--border, 1px) * -1);
|
|
2609
|
-
}
|
|
2610
|
-
}
|
|
2611
|
-
}
|
|
2612
2266
|
.join-item {
|
|
2613
2267
|
&:where(*:not(:first-child)) {
|
|
2614
2268
|
margin-inline-start: calc(var(--border, 1px) * -1);
|
|
@@ -2656,9 +2310,6 @@
|
|
|
2656
2310
|
.mb-2 {
|
|
2657
2311
|
margin-bottom: calc(var(--spacing) * 2);
|
|
2658
2312
|
}
|
|
2659
|
-
.mb-4 {
|
|
2660
|
-
margin-bottom: calc(var(--spacing) * 4);
|
|
2661
|
-
}
|
|
2662
2313
|
.ml-1 {
|
|
2663
2314
|
margin-left: calc(var(--spacing) * 1);
|
|
2664
2315
|
}
|
|
@@ -2823,56 +2474,6 @@
|
|
|
2823
2474
|
display: none;
|
|
2824
2475
|
}
|
|
2825
2476
|
}
|
|
2826
|
-
.alert {
|
|
2827
|
-
display: grid;
|
|
2828
|
-
align-items: center;
|
|
2829
|
-
gap: calc(0.25rem * 4);
|
|
2830
|
-
border-radius: var(--radius-box);
|
|
2831
|
-
padding-inline: calc(0.25rem * 4);
|
|
2832
|
-
padding-block: calc(0.25rem * 3);
|
|
2833
|
-
color: var(--color-base-content);
|
|
2834
|
-
background-color: var(--alert-color, var(--color-base-200));
|
|
2835
|
-
justify-content: start;
|
|
2836
|
-
justify-items: start;
|
|
2837
|
-
grid-auto-flow: column;
|
|
2838
|
-
grid-template-columns: auto minmax(auto, 1fr);
|
|
2839
|
-
text-align: start;
|
|
2840
|
-
border: var(--border) solid var(--color-base-200);
|
|
2841
|
-
font-size: 0.875rem;
|
|
2842
|
-
line-height: 1.25rem;
|
|
2843
|
-
background-size: auto, calc(var(--noise) * 100%);
|
|
2844
|
-
background-image: none, var(--fx-noise);
|
|
2845
|
-
box-shadow: 0 3px 0 -2px oklch(100% 0 0 / calc(var(--depth) * 0.08)) inset, 0 1px #000, 0 4px 3px -2px oklch(0% 0 0 / calc(var(--depth) * 0.08));
|
|
2846
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2847
|
-
box-shadow: 0 3px 0 -2px oklch(100% 0 0 / calc(var(--depth) * 0.08)) inset, 0 1px color-mix( in oklab, color-mix(in oklab, #000 20%, var(--alert-color, var(--color-base-200))) calc(var(--depth) * 20%), #0000 ), 0 4px 3px -2px oklch(0% 0 0 / calc(var(--depth) * 0.08));
|
|
2848
|
-
}
|
|
2849
|
-
&.alert-outline {
|
|
2850
|
-
background-color: transparent;
|
|
2851
|
-
color: var(--alert-color);
|
|
2852
|
-
box-shadow: none;
|
|
2853
|
-
background-image: none;
|
|
2854
|
-
}
|
|
2855
|
-
&.alert-dash {
|
|
2856
|
-
background-color: transparent;
|
|
2857
|
-
color: var(--alert-color);
|
|
2858
|
-
border-style: dashed;
|
|
2859
|
-
box-shadow: none;
|
|
2860
|
-
background-image: none;
|
|
2861
|
-
}
|
|
2862
|
-
&.alert-soft {
|
|
2863
|
-
color: var(--alert-color, var(--color-base-content));
|
|
2864
|
-
background: var(--alert-color, var(--color-base-content));
|
|
2865
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2866
|
-
background: color-mix( in oklab, var(--alert-color, var(--color-base-content)) 8%, var(--color-base-100) );
|
|
2867
|
-
}
|
|
2868
|
-
border-color: var(--alert-color, var(--color-base-content));
|
|
2869
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2870
|
-
border-color: color-mix( in oklab, var(--alert-color, var(--color-base-content)) 10%, var(--color-base-100) );
|
|
2871
|
-
}
|
|
2872
|
-
box-shadow: none;
|
|
2873
|
-
background-image: none;
|
|
2874
|
-
}
|
|
2875
|
-
}
|
|
2876
2477
|
.card-actions {
|
|
2877
2478
|
display: flex;
|
|
2878
2479
|
flex-wrap: wrap;
|
|
@@ -3520,18 +3121,12 @@
|
|
|
3520
3121
|
.w-svh {
|
|
3521
3122
|
width: 100svh;
|
|
3522
3123
|
}
|
|
3523
|
-
.max-w-2xs {
|
|
3524
|
-
max-width: var(--container-2xs);
|
|
3525
|
-
}
|
|
3526
3124
|
.max-w-full {
|
|
3527
3125
|
max-width: 100%;
|
|
3528
3126
|
}
|
|
3529
3127
|
.max-w-xs {
|
|
3530
3128
|
max-width: var(--container-xs);
|
|
3531
3129
|
}
|
|
3532
|
-
.min-w-2xs {
|
|
3533
|
-
min-width: var(--container-2xs);
|
|
3534
|
-
}
|
|
3535
3130
|
.min-w-64 {
|
|
3536
3131
|
min-width: calc(var(--spacing) * 64);
|
|
3537
3132
|
}
|
|
@@ -3541,21 +3136,12 @@
|
|
|
3541
3136
|
.min-w-max {
|
|
3542
3137
|
min-width: max-content;
|
|
3543
3138
|
}
|
|
3544
|
-
.min-w-xs {
|
|
3545
|
-
min-width: var(--container-xs);
|
|
3546
|
-
}
|
|
3547
3139
|
.flex-shrink {
|
|
3548
3140
|
flex-shrink: 1;
|
|
3549
3141
|
}
|
|
3550
|
-
.flex-shrink-0 {
|
|
3551
|
-
flex-shrink: 0;
|
|
3552
|
-
}
|
|
3553
3142
|
.shrink {
|
|
3554
3143
|
flex-shrink: 1;
|
|
3555
3144
|
}
|
|
3556
|
-
.shrink-0 {
|
|
3557
|
-
flex-shrink: 0;
|
|
3558
|
-
}
|
|
3559
3145
|
.flex-grow {
|
|
3560
3146
|
flex-grow: 1;
|
|
3561
3147
|
}
|
|
@@ -3577,9 +3163,6 @@
|
|
|
3577
3163
|
rotate: calc(45deg * -1);
|
|
3578
3164
|
}
|
|
3579
3165
|
}
|
|
3580
|
-
.rotate-90 {
|
|
3581
|
-
rotate: 90deg;
|
|
3582
|
-
}
|
|
3583
3166
|
.rotate-180 {
|
|
3584
3167
|
rotate: 180deg;
|
|
3585
3168
|
}
|
|
@@ -3617,9 +3200,6 @@
|
|
|
3617
3200
|
.cursor-default {
|
|
3618
3201
|
cursor: default;
|
|
3619
3202
|
}
|
|
3620
|
-
.cursor-grabbing {
|
|
3621
|
-
cursor: grabbing;
|
|
3622
|
-
}
|
|
3623
3203
|
.cursor-pointer {
|
|
3624
3204
|
cursor: pointer;
|
|
3625
3205
|
}
|
|
@@ -3666,18 +3246,12 @@
|
|
|
3666
3246
|
.justify-center {
|
|
3667
3247
|
justify-content: center;
|
|
3668
3248
|
}
|
|
3669
|
-
.justify-end {
|
|
3670
|
-
justify-content: flex-end;
|
|
3671
|
-
}
|
|
3672
3249
|
.gap-2 {
|
|
3673
3250
|
gap: calc(var(--spacing) * 2);
|
|
3674
3251
|
}
|
|
3675
3252
|
.gap-2\.5 {
|
|
3676
3253
|
gap: calc(var(--spacing) * 2.5);
|
|
3677
3254
|
}
|
|
3678
|
-
.gap-3 {
|
|
3679
|
-
gap: calc(var(--spacing) * 3);
|
|
3680
|
-
}
|
|
3681
3255
|
.gap-4 {
|
|
3682
3256
|
gap: calc(var(--spacing) * 4);
|
|
3683
3257
|
}
|
|
@@ -3695,14 +3269,14 @@
|
|
|
3695
3269
|
.overflow-x-hidden {
|
|
3696
3270
|
overflow-x: hidden;
|
|
3697
3271
|
}
|
|
3272
|
+
.overflow-x-scroll {
|
|
3273
|
+
overflow-x: scroll;
|
|
3274
|
+
}
|
|
3698
3275
|
.overflow-y-auto {
|
|
3699
3276
|
overflow-y: auto;
|
|
3700
3277
|
}
|
|
3701
|
-
.
|
|
3702
|
-
|
|
3703
|
-
}
|
|
3704
|
-
.\!rounded {
|
|
3705
|
-
border-radius: 0.25rem !important;
|
|
3278
|
+
.scroll-smooth {
|
|
3279
|
+
scroll-behavior: smooth;
|
|
3706
3280
|
}
|
|
3707
3281
|
.rounded {
|
|
3708
3282
|
border-radius: 0.25rem;
|
|
@@ -3776,26 +3350,6 @@
|
|
|
3776
3350
|
box-shadow: none;
|
|
3777
3351
|
}
|
|
3778
3352
|
}
|
|
3779
|
-
.alert-error {
|
|
3780
|
-
border-color: var(--color-error);
|
|
3781
|
-
color: var(--color-error-content);
|
|
3782
|
-
--alert-color: var(--color-error);
|
|
3783
|
-
}
|
|
3784
|
-
.alert-info {
|
|
3785
|
-
border-color: var(--color-info);
|
|
3786
|
-
color: var(--color-info-content);
|
|
3787
|
-
--alert-color: var(--color-info);
|
|
3788
|
-
}
|
|
3789
|
-
.alert-success {
|
|
3790
|
-
border-color: var(--color-success);
|
|
3791
|
-
color: var(--color-success-content);
|
|
3792
|
-
--alert-color: var(--color-success);
|
|
3793
|
-
}
|
|
3794
|
-
.alert-warning {
|
|
3795
|
-
border-color: var(--color-warning);
|
|
3796
|
-
color: var(--color-warning-content);
|
|
3797
|
-
--alert-color: var(--color-warning);
|
|
3798
|
-
}
|
|
3799
3353
|
.border-base-100 {
|
|
3800
3354
|
border-color: var(--color-base-100);
|
|
3801
3355
|
}
|
|
@@ -3924,9 +3478,6 @@
|
|
|
3924
3478
|
.fill-current {
|
|
3925
3479
|
fill: currentcolor;
|
|
3926
3480
|
}
|
|
3927
|
-
.stroke-current {
|
|
3928
|
-
stroke: currentcolor;
|
|
3929
|
-
}
|
|
3930
3481
|
.object-cover {
|
|
3931
3482
|
object-fit: cover;
|
|
3932
3483
|
}
|
|
@@ -3945,9 +3496,6 @@
|
|
|
3945
3496
|
.p-6 {
|
|
3946
3497
|
padding: calc(var(--spacing) * 6);
|
|
3947
3498
|
}
|
|
3948
|
-
.p-10 {
|
|
3949
|
-
padding: calc(var(--spacing) * 10);
|
|
3950
|
-
}
|
|
3951
3499
|
.p-\[25\%\] {
|
|
3952
3500
|
padding: 25%;
|
|
3953
3501
|
}
|
|
@@ -4102,9 +3650,6 @@
|
|
|
4102
3650
|
--badge-color: var(--color-warning);
|
|
4103
3651
|
color: var(--color-warning-content);
|
|
4104
3652
|
}
|
|
4105
|
-
.progress-neutral {
|
|
4106
|
-
color: var(--color-neutral);
|
|
4107
|
-
}
|
|
4108
3653
|
.text-accent {
|
|
4109
3654
|
color: var(--color-accent);
|
|
4110
3655
|
}
|
|
@@ -4123,12 +3668,6 @@
|
|
|
4123
3668
|
color: color-mix(in oklab, var(--color-base-content) 50%, transparent);
|
|
4124
3669
|
}
|
|
4125
3670
|
}
|
|
4126
|
-
.text-base-content\/60 {
|
|
4127
|
-
color: var(--color-base-content);
|
|
4128
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4129
|
-
color: color-mix(in oklab, var(--color-base-content) 60%, transparent);
|
|
4130
|
-
}
|
|
4131
|
-
}
|
|
4132
3671
|
.text-blue-500 {
|
|
4133
3672
|
color: var(--color-blue-500);
|
|
4134
3673
|
}
|
|
@@ -4271,19 +3810,6 @@
|
|
|
4271
3810
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
4272
3811
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
4273
3812
|
}
|
|
4274
|
-
.transition-transform {
|
|
4275
|
-
transition-property: transform, translate, scale, rotate;
|
|
4276
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
4277
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
4278
|
-
}
|
|
4279
|
-
.duration-0 {
|
|
4280
|
-
--tw-duration: 0ms;
|
|
4281
|
-
transition-duration: 0ms;
|
|
4282
|
-
}
|
|
4283
|
-
.ease-out {
|
|
4284
|
-
--tw-ease: var(--ease-out);
|
|
4285
|
-
transition-timing-function: var(--ease-out);
|
|
4286
|
-
}
|
|
4287
3813
|
.btn-outline {
|
|
4288
3814
|
&:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
4289
3815
|
--btn-shadow: "";
|
|
@@ -4293,10 +3819,6 @@
|
|
|
4293
3819
|
--btn-noise: none;
|
|
4294
3820
|
}
|
|
4295
3821
|
}
|
|
4296
|
-
.\!select-none {
|
|
4297
|
-
-webkit-user-select: none !important;
|
|
4298
|
-
user-select: none !important;
|
|
4299
|
-
}
|
|
4300
3822
|
.btn-accent {
|
|
4301
3823
|
--btn-color: var(--color-accent);
|
|
4302
3824
|
--btn-fg: var(--color-accent-content);
|
|
@@ -4464,11 +3986,6 @@
|
|
|
4464
3986
|
padding: calc(var(--spacing) * 1);
|
|
4465
3987
|
}
|
|
4466
3988
|
}
|
|
4467
|
-
.empty\:hidden {
|
|
4468
|
-
&:empty {
|
|
4469
|
-
display: none;
|
|
4470
|
-
}
|
|
4471
|
-
}
|
|
4472
3989
|
.hover\:-mb-0\.5 {
|
|
4473
3990
|
&:hover {
|
|
4474
3991
|
@media (hover: hover) {
|
|
@@ -4507,11 +4024,6 @@
|
|
|
4507
4024
|
outline-style: none;
|
|
4508
4025
|
}
|
|
4509
4026
|
}
|
|
4510
|
-
.max-lg\:w-full {
|
|
4511
|
-
@media (width < 64rem) {
|
|
4512
|
-
width: 100%;
|
|
4513
|
-
}
|
|
4514
|
-
}
|
|
4515
4027
|
.max-md\:input {
|
|
4516
4028
|
@media (width < 48rem) {
|
|
4517
4029
|
cursor: text;
|
|
@@ -4605,6 +4117,11 @@
|
|
|
4605
4117
|
}
|
|
4606
4118
|
}
|
|
4607
4119
|
}
|
|
4120
|
+
.max-md\:max-w-xs {
|
|
4121
|
+
@media (width < 48rem) {
|
|
4122
|
+
max-width: var(--container-xs);
|
|
4123
|
+
}
|
|
4124
|
+
}
|
|
4608
4125
|
.sm\:grid {
|
|
4609
4126
|
@media (width >= 40rem) {
|
|
4610
4127
|
display: grid;
|
|
@@ -4615,16 +4132,6 @@
|
|
|
4615
4132
|
display: none;
|
|
4616
4133
|
}
|
|
4617
4134
|
}
|
|
4618
|
-
.sm\:w-1\/4 {
|
|
4619
|
-
@media (width >= 40rem) {
|
|
4620
|
-
width: calc(1/4 * 100%);
|
|
4621
|
-
}
|
|
4622
|
-
}
|
|
4623
|
-
.sm\:w-3\/4 {
|
|
4624
|
-
@media (width >= 40rem) {
|
|
4625
|
-
width: calc(3/4 * 100%);
|
|
4626
|
-
}
|
|
4627
|
-
}
|
|
4628
4135
|
.sm\:footer-horizontal {
|
|
4629
4136
|
@media (width >= 40rem) {
|
|
4630
4137
|
grid-auto-flow: column;
|
|
@@ -4633,26 +4140,6 @@
|
|
|
4633
4140
|
}
|
|
4634
4141
|
}
|
|
4635
4142
|
}
|
|
4636
|
-
.sm\:grid-rows-1 {
|
|
4637
|
-
@media (width >= 40rem) {
|
|
4638
|
-
grid-template-rows: repeat(1, minmax(0, 1fr));
|
|
4639
|
-
}
|
|
4640
|
-
}
|
|
4641
|
-
.sm\:grid-rows-2 {
|
|
4642
|
-
@media (width >= 40rem) {
|
|
4643
|
-
grid-template-rows: repeat(2, minmax(0, 1fr));
|
|
4644
|
-
}
|
|
4645
|
-
}
|
|
4646
|
-
.sm\:grid-rows-3 {
|
|
4647
|
-
@media (width >= 40rem) {
|
|
4648
|
-
grid-template-rows: repeat(3, minmax(0, 1fr));
|
|
4649
|
-
}
|
|
4650
|
-
}
|
|
4651
|
-
.sm\:flex-row {
|
|
4652
|
-
@media (width >= 40rem) {
|
|
4653
|
-
flex-direction: row;
|
|
4654
|
-
}
|
|
4655
|
-
}
|
|
4656
4143
|
.md\:block {
|
|
4657
4144
|
@media (width >= 48rem) {
|
|
4658
4145
|
display: block;
|
|
@@ -4663,11 +4150,6 @@
|
|
|
4663
4150
|
display: flex;
|
|
4664
4151
|
}
|
|
4665
4152
|
}
|
|
4666
|
-
.md\:max-w-full {
|
|
4667
|
-
@media (width >= 48rem) {
|
|
4668
|
-
max-width: 100%;
|
|
4669
|
-
}
|
|
4670
|
-
}
|
|
4671
4153
|
.md\:min-w-full {
|
|
4672
4154
|
@media (width >= 48rem) {
|
|
4673
4155
|
min-width: 100%;
|
|
@@ -4678,6 +4160,11 @@
|
|
|
4678
4160
|
cursor: auto;
|
|
4679
4161
|
}
|
|
4680
4162
|
}
|
|
4163
|
+
.md\:snap-none {
|
|
4164
|
+
@media (width >= 48rem) {
|
|
4165
|
+
scroll-snap-type: none;
|
|
4166
|
+
}
|
|
4167
|
+
}
|
|
4681
4168
|
.md\:px-10 {
|
|
4682
4169
|
@media (width >= 48rem) {
|
|
4683
4170
|
padding-inline: calc(var(--spacing) * 10);
|
|
@@ -5178,14 +4665,6 @@
|
|
|
5178
4665
|
syntax: "*";
|
|
5179
4666
|
inherits: false;
|
|
5180
4667
|
}
|
|
5181
|
-
@property --tw-duration {
|
|
5182
|
-
syntax: "*";
|
|
5183
|
-
inherits: false;
|
|
5184
|
-
}
|
|
5185
|
-
@property --tw-ease {
|
|
5186
|
-
syntax: "*";
|
|
5187
|
-
inherits: false;
|
|
5188
|
-
}
|
|
5189
4668
|
@property --tw-content {
|
|
5190
4669
|
syntax: "*";
|
|
5191
4670
|
initial-value: "";
|
|
@@ -5232,8 +4711,6 @@
|
|
|
5232
4711
|
--tw-drop-shadow-color: initial;
|
|
5233
4712
|
--tw-drop-shadow-alpha: 100%;
|
|
5234
4713
|
--tw-drop-shadow-size: initial;
|
|
5235
|
-
--tw-duration: initial;
|
|
5236
|
-
--tw-ease: initial;
|
|
5237
4714
|
--tw-content: "";
|
|
5238
4715
|
}
|
|
5239
4716
|
}
|