@chatbi-v/xcml 2.0.1 → 2.1.1
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.cjs +17 -17
- package/dist/index.css +704 -185
- package/dist/index.d.cts +62 -2
- package/dist/index.d.ts +62 -2
- package/dist/index.js +16 -16
- package/package.json +4 -3
package/dist/index.css
CHANGED
|
@@ -153,7 +153,8 @@
|
|
|
153
153
|
|
|
154
154
|
/* 1. Ocean (Deep Blue) */
|
|
155
155
|
|
|
156
|
-
|
|
156
|
+
[data-theme="ocean"] .xcml-scope,
|
|
157
|
+
.xcml-scope [data-theme="ocean"],
|
|
157
158
|
.xcml-scope[data-theme="ocean"] {
|
|
158
159
|
--primary: 221 83% 53%;
|
|
159
160
|
/* Blue 600 */
|
|
@@ -172,7 +173,8 @@
|
|
|
172
173
|
|
|
173
174
|
/* 2. Sunset (Orange/Red) */
|
|
174
175
|
|
|
175
|
-
|
|
176
|
+
[data-theme="sunset"] .xcml-scope,
|
|
177
|
+
.xcml-scope [data-theme="sunset"],
|
|
176
178
|
.xcml-scope[data-theme="sunset"] {
|
|
177
179
|
--primary: 15 80% 50%;
|
|
178
180
|
/* Orange 600 */
|
|
@@ -191,7 +193,8 @@
|
|
|
191
193
|
|
|
192
194
|
/* 3. Lavender (Purple/Indigo) */
|
|
193
195
|
|
|
194
|
-
|
|
196
|
+
[data-theme="lavender"] .xcml-scope,
|
|
197
|
+
.xcml-scope [data-theme="lavender"],
|
|
195
198
|
.xcml-scope[data-theme="lavender"] {
|
|
196
199
|
--primary: 262 83% 58%;
|
|
197
200
|
/* Violet 600 */
|
|
@@ -210,7 +213,8 @@
|
|
|
210
213
|
|
|
211
214
|
/* 4. Rose (Pink) */
|
|
212
215
|
|
|
213
|
-
|
|
216
|
+
[data-theme="rose"] .xcml-scope,
|
|
217
|
+
.xcml-scope [data-theme="rose"],
|
|
214
218
|
.xcml-scope[data-theme="rose"] {
|
|
215
219
|
--primary: 346 84% 50%;
|
|
216
220
|
/* Rose 600 */
|
|
@@ -229,7 +233,8 @@
|
|
|
229
233
|
|
|
230
234
|
/* 5. Amber (Yellow/Gold) */
|
|
231
235
|
|
|
232
|
-
|
|
236
|
+
[data-theme="amber"] .xcml-scope,
|
|
237
|
+
.xcml-scope [data-theme="amber"],
|
|
233
238
|
.xcml-scope[data-theme="amber"] {
|
|
234
239
|
--primary: 38 92% 50%;
|
|
235
240
|
/* Amber 500 */
|
|
@@ -248,7 +253,8 @@
|
|
|
248
253
|
|
|
249
254
|
/* 6. Midnight (Deep Indigo/Dark) */
|
|
250
255
|
|
|
251
|
-
|
|
256
|
+
[data-theme="midnight"] .xcml-scope,
|
|
257
|
+
.xcml-scope [data-theme="midnight"],
|
|
252
258
|
.xcml-scope[data-theme="midnight"] {
|
|
253
259
|
--primary: 224 71% 45%;
|
|
254
260
|
/* Blue 600ish */
|
|
@@ -268,7 +274,8 @@
|
|
|
268
274
|
|
|
269
275
|
/* 7. Forest (Deep Green) */
|
|
270
276
|
|
|
271
|
-
|
|
277
|
+
[data-theme="forest"] .xcml-scope,
|
|
278
|
+
.xcml-scope [data-theme="forest"],
|
|
272
279
|
.xcml-scope[data-theme="forest"] {
|
|
273
280
|
--primary: 142 76% 45%;
|
|
274
281
|
/* Green 600ish */
|
|
@@ -288,7 +295,8 @@
|
|
|
288
295
|
|
|
289
296
|
/* 8. Slate (Professional Gray) */
|
|
290
297
|
|
|
291
|
-
|
|
298
|
+
[data-theme="slate"] .xcml-scope,
|
|
299
|
+
.xcml-scope [data-theme="slate"],
|
|
292
300
|
.xcml-scope[data-theme="slate"] {
|
|
293
301
|
--primary: 215 25% 27%;
|
|
294
302
|
/* Slate 800 */
|
|
@@ -306,7 +314,8 @@
|
|
|
306
314
|
|
|
307
315
|
/* 9. Crimson (Wine Red) */
|
|
308
316
|
|
|
309
|
-
|
|
317
|
+
[data-theme="crimson"] .xcml-scope,
|
|
318
|
+
.xcml-scope [data-theme="crimson"],
|
|
310
319
|
.xcml-scope[data-theme="crimson"] {
|
|
311
320
|
--primary: 347 77% 35%;
|
|
312
321
|
/* Crimson 900ish */
|
|
@@ -324,7 +333,8 @@
|
|
|
324
333
|
|
|
325
334
|
/* 10. Cyan (Teal/Cyan) */
|
|
326
335
|
|
|
327
|
-
|
|
336
|
+
[data-theme="cyan"] .xcml-scope,
|
|
337
|
+
.xcml-scope [data-theme="cyan"],
|
|
328
338
|
.xcml-scope[data-theme="cyan"] {
|
|
329
339
|
--primary: 188 86% 40%;
|
|
330
340
|
/* Cyan 600 */
|
|
@@ -342,7 +352,8 @@
|
|
|
342
352
|
|
|
343
353
|
/* 11. Brand (Primary Background) */
|
|
344
354
|
|
|
345
|
-
|
|
355
|
+
[data-theme="brand"] .xcml-scope,
|
|
356
|
+
.xcml-scope [data-theme="brand"],
|
|
346
357
|
.xcml-scope[data-theme="brand"] {
|
|
347
358
|
--card: 161 94% 30%;
|
|
348
359
|
/* Emerald 600 */
|
|
@@ -358,7 +369,8 @@
|
|
|
358
369
|
|
|
359
370
|
/* 12. Deep (Very Dark) */
|
|
360
371
|
|
|
361
|
-
|
|
372
|
+
[data-theme="deep"] .xcml-scope,
|
|
373
|
+
.xcml-scope [data-theme="deep"],
|
|
362
374
|
.xcml-scope[data-theme="deep"] {
|
|
363
375
|
--card: 224 71% 4%;
|
|
364
376
|
/* Slate 950 */
|
|
@@ -997,6 +1009,257 @@
|
|
|
997
1009
|
margin-bottom: 0;
|
|
998
1010
|
}
|
|
999
1011
|
|
|
1012
|
+
.prose-sm {
|
|
1013
|
+
font-size: 0.875rem;
|
|
1014
|
+
line-height: 1.7142857;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1018
|
+
margin-top: 1.1428571em;
|
|
1019
|
+
margin-bottom: 1.1428571em;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1023
|
+
font-size: 1.2857143em;
|
|
1024
|
+
line-height: 1.5555556;
|
|
1025
|
+
margin-top: 0.8888889em;
|
|
1026
|
+
margin-bottom: 0.8888889em;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1030
|
+
margin-top: 1.3333333em;
|
|
1031
|
+
margin-bottom: 1.3333333em;
|
|
1032
|
+
padding-inline-start: 1.1111111em;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1036
|
+
font-size: 2.1428571em;
|
|
1037
|
+
margin-top: 0;
|
|
1038
|
+
margin-bottom: 0.8em;
|
|
1039
|
+
line-height: 1.2;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1043
|
+
font-size: 1.4285714em;
|
|
1044
|
+
margin-top: 1.6em;
|
|
1045
|
+
margin-bottom: 0.8em;
|
|
1046
|
+
line-height: 1.4;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1050
|
+
font-size: 1.2857143em;
|
|
1051
|
+
margin-top: 1.5555556em;
|
|
1052
|
+
margin-bottom: 0.4444444em;
|
|
1053
|
+
line-height: 1.5555556;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1057
|
+
margin-top: 1.4285714em;
|
|
1058
|
+
margin-bottom: 0.5714286em;
|
|
1059
|
+
line-height: 1.4285714;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1063
|
+
margin-top: 1.7142857em;
|
|
1064
|
+
margin-bottom: 1.7142857em;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1068
|
+
margin-top: 1.7142857em;
|
|
1069
|
+
margin-bottom: 1.7142857em;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1073
|
+
margin-top: 0;
|
|
1074
|
+
margin-bottom: 0;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1078
|
+
margin-top: 1.7142857em;
|
|
1079
|
+
margin-bottom: 1.7142857em;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1083
|
+
font-size: 0.8571429em;
|
|
1084
|
+
border-radius: 0.3125rem;
|
|
1085
|
+
padding-top: 0.1428571em;
|
|
1086
|
+
padding-inline-end: 0.3571429em;
|
|
1087
|
+
padding-bottom: 0.1428571em;
|
|
1088
|
+
padding-inline-start: 0.3571429em;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1092
|
+
font-size: 0.8571429em;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1096
|
+
font-size: 0.9em;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1100
|
+
font-size: 0.8888889em;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1104
|
+
font-size: 0.8571429em;
|
|
1105
|
+
line-height: 1.6666667;
|
|
1106
|
+
margin-top: 1.6666667em;
|
|
1107
|
+
margin-bottom: 1.6666667em;
|
|
1108
|
+
border-radius: 0.25rem;
|
|
1109
|
+
padding-top: 0.6666667em;
|
|
1110
|
+
padding-inline-end: 1em;
|
|
1111
|
+
padding-bottom: 0.6666667em;
|
|
1112
|
+
padding-inline-start: 1em;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1116
|
+
margin-top: 1.1428571em;
|
|
1117
|
+
margin-bottom: 1.1428571em;
|
|
1118
|
+
padding-inline-start: 1.5714286em;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1122
|
+
margin-top: 1.1428571em;
|
|
1123
|
+
margin-bottom: 1.1428571em;
|
|
1124
|
+
padding-inline-start: 1.5714286em;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1128
|
+
margin-top: 0.2857143em;
|
|
1129
|
+
margin-bottom: 0.2857143em;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1133
|
+
padding-inline-start: 0.4285714em;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1137
|
+
padding-inline-start: 0.4285714em;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1141
|
+
margin-top: 0.5714286em;
|
|
1142
|
+
margin-bottom: 0.5714286em;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1146
|
+
margin-top: 1.1428571em;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1150
|
+
margin-bottom: 1.1428571em;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1154
|
+
margin-top: 1.1428571em;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1158
|
+
margin-bottom: 1.1428571em;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1162
|
+
margin-top: 0.5714286em;
|
|
1163
|
+
margin-bottom: 0.5714286em;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1167
|
+
margin-top: 1.1428571em;
|
|
1168
|
+
margin-bottom: 1.1428571em;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1172
|
+
margin-top: 1.1428571em;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1176
|
+
margin-top: 0.2857143em;
|
|
1177
|
+
padding-inline-start: 1.5714286em;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1181
|
+
margin-top: 2.8571429em;
|
|
1182
|
+
margin-bottom: 2.8571429em;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1186
|
+
margin-top: 0;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1190
|
+
margin-top: 0;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1194
|
+
margin-top: 0;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1198
|
+
margin-top: 0;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1202
|
+
font-size: 0.8571429em;
|
|
1203
|
+
line-height: 1.5;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1207
|
+
padding-inline-end: 1em;
|
|
1208
|
+
padding-bottom: 0.6666667em;
|
|
1209
|
+
padding-inline-start: 1em;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1213
|
+
padding-inline-start: 0;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1217
|
+
padding-inline-end: 0;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1221
|
+
padding-top: 0.6666667em;
|
|
1222
|
+
padding-inline-end: 1em;
|
|
1223
|
+
padding-bottom: 0.6666667em;
|
|
1224
|
+
padding-inline-start: 1em;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1228
|
+
padding-inline-start: 0;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1232
|
+
padding-inline-end: 0;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1236
|
+
margin-top: 1.7142857em;
|
|
1237
|
+
margin-bottom: 1.7142857em;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1241
|
+
margin-top: 0;
|
|
1242
|
+
margin-bottom: 0;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1246
|
+
font-size: 0.8571429em;
|
|
1247
|
+
line-height: 1.3333333;
|
|
1248
|
+
margin-top: 0.6666667em;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1252
|
+
margin-top: 0;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1256
|
+
margin-bottom: 0;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.xcml-scope :is(.pointer-events-none) {
|
|
1260
|
+
pointer-events: none;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1000
1263
|
.xcml-scope :is(.visible) {
|
|
1001
1264
|
visibility: visible;
|
|
1002
1265
|
}
|
|
@@ -1005,6 +1268,10 @@
|
|
|
1005
1268
|
position: static;
|
|
1006
1269
|
}
|
|
1007
1270
|
|
|
1271
|
+
.xcml-scope :is(.fixed) {
|
|
1272
|
+
position: fixed;
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1008
1275
|
.xcml-scope :is(.absolute) {
|
|
1009
1276
|
position: absolute;
|
|
1010
1277
|
}
|
|
@@ -1018,10 +1285,18 @@
|
|
|
1018
1285
|
right: -1rem;
|
|
1019
1286
|
}
|
|
1020
1287
|
|
|
1288
|
+
.xcml-scope :is(.-right-4) {
|
|
1289
|
+
right: -1rem;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1021
1292
|
.xcml-scope :is(.-top-3) {
|
|
1022
1293
|
top: -0.75rem;
|
|
1023
1294
|
}
|
|
1024
1295
|
|
|
1296
|
+
.xcml-scope :is(.-top-4) {
|
|
1297
|
+
top: -1rem;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1025
1300
|
.xcml-scope :is(.bottom-0) {
|
|
1026
1301
|
bottom: 0px;
|
|
1027
1302
|
}
|
|
@@ -1096,6 +1371,10 @@
|
|
|
1096
1371
|
margin-bottom: 1rem;
|
|
1097
1372
|
}
|
|
1098
1373
|
|
|
1374
|
+
.xcml-scope :is(.mb-0) {
|
|
1375
|
+
margin-bottom: 0px;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1099
1378
|
.xcml-scope :is(.mb-1) {
|
|
1100
1379
|
margin-bottom: 0.25rem;
|
|
1101
1380
|
}
|
|
@@ -1164,6 +1443,10 @@
|
|
|
1164
1443
|
margin-top: 0.5rem;
|
|
1165
1444
|
}
|
|
1166
1445
|
|
|
1446
|
+
.xcml-scope :is(.mt-4) {
|
|
1447
|
+
margin-top: 1rem;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1167
1450
|
.xcml-scope :is(.mt-auto) {
|
|
1168
1451
|
margin-top: auto;
|
|
1169
1452
|
}
|
|
@@ -1172,11 +1455,11 @@
|
|
|
1172
1455
|
margin-top: var(--card-gap);
|
|
1173
1456
|
}
|
|
1174
1457
|
|
|
1175
|
-
.xcml-scope :is(.line-clamp-
|
|
1458
|
+
.xcml-scope :is(.line-clamp-2) {
|
|
1176
1459
|
overflow: hidden;
|
|
1177
1460
|
display: -webkit-box;
|
|
1178
1461
|
-webkit-box-orient: vertical;
|
|
1179
|
-
-webkit-line-clamp:
|
|
1462
|
+
-webkit-line-clamp: 2;
|
|
1180
1463
|
}
|
|
1181
1464
|
|
|
1182
1465
|
.xcml-scope :is(.block) {
|
|
@@ -1191,10 +1474,6 @@
|
|
|
1191
1474
|
display: flex;
|
|
1192
1475
|
}
|
|
1193
1476
|
|
|
1194
|
-
.xcml-scope :is(.inline-flex) {
|
|
1195
|
-
display: inline-flex;
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
1477
|
.xcml-scope :is(.table) {
|
|
1199
1478
|
display: table;
|
|
1200
1479
|
}
|
|
@@ -1227,6 +1506,10 @@
|
|
|
1227
1506
|
height: 0.5rem;
|
|
1228
1507
|
}
|
|
1229
1508
|
|
|
1509
|
+
.xcml-scope :is(.h-24) {
|
|
1510
|
+
height: 6rem;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1230
1513
|
.xcml-scope :is(.h-4) {
|
|
1231
1514
|
height: 1rem;
|
|
1232
1515
|
}
|
|
@@ -1243,10 +1526,18 @@
|
|
|
1243
1526
|
height: 2rem;
|
|
1244
1527
|
}
|
|
1245
1528
|
|
|
1529
|
+
.xcml-scope :is(.h-9) {
|
|
1530
|
+
height: 2.25rem;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1246
1533
|
.xcml-scope :is(.h-full) {
|
|
1247
1534
|
height: 100%;
|
|
1248
1535
|
}
|
|
1249
1536
|
|
|
1537
|
+
.xcml-scope :is(.h-px) {
|
|
1538
|
+
height: 1px;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1250
1541
|
.xcml-scope :is(.max-h-\[500px\]) {
|
|
1251
1542
|
max-height: 500px;
|
|
1252
1543
|
}
|
|
@@ -1255,10 +1546,18 @@
|
|
|
1255
1546
|
min-height: 0px;
|
|
1256
1547
|
}
|
|
1257
1548
|
|
|
1549
|
+
.xcml-scope :is(.min-h-\[100px\]) {
|
|
1550
|
+
min-height: 100px;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1258
1553
|
.xcml-scope :is(.min-h-\[6rem\]) {
|
|
1259
1554
|
min-height: 6rem;
|
|
1260
1555
|
}
|
|
1261
1556
|
|
|
1557
|
+
.xcml-scope :is(.min-h-full) {
|
|
1558
|
+
min-height: 100%;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1262
1561
|
.xcml-scope :is(.w-0) {
|
|
1263
1562
|
width: 0px;
|
|
1264
1563
|
}
|
|
@@ -1275,6 +1574,10 @@
|
|
|
1275
1574
|
width: 0.375rem;
|
|
1276
1575
|
}
|
|
1277
1576
|
|
|
1577
|
+
.xcml-scope :is(.w-10) {
|
|
1578
|
+
width: 2.5rem;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1278
1581
|
.xcml-scope :is(.w-12) {
|
|
1279
1582
|
width: 3rem;
|
|
1280
1583
|
}
|
|
@@ -1291,10 +1594,22 @@
|
|
|
1291
1594
|
width: 6rem;
|
|
1292
1595
|
}
|
|
1293
1596
|
|
|
1597
|
+
.xcml-scope :is(.w-32) {
|
|
1598
|
+
width: 8rem;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1294
1601
|
.xcml-scope :is(.w-4) {
|
|
1295
1602
|
width: 1rem;
|
|
1296
1603
|
}
|
|
1297
1604
|
|
|
1605
|
+
.xcml-scope :is(.w-6) {
|
|
1606
|
+
width: 1.5rem;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.xcml-scope :is(.w-7) {
|
|
1610
|
+
width: 1.75rem;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1298
1613
|
.xcml-scope :is(.w-8) {
|
|
1299
1614
|
width: 2rem;
|
|
1300
1615
|
}
|
|
@@ -1303,10 +1618,6 @@
|
|
|
1303
1618
|
width: 375px;
|
|
1304
1619
|
}
|
|
1305
1620
|
|
|
1306
|
-
.xcml-scope :is(.w-\[var\(--percent\)\]) {
|
|
1307
|
-
width: var(--percent);
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
1621
|
.xcml-scope :is(.w-full) {
|
|
1311
1622
|
width: 100%;
|
|
1312
1623
|
}
|
|
@@ -1319,8 +1630,8 @@
|
|
|
1319
1630
|
min-width: 0px;
|
|
1320
1631
|
}
|
|
1321
1632
|
|
|
1322
|
-
.xcml-scope :is(.min-w
|
|
1323
|
-
min-width:
|
|
1633
|
+
.xcml-scope :is(.min-w-24) {
|
|
1634
|
+
min-width: 6rem;
|
|
1324
1635
|
}
|
|
1325
1636
|
|
|
1326
1637
|
.xcml-scope :is(.max-w-full) {
|
|
@@ -1339,12 +1650,9 @@
|
|
|
1339
1650
|
flex-shrink: 0;
|
|
1340
1651
|
}
|
|
1341
1652
|
|
|
1342
|
-
.xcml-scope :is(
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
.xcml-scope :is(.border-collapse) {
|
|
1347
|
-
border-collapse: collapse;
|
|
1653
|
+
.xcml-scope :is(.-translate-x-2) {
|
|
1654
|
+
--tw-translate-x: -0.5rem;
|
|
1655
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1348
1656
|
}
|
|
1349
1657
|
|
|
1350
1658
|
.xcml-scope :is(.scale-x-95) {
|
|
@@ -1366,10 +1674,6 @@
|
|
|
1366
1674
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1367
1675
|
}
|
|
1368
1676
|
|
|
1369
|
-
.xcml-scope :is(.cursor-default) {
|
|
1370
|
-
cursor: default;
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
1677
|
.xcml-scope :is(.cursor-help) {
|
|
1374
1678
|
cursor: help;
|
|
1375
1679
|
}
|
|
@@ -1430,10 +1734,6 @@
|
|
|
1430
1734
|
align-items: baseline;
|
|
1431
1735
|
}
|
|
1432
1736
|
|
|
1433
|
-
.xcml-scope :is(.justify-end) {
|
|
1434
|
-
justify-content: flex-end;
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
1737
|
.xcml-scope :is(.justify-center) {
|
|
1438
1738
|
justify-content: center;
|
|
1439
1739
|
}
|
|
@@ -1442,6 +1742,14 @@
|
|
|
1442
1742
|
justify-content: space-between;
|
|
1443
1743
|
}
|
|
1444
1744
|
|
|
1745
|
+
.xcml-scope :is(.gap-0) {
|
|
1746
|
+
gap: 0px;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.xcml-scope :is(.gap-0\.5) {
|
|
1750
|
+
gap: 0.125rem;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1445
1753
|
.xcml-scope :is(.gap-1) {
|
|
1446
1754
|
gap: 0.25rem;
|
|
1447
1755
|
}
|
|
@@ -1454,10 +1762,22 @@
|
|
|
1454
1762
|
gap: 0.5rem;
|
|
1455
1763
|
}
|
|
1456
1764
|
|
|
1765
|
+
.xcml-scope :is(.gap-2\.5) {
|
|
1766
|
+
gap: 0.625rem;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1457
1769
|
.xcml-scope :is(.gap-3) {
|
|
1458
1770
|
gap: 0.75rem;
|
|
1459
1771
|
}
|
|
1460
1772
|
|
|
1773
|
+
.xcml-scope :is(.gap-4) {
|
|
1774
|
+
gap: 1rem;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.xcml-scope :is(.gap-5) {
|
|
1778
|
+
gap: 1.25rem;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1461
1781
|
.xcml-scope :is(.gap-card-gap) {
|
|
1462
1782
|
gap: var(--card-gap);
|
|
1463
1783
|
}
|
|
@@ -1474,16 +1794,10 @@
|
|
|
1474
1794
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1475
1795
|
}
|
|
1476
1796
|
|
|
1477
|
-
.xcml-scope :is(.space-y-
|
|
1478
|
-
--tw-space-y-reverse: 0;
|
|
1479
|
-
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1480
|
-
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
.xcml-scope :is(.space-y-4 > :not([hidden]) ~ :not([hidden])) {
|
|
1797
|
+
.xcml-scope :is(.space-y-3 > :not([hidden]) ~ :not([hidden])) {
|
|
1484
1798
|
--tw-space-y-reverse: 0;
|
|
1485
|
-
margin-top: calc(
|
|
1486
|
-
margin-bottom: calc(
|
|
1799
|
+
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1800
|
+
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
1487
1801
|
}
|
|
1488
1802
|
|
|
1489
1803
|
.xcml-scope :is(.space-y-6 > :not([hidden]) ~ :not([hidden])) {
|
|
@@ -1498,16 +1812,6 @@
|
|
|
1498
1812
|
margin-bottom: calc(var(--card-gap) * var(--tw-space-y-reverse));
|
|
1499
1813
|
}
|
|
1500
1814
|
|
|
1501
|
-
.xcml-scope :is(.divide-y > :not([hidden]) ~ :not([hidden])) {
|
|
1502
|
-
--tw-divide-y-reverse: 0;
|
|
1503
|
-
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1504
|
-
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
.xcml-scope :is(.divide-border\/30 > :not([hidden]) ~ :not([hidden])) {
|
|
1508
|
-
border-color: hsl(var(--border) / 0.3);
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
1815
|
.xcml-scope :is(.overflow-auto) {
|
|
1512
1816
|
overflow: auto;
|
|
1513
1817
|
}
|
|
@@ -1552,6 +1856,10 @@
|
|
|
1552
1856
|
border-radius: 0.25rem;
|
|
1553
1857
|
}
|
|
1554
1858
|
|
|
1859
|
+
.xcml-scope :is(.rounded-2xl) {
|
|
1860
|
+
border-radius: 1rem;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1555
1863
|
.xcml-scope :is(.rounded-full) {
|
|
1556
1864
|
border-radius: 9999px;
|
|
1557
1865
|
}
|
|
@@ -1564,6 +1872,10 @@
|
|
|
1564
1872
|
border-radius: var(--radius-md);
|
|
1565
1873
|
}
|
|
1566
1874
|
|
|
1875
|
+
.xcml-scope :is(.rounded-sm) {
|
|
1876
|
+
border-radius: var(--radius-sm);
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1567
1879
|
.xcml-scope :is(.rounded-xl) {
|
|
1568
1880
|
border-radius: var(--radius-xl);
|
|
1569
1881
|
}
|
|
@@ -1573,6 +1885,11 @@
|
|
|
1573
1885
|
border-bottom-right-radius: var(--radius-md);
|
|
1574
1886
|
}
|
|
1575
1887
|
|
|
1888
|
+
.xcml-scope :is(.rounded-r-sm) {
|
|
1889
|
+
border-top-right-radius: var(--radius-sm);
|
|
1890
|
+
border-bottom-right-radius: var(--radius-sm);
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1576
1893
|
.xcml-scope :is(.border) {
|
|
1577
1894
|
border-width: 1px;
|
|
1578
1895
|
}
|
|
@@ -1581,6 +1898,10 @@
|
|
|
1581
1898
|
border-bottom-width: 1px;
|
|
1582
1899
|
}
|
|
1583
1900
|
|
|
1901
|
+
.xcml-scope :is(.border-b-2) {
|
|
1902
|
+
border-bottom-width: 2px;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1584
1905
|
.xcml-scope :is(.border-l-2) {
|
|
1585
1906
|
border-left-width: 2px;
|
|
1586
1907
|
}
|
|
@@ -1589,18 +1910,10 @@
|
|
|
1589
1910
|
border-top-width: 1px;
|
|
1590
1911
|
}
|
|
1591
1912
|
|
|
1592
|
-
.xcml-scope :is(.border-t-2) {
|
|
1593
|
-
border-top-width: 2px;
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
1913
|
.xcml-scope :is(.border-dashed) {
|
|
1597
1914
|
border-style: dashed;
|
|
1598
1915
|
}
|
|
1599
1916
|
|
|
1600
|
-
.xcml-scope :is(.border-none) {
|
|
1601
|
-
border-style: none;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
1917
|
.xcml-scope :is(.border-amber-200) {
|
|
1605
1918
|
--tw-border-opacity: 1;
|
|
1606
1919
|
border-color: rgb(253 230 138 / var(--tw-border-opacity));
|
|
@@ -1610,10 +1923,6 @@
|
|
|
1610
1923
|
border-color: hsl(var(--border));
|
|
1611
1924
|
}
|
|
1612
1925
|
|
|
1613
|
-
.xcml-scope :is(.border-border\/10) {
|
|
1614
|
-
border-color: hsl(var(--border) / 0.1);
|
|
1615
|
-
}
|
|
1616
|
-
|
|
1617
1926
|
.xcml-scope :is(.border-border\/30) {
|
|
1618
1927
|
border-color: hsl(var(--border) / 0.3);
|
|
1619
1928
|
}
|
|
@@ -1638,6 +1947,14 @@
|
|
|
1638
1947
|
border-color: hsl(var(--destructive) / 0.2);
|
|
1639
1948
|
}
|
|
1640
1949
|
|
|
1950
|
+
.xcml-scope :is(.border-muted\/20) {
|
|
1951
|
+
border-color: hsl(var(--muted) / 0.2);
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.xcml-scope :is(.border-primary\/10) {
|
|
1955
|
+
border-color: hsl(var(--primary) / 0.1);
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1641
1958
|
.xcml-scope :is(.border-primary\/20) {
|
|
1642
1959
|
border-color: hsl(var(--primary) / 0.2);
|
|
1643
1960
|
}
|
|
@@ -1646,12 +1963,20 @@
|
|
|
1646
1963
|
border-color: hsl(var(--primary) / 0.3);
|
|
1647
1964
|
}
|
|
1648
1965
|
|
|
1966
|
+
.xcml-scope :is(.border-success\/20) {
|
|
1967
|
+
border-color: hsl(var(--success) / 0.2);
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.xcml-scope :is(.border-warning\/20) {
|
|
1971
|
+
border-color: hsl(var(--warning) / 0.2);
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1649
1974
|
.xcml-scope :is(.bg-amber-50\/50) {
|
|
1650
1975
|
background-color: rgb(255 251 235 / 0.5);
|
|
1651
1976
|
}
|
|
1652
1977
|
|
|
1653
|
-
.xcml-scope :is(.bg-
|
|
1654
|
-
background-color:
|
|
1978
|
+
.xcml-scope :is(.bg-background\/80) {
|
|
1979
|
+
background-color: hsl(var(--background) / 0.8);
|
|
1655
1980
|
}
|
|
1656
1981
|
|
|
1657
1982
|
.xcml-scope :is(.bg-border\/50) {
|
|
@@ -1666,12 +1991,12 @@
|
|
|
1666
1991
|
background-color: hsl(var(--card) / 0.5);
|
|
1667
1992
|
}
|
|
1668
1993
|
|
|
1669
|
-
.xcml-scope :is(.bg-
|
|
1670
|
-
background-color:
|
|
1994
|
+
.xcml-scope :is(.bg-current) {
|
|
1995
|
+
background-color: currentColor;
|
|
1671
1996
|
}
|
|
1672
1997
|
|
|
1673
|
-
.xcml-scope :is(.bg-destructive
|
|
1674
|
-
background-color: hsl(var(--destructive)
|
|
1998
|
+
.xcml-scope :is(.bg-destructive) {
|
|
1999
|
+
background-color: hsl(var(--destructive));
|
|
1675
2000
|
}
|
|
1676
2001
|
|
|
1677
2002
|
.xcml-scope :is(.bg-destructive\/5) {
|
|
@@ -1683,6 +2008,10 @@
|
|
|
1683
2008
|
background-color: rgb(224 231 255 / var(--tw-bg-opacity));
|
|
1684
2009
|
}
|
|
1685
2010
|
|
|
2011
|
+
.xcml-scope :is(.bg-inherit) {
|
|
2012
|
+
background-color: inherit;
|
|
2013
|
+
}
|
|
2014
|
+
|
|
1686
2015
|
.xcml-scope :is(.bg-muted) {
|
|
1687
2016
|
background-color: hsl(var(--muted));
|
|
1688
2017
|
}
|
|
@@ -1703,6 +2032,10 @@
|
|
|
1703
2032
|
background-color: hsl(var(--muted) / 0.4);
|
|
1704
2033
|
}
|
|
1705
2034
|
|
|
2035
|
+
.xcml-scope :is(.bg-muted\/5) {
|
|
2036
|
+
background-color: hsl(var(--muted) / 0.05);
|
|
2037
|
+
}
|
|
2038
|
+
|
|
1706
2039
|
.xcml-scope :is(.bg-muted\/50) {
|
|
1707
2040
|
background-color: hsl(var(--muted) / 0.5);
|
|
1708
2041
|
}
|
|
@@ -1711,42 +2044,30 @@
|
|
|
1711
2044
|
background-color: hsl(var(--muted) / 0.6);
|
|
1712
2045
|
}
|
|
1713
2046
|
|
|
1714
|
-
.xcml-scope :is(.bg-primary) {
|
|
1715
|
-
background-color: hsl(var(--primary));
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
2047
|
.xcml-scope :is(.bg-primary\/10) {
|
|
1719
2048
|
background-color: hsl(var(--primary) / 0.1);
|
|
1720
2049
|
}
|
|
1721
2050
|
|
|
1722
|
-
.xcml-scope :is(.bg-primary\/15) {
|
|
1723
|
-
background-color: hsl(var(--primary) / 0.15);
|
|
1724
|
-
}
|
|
1725
|
-
|
|
1726
2051
|
.xcml-scope :is(.bg-primary\/20) {
|
|
1727
2052
|
background-color: hsl(var(--primary) / 0.2);
|
|
1728
2053
|
}
|
|
1729
2054
|
|
|
1730
|
-
.xcml-scope :is(.bg-primary\/
|
|
1731
|
-
background-color: hsl(var(--primary) / 0.
|
|
2055
|
+
.xcml-scope :is(.bg-primary\/40) {
|
|
2056
|
+
background-color: hsl(var(--primary) / 0.4);
|
|
1732
2057
|
}
|
|
1733
2058
|
|
|
1734
|
-
.xcml-scope :is(.bg-primary\/
|
|
1735
|
-
background-color: hsl(var(--primary) / 0.
|
|
2059
|
+
.xcml-scope :is(.bg-primary\/5) {
|
|
2060
|
+
background-color: hsl(var(--primary) / 0.05);
|
|
1736
2061
|
}
|
|
1737
2062
|
|
|
1738
|
-
.xcml-scope :is(.bg-
|
|
1739
|
-
background-color: hsl(var(--
|
|
2063
|
+
.xcml-scope :is(.bg-primary\/80) {
|
|
2064
|
+
background-color: hsl(var(--primary) / 0.8);
|
|
1740
2065
|
}
|
|
1741
2066
|
|
|
1742
2067
|
.xcml-scope :is(.bg-success) {
|
|
1743
2068
|
background-color: hsl(var(--success));
|
|
1744
2069
|
}
|
|
1745
2070
|
|
|
1746
|
-
.xcml-scope :is(.bg-success\/10) {
|
|
1747
|
-
background-color: hsl(var(--success) / 0.1);
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
2071
|
.xcml-scope :is(.bg-success\/5) {
|
|
1751
2072
|
background-color: hsl(var(--success) / 0.05);
|
|
1752
2073
|
}
|
|
@@ -1755,6 +2076,10 @@
|
|
|
1755
2076
|
background-color: transparent;
|
|
1756
2077
|
}
|
|
1757
2078
|
|
|
2079
|
+
.xcml-scope :is(.bg-warning\/5) {
|
|
2080
|
+
background-color: hsl(var(--warning) / 0.05);
|
|
2081
|
+
}
|
|
2082
|
+
|
|
1758
2083
|
.xcml-scope :is(.bg-white) {
|
|
1759
2084
|
--tw-bg-opacity: 1;
|
|
1760
2085
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
@@ -1773,10 +2098,20 @@
|
|
|
1773
2098
|
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
1774
2099
|
}
|
|
1775
2100
|
|
|
2101
|
+
.xcml-scope :is(.bg-gradient-to-l) {
|
|
2102
|
+
background-image: linear-gradient(to left, var(--tw-gradient-stops));
|
|
2103
|
+
}
|
|
2104
|
+
|
|
1776
2105
|
.xcml-scope :is(.bg-gradient-to-r) {
|
|
1777
2106
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
|
1778
2107
|
}
|
|
1779
2108
|
|
|
2109
|
+
.xcml-scope :is(.from-background\/50) {
|
|
2110
|
+
--tw-gradient-from: hsl(var(--background) / 0.5) var(--tw-gradient-from-position);
|
|
2111
|
+
--tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
|
|
2112
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2113
|
+
}
|
|
2114
|
+
|
|
1780
2115
|
.xcml-scope :is(.from-foreground) {
|
|
1781
2116
|
--tw-gradient-from: hsl(var(--foreground)) var(--tw-gradient-from-position);
|
|
1782
2117
|
--tw-gradient-to: hsl(var(--foreground) / 0) var(--tw-gradient-to-position);
|
|
@@ -1795,6 +2130,12 @@
|
|
|
1795
2130
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1796
2131
|
}
|
|
1797
2132
|
|
|
2133
|
+
.xcml-scope :is(.from-transparent) {
|
|
2134
|
+
--tw-gradient-from: transparent var(--tw-gradient-from-position);
|
|
2135
|
+
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
2136
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2137
|
+
}
|
|
2138
|
+
|
|
1798
2139
|
.xcml-scope :is(.via-foreground) {
|
|
1799
2140
|
--tw-gradient-to: hsl(var(--foreground) / 0) var(--tw-gradient-to-position);
|
|
1800
2141
|
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--foreground)) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
@@ -1810,6 +2151,10 @@
|
|
|
1810
2151
|
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.6) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1811
2152
|
}
|
|
1812
2153
|
|
|
2154
|
+
.xcml-scope :is(.to-border\/50) {
|
|
2155
|
+
--tw-gradient-to: hsl(var(--border) / 0.5) var(--tw-gradient-to-position);
|
|
2156
|
+
}
|
|
2157
|
+
|
|
1813
2158
|
.xcml-scope :is(.to-foreground\/70) {
|
|
1814
2159
|
--tw-gradient-to: hsl(var(--foreground) / 0.7) var(--tw-gradient-to-position);
|
|
1815
2160
|
}
|
|
@@ -1822,11 +2167,23 @@
|
|
|
1822
2167
|
--tw-gradient-to: hsl(var(--primary) / 0.2) var(--tw-gradient-to-position);
|
|
1823
2168
|
}
|
|
1824
2169
|
|
|
2170
|
+
.xcml-scope :is(.to-transparent) {
|
|
2171
|
+
--tw-gradient-to: transparent var(--tw-gradient-to-position);
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
.xcml-scope :is(.bg-cover) {
|
|
2175
|
+
background-size: cover;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
1825
2178
|
.xcml-scope :is(.bg-clip-text) {
|
|
1826
2179
|
-webkit-background-clip: text;
|
|
1827
2180
|
background-clip: text;
|
|
1828
2181
|
}
|
|
1829
2182
|
|
|
2183
|
+
.xcml-scope :is(.bg-center) {
|
|
2184
|
+
background-position: center;
|
|
2185
|
+
}
|
|
2186
|
+
|
|
1830
2187
|
.xcml-scope :is(.object-cover) {
|
|
1831
2188
|
-o-object-fit: cover;
|
|
1832
2189
|
object-fit: cover;
|
|
@@ -1856,6 +2213,10 @@
|
|
|
1856
2213
|
padding: 1rem;
|
|
1857
2214
|
}
|
|
1858
2215
|
|
|
2216
|
+
.xcml-scope :is(.p-5) {
|
|
2217
|
+
padding: 1.25rem;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
1859
2220
|
.xcml-scope :is(.p-8) {
|
|
1860
2221
|
padding: 2rem;
|
|
1861
2222
|
}
|
|
@@ -1872,6 +2233,16 @@
|
|
|
1872
2233
|
padding: var(--table-cell-padding-sm);
|
|
1873
2234
|
}
|
|
1874
2235
|
|
|
2236
|
+
.xcml-scope :is(.px-0) {
|
|
2237
|
+
padding-left: 0px;
|
|
2238
|
+
padding-right: 0px;
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
.xcml-scope :is(.px-0\.5) {
|
|
2242
|
+
padding-left: 0.125rem;
|
|
2243
|
+
padding-right: 0.125rem;
|
|
2244
|
+
}
|
|
2245
|
+
|
|
1875
2246
|
.xcml-scope :is(.px-1) {
|
|
1876
2247
|
padding-left: 0.25rem;
|
|
1877
2248
|
padding-right: 0.25rem;
|
|
@@ -1897,16 +2268,6 @@
|
|
|
1897
2268
|
padding-right: 1rem;
|
|
1898
2269
|
}
|
|
1899
2270
|
|
|
1900
|
-
.xcml-scope :is(.px-5) {
|
|
1901
|
-
padding-left: 1.25rem;
|
|
1902
|
-
padding-right: 1.25rem;
|
|
1903
|
-
}
|
|
1904
|
-
|
|
1905
|
-
.xcml-scope :is(.px-6) {
|
|
1906
|
-
padding-left: 1.5rem;
|
|
1907
|
-
padding-right: 1.5rem;
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
2271
|
.xcml-scope :is(.py-0) {
|
|
1911
2272
|
padding-top: 0px;
|
|
1912
2273
|
padding-bottom: 0px;
|
|
@@ -1932,39 +2293,60 @@
|
|
|
1932
2293
|
padding-bottom: 0.5rem;
|
|
1933
2294
|
}
|
|
1934
2295
|
|
|
1935
|
-
.xcml-scope :is(.py-
|
|
1936
|
-
padding-top:
|
|
1937
|
-
padding-bottom:
|
|
2296
|
+
.xcml-scope :is(.py-4) {
|
|
2297
|
+
padding-top: 1rem;
|
|
2298
|
+
padding-bottom: 1rem;
|
|
1938
2299
|
}
|
|
1939
2300
|
|
|
1940
|
-
.xcml-scope :is(.py-
|
|
1941
|
-
padding-top:
|
|
1942
|
-
padding-bottom:
|
|
2301
|
+
.xcml-scope :is(.py-8) {
|
|
2302
|
+
padding-top: 2rem;
|
|
2303
|
+
padding-bottom: 2rem;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.xcml-scope :is(.pb-2) {
|
|
2307
|
+
padding-bottom: 0.5rem;
|
|
1943
2308
|
}
|
|
1944
2309
|
|
|
1945
|
-
.xcml-scope :is(.
|
|
1946
|
-
padding-
|
|
1947
|
-
padding-bottom: 0.875rem;
|
|
2310
|
+
.xcml-scope :is(.pb-2\.5) {
|
|
2311
|
+
padding-bottom: 0.625rem;
|
|
1948
2312
|
}
|
|
1949
2313
|
|
|
1950
|
-
.xcml-scope :is(.
|
|
1951
|
-
padding-
|
|
1952
|
-
padding-bottom: 1.25rem;
|
|
2314
|
+
.xcml-scope :is(.pl-1) {
|
|
2315
|
+
padding-left: 0.25rem;
|
|
1953
2316
|
}
|
|
1954
2317
|
|
|
1955
|
-
.xcml-scope :is(.
|
|
1956
|
-
padding-
|
|
1957
|
-
padding-bottom: 2rem;
|
|
2318
|
+
.xcml-scope :is(.pl-12) {
|
|
2319
|
+
padding-left: 3rem;
|
|
1958
2320
|
}
|
|
1959
2321
|
|
|
1960
|
-
.xcml-scope :is(.
|
|
1961
|
-
padding-
|
|
2322
|
+
.xcml-scope :is(.pl-16) {
|
|
2323
|
+
padding-left: 4rem;
|
|
1962
2324
|
}
|
|
1963
2325
|
|
|
1964
2326
|
.xcml-scope :is(.pl-2) {
|
|
1965
2327
|
padding-left: 0.5rem;
|
|
1966
2328
|
}
|
|
1967
2329
|
|
|
2330
|
+
.xcml-scope :is(.pl-20) {
|
|
2331
|
+
padding-left: 5rem;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.xcml-scope :is(.pl-3) {
|
|
2335
|
+
padding-left: 0.75rem;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.xcml-scope :is(.pl-4) {
|
|
2339
|
+
padding-left: 1rem;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
.xcml-scope :is(.pl-8) {
|
|
2343
|
+
padding-left: 2rem;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
.xcml-scope :is(.pl-9) {
|
|
2347
|
+
padding-left: 2.25rem;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
1968
2350
|
.xcml-scope :is(.pt-2) {
|
|
1969
2351
|
padding-top: 0.5rem;
|
|
1970
2352
|
}
|
|
@@ -1989,10 +2371,6 @@
|
|
|
1989
2371
|
vertical-align: baseline;
|
|
1990
2372
|
}
|
|
1991
2373
|
|
|
1992
|
-
.xcml-scope :is(.align-middle) {
|
|
1993
|
-
vertical-align: middle;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
2374
|
.xcml-scope :is(.font-mono) {
|
|
1997
2375
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1998
2376
|
}
|
|
@@ -2006,18 +2384,6 @@
|
|
|
2006
2384
|
line-height: 2.25rem;
|
|
2007
2385
|
}
|
|
2008
2386
|
|
|
2009
|
-
.xcml-scope :is(.text-\[10px\]) {
|
|
2010
|
-
font-size: 10px;
|
|
2011
|
-
}
|
|
2012
|
-
|
|
2013
|
-
.xcml-scope :is(.text-\[11px\]) {
|
|
2014
|
-
font-size: 11px;
|
|
2015
|
-
}
|
|
2016
|
-
|
|
2017
|
-
.xcml-scope :is(.text-\[13\.5px\]) {
|
|
2018
|
-
font-size: 13.5px;
|
|
2019
|
-
}
|
|
2020
|
-
|
|
2021
2387
|
.xcml-scope :is(.text-base) {
|
|
2022
2388
|
font-size: var(--font-size-base);
|
|
2023
2389
|
}
|
|
@@ -2026,10 +2392,6 @@
|
|
|
2026
2392
|
font-size: var(--font-size-lg);
|
|
2027
2393
|
}
|
|
2028
2394
|
|
|
2029
|
-
.xcml-scope :is(.text-metric) {
|
|
2030
|
-
font-size: var(--font-size-metric);
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
2395
|
.xcml-scope :is(.text-metric-lg) {
|
|
2034
2396
|
font-size: var(--font-size-metric-lg);
|
|
2035
2397
|
}
|
|
@@ -2070,6 +2432,15 @@
|
|
|
2070
2432
|
font-style: italic;
|
|
2071
2433
|
}
|
|
2072
2434
|
|
|
2435
|
+
.xcml-scope :is(.tabular-nums) {
|
|
2436
|
+
--tw-numeric-spacing: tabular-nums;
|
|
2437
|
+
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.xcml-scope :is(.leading-none) {
|
|
2441
|
+
line-height: 1;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2073
2444
|
.xcml-scope :is(.leading-normal) {
|
|
2074
2445
|
line-height: 1.5;
|
|
2075
2446
|
}
|
|
@@ -2082,6 +2453,10 @@
|
|
|
2082
2453
|
line-height: 1.375;
|
|
2083
2454
|
}
|
|
2084
2455
|
|
|
2456
|
+
.xcml-scope :is(.tracking-\[0\.15em\]) {
|
|
2457
|
+
letter-spacing: 0.15em;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2085
2460
|
.xcml-scope :is(.tracking-tight) {
|
|
2086
2461
|
letter-spacing: -0.025em;
|
|
2087
2462
|
}
|
|
@@ -2090,10 +2465,23 @@
|
|
|
2090
2465
|
letter-spacing: -0.05em;
|
|
2091
2466
|
}
|
|
2092
2467
|
|
|
2468
|
+
.xcml-scope :is(.tracking-wide) {
|
|
2469
|
+
letter-spacing: 0.025em;
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2093
2472
|
.xcml-scope :is(.tracking-wider) {
|
|
2094
2473
|
letter-spacing: 0.05em;
|
|
2095
2474
|
}
|
|
2096
2475
|
|
|
2476
|
+
.xcml-scope :is(.tracking-widest) {
|
|
2477
|
+
letter-spacing: 0.1em;
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
.xcml-scope :is(.text-amber-400) {
|
|
2481
|
+
--tw-text-opacity: 1;
|
|
2482
|
+
color: rgb(251 191 36 / var(--tw-text-opacity));
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2097
2485
|
.xcml-scope :is(.text-amber-500) {
|
|
2098
2486
|
--tw-text-opacity: 1;
|
|
2099
2487
|
color: rgb(245 158 11 / var(--tw-text-opacity));
|
|
@@ -2116,27 +2504,24 @@
|
|
|
2116
2504
|
color: hsl(var(--foreground));
|
|
2117
2505
|
}
|
|
2118
2506
|
|
|
2119
|
-
.xcml-scope :is(.text-foreground\/
|
|
2120
|
-
color: hsl(var(--foreground) / 0.
|
|
2507
|
+
.xcml-scope :is(.text-foreground\/40) {
|
|
2508
|
+
color: hsl(var(--foreground) / 0.4);
|
|
2121
2509
|
}
|
|
2122
2510
|
|
|
2123
|
-
.xcml-scope :is(.text-foreground\/
|
|
2124
|
-
color: hsl(var(--foreground) / 0.
|
|
2511
|
+
.xcml-scope :is(.text-foreground\/70) {
|
|
2512
|
+
color: hsl(var(--foreground) / 0.7);
|
|
2125
2513
|
}
|
|
2126
2514
|
|
|
2127
|
-
.xcml-scope :is(.text-
|
|
2128
|
-
|
|
2129
|
-
color: rgb(34 197 94 / var(--tw-text-opacity));
|
|
2515
|
+
.xcml-scope :is(.text-foreground\/80) {
|
|
2516
|
+
color: hsl(var(--foreground) / 0.8);
|
|
2130
2517
|
}
|
|
2131
2518
|
|
|
2132
|
-
.xcml-scope :is(.text-
|
|
2133
|
-
|
|
2134
|
-
color: rgb(22 163 74 / var(--tw-text-opacity));
|
|
2519
|
+
.xcml-scope :is(.text-foreground\/90) {
|
|
2520
|
+
color: hsl(var(--foreground) / 0.9);
|
|
2135
2521
|
}
|
|
2136
2522
|
|
|
2137
|
-
.xcml-scope :is(.text-
|
|
2138
|
-
|
|
2139
|
-
color: rgb(99 102 241 / var(--tw-text-opacity));
|
|
2523
|
+
.xcml-scope :is(.text-inherit) {
|
|
2524
|
+
color: inherit;
|
|
2140
2525
|
}
|
|
2141
2526
|
|
|
2142
2527
|
.xcml-scope :is(.text-muted-foreground) {
|
|
@@ -2159,22 +2544,12 @@
|
|
|
2159
2544
|
color: hsl(var(--muted-foreground) / 0.6);
|
|
2160
2545
|
}
|
|
2161
2546
|
|
|
2162
|
-
.xcml-scope :is(.text-
|
|
2163
|
-
color: hsl(var(--
|
|
2164
|
-
}
|
|
2165
|
-
|
|
2166
|
-
.xcml-scope :is(.text-primary\/90) {
|
|
2167
|
-
color: hsl(var(--primary) / 0.9);
|
|
2168
|
-
}
|
|
2169
|
-
|
|
2170
|
-
.xcml-scope :is(.text-red-500) {
|
|
2171
|
-
--tw-text-opacity: 1;
|
|
2172
|
-
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
2547
|
+
.xcml-scope :is(.text-muted-foreground\/70) {
|
|
2548
|
+
color: hsl(var(--muted-foreground) / 0.7);
|
|
2173
2549
|
}
|
|
2174
2550
|
|
|
2175
|
-
.xcml-scope :is(.text-
|
|
2176
|
-
|
|
2177
|
-
color: rgb(220 38 38 / var(--tw-text-opacity));
|
|
2551
|
+
.xcml-scope :is(.text-primary) {
|
|
2552
|
+
color: hsl(var(--primary));
|
|
2178
2553
|
}
|
|
2179
2554
|
|
|
2180
2555
|
.xcml-scope :is(.text-success) {
|
|
@@ -2185,6 +2560,15 @@
|
|
|
2185
2560
|
color: transparent;
|
|
2186
2561
|
}
|
|
2187
2562
|
|
|
2563
|
+
.xcml-scope :is(.text-warning) {
|
|
2564
|
+
color: hsl(var(--warning));
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
.xcml-scope :is(.text-zinc-800) {
|
|
2568
|
+
--tw-text-opacity: 1;
|
|
2569
|
+
color: rgb(39 39 42 / var(--tw-text-opacity));
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2188
2572
|
.xcml-scope :is(.no-underline) {
|
|
2189
2573
|
text-decoration-line: none;
|
|
2190
2574
|
}
|
|
@@ -2223,12 +2607,6 @@
|
|
|
2223
2607
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2224
2608
|
}
|
|
2225
2609
|
|
|
2226
|
-
.xcml-scope :is(.shadow-\[0_0_8px_rgba\(var\(--primary-rgb\)\2c 0\.4\)\]) {
|
|
2227
|
-
--tw-shadow: 0 0 8px rgba(var(--primary-rgb),0.4);
|
|
2228
|
-
--tw-shadow-colored: 0 0 8px var(--tw-shadow-color);
|
|
2229
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2230
|
-
}
|
|
2231
|
-
|
|
2232
2610
|
.xcml-scope :is(.shadow-card) {
|
|
2233
2611
|
--tw-shadow: var(--shadow-card);
|
|
2234
2612
|
--tw-shadow-colored: var(--shadow-card);
|
|
@@ -2268,6 +2646,11 @@
|
|
|
2268
2646
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2269
2647
|
}
|
|
2270
2648
|
|
|
2649
|
+
.xcml-scope :is(.blur-3xl) {
|
|
2650
|
+
--tw-blur: blur(64px);
|
|
2651
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2271
2654
|
.xcml-scope :is(.filter) {
|
|
2272
2655
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2273
2656
|
}
|
|
@@ -2379,18 +2762,14 @@
|
|
|
2379
2762
|
background-color: hsl(var(--card) / 0.8);
|
|
2380
2763
|
}
|
|
2381
2764
|
|
|
2382
|
-
.xcml-scope :is(.hover\:bg-muted:hover) {
|
|
2383
|
-
background-color: hsl(var(--muted));
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
.xcml-scope :is(.hover\:bg-muted\/30:hover) {
|
|
2387
|
-
background-color: hsl(var(--muted) / 0.3);
|
|
2388
|
-
}
|
|
2389
|
-
|
|
2390
2765
|
.xcml-scope :is(.hover\:bg-primary\/5:hover) {
|
|
2391
2766
|
background-color: hsl(var(--primary) / 0.05);
|
|
2392
2767
|
}
|
|
2393
2768
|
|
|
2769
|
+
.xcml-scope :is(.hover\:text-destructive:hover) {
|
|
2770
|
+
color: hsl(var(--destructive));
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2394
2773
|
.xcml-scope :is(.hover\:text-primary:hover) {
|
|
2395
2774
|
color: hsl(var(--primary));
|
|
2396
2775
|
}
|
|
@@ -2452,6 +2831,11 @@
|
|
|
2452
2831
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2453
2832
|
}
|
|
2454
2833
|
|
|
2834
|
+
.xcml-scope :is(.group:hover .group-hover\:translate-x-0) {
|
|
2835
|
+
--tw-translate-x: 0px;
|
|
2836
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2455
2839
|
.xcml-scope :is(.group:hover .group-hover\:scale-110) {
|
|
2456
2840
|
--tw-scale-x: 1.1;
|
|
2457
2841
|
--tw-scale-y: 1.1;
|
|
@@ -2570,10 +2954,145 @@
|
|
|
2570
2954
|
}
|
|
2571
2955
|
}
|
|
2572
2956
|
|
|
2573
|
-
.xcml-scope :is(.\[\&_\.ant-
|
|
2574
|
-
|
|
2957
|
+
.xcml-scope :is(.\[\&_\.ant-pagination-item-active\]\:\!border-primary .ant-pagination-item-active) {
|
|
2958
|
+
border-color: hsl(var(--primary)) !important;
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
.xcml-scope :is(.\[\&_\.ant-pagination-item-active\]\:\!bg-primary\/5 .ant-pagination-item-active) {
|
|
2962
|
+
background-color: hsl(var(--primary) / 0.05) !important;
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
.xcml-scope :is(.\[\&_\.ant-pagination-item-active_a\]\:\!text-primary .ant-pagination-item-active a) {
|
|
2966
|
+
color: hsl(var(--primary)) !important;
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
.xcml-scope :is(.\[\&_\.ant-table-bordered_\.ant-table-container\]\:\!border-border\/50 .ant-table-bordered .ant-table-container) {
|
|
2970
|
+
border-color: hsl(var(--border) / 0.5) !important;
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:\!overflow-hidden .ant-table-container) {
|
|
2974
|
+
overflow: hidden !important;
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2977
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:overflow-hidden .ant-table-container) {
|
|
2978
|
+
overflow: hidden;
|
|
2979
|
+
}
|
|
2980
|
+
|
|
2981
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:\!rounded-md .ant-table-container) {
|
|
2982
|
+
border-radius: var(--radius-md) !important;
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:rounded-md .ant-table-container) {
|
|
2986
|
+
border-radius: var(--radius-md);
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!border-b .ant-table-tbody tr td) {
|
|
2990
|
+
border-bottom-width: 1px !important;
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2993
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:border-b .ant-table-tbody tr td) {
|
|
2994
|
+
border-bottom-width: 1px;
|
|
2575
2995
|
}
|
|
2576
2996
|
|
|
2577
|
-
.xcml-scope :is(.\[\&_\.ant-table\]\:\!
|
|
2578
|
-
|
|
2997
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!border-border\/30 .ant-table-tbody tr td) {
|
|
2998
|
+
border-color: hsl(var(--border) / 0.3) !important;
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:border-border\/30 .ant-table-tbody tr td) {
|
|
3002
|
+
border-color: hsl(var(--border) / 0.3);
|
|
3003
|
+
}
|
|
3004
|
+
|
|
3005
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!px-3 .ant-table-tbody tr td) {
|
|
3006
|
+
padding-left: 0.75rem !important;
|
|
3007
|
+
padding-right: 0.75rem !important;
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!px-4 .ant-table-tbody tr td) {
|
|
3011
|
+
padding-left: 1rem !important;
|
|
3012
|
+
padding-right: 1rem !important;
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!py-2 .ant-table-tbody tr td) {
|
|
3016
|
+
padding-top: 0.5rem !important;
|
|
3017
|
+
padding-bottom: 0.5rem !important;
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!py-2\.5 .ant-table-tbody tr td) {
|
|
3021
|
+
padding-top: 0.625rem !important;
|
|
3022
|
+
padding-bottom: 0.625rem !important;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:transition-all .ant-table-tbody tr td) {
|
|
3026
|
+
transition-property: all;
|
|
3027
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3028
|
+
transition-duration: 150ms;
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:duration-150 .ant-table-tbody tr td) {
|
|
3032
|
+
transition-duration: 150ms;
|
|
3033
|
+
animation-duration: 150ms;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
.xcml-scope :is(.hover\:\[\&_\.ant-table-tbody_tr_td\]\:\!bg-primary\/5 .ant-table-tbody tr td:hover) {
|
|
3037
|
+
background-color: hsl(var(--primary) / 0.05) !important;
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3040
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!border-b .ant-table-thead tr th) {
|
|
3041
|
+
border-bottom-width: 1px !important;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:border-b .ant-table-thead tr th) {
|
|
3045
|
+
border-bottom-width: 1px;
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!border-border\/60 .ant-table-thead tr th) {
|
|
3049
|
+
border-color: hsl(var(--border) / 0.6) !important;
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:border-border\/60 .ant-table-thead tr th) {
|
|
3053
|
+
border-color: hsl(var(--border) / 0.6);
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!bg-muted\/30 .ant-table-thead tr th) {
|
|
3057
|
+
background-color: hsl(var(--muted) / 0.3) !important;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!bg-muted\/40 .ant-table-thead tr th) {
|
|
3061
|
+
background-color: hsl(var(--muted) / 0.4) !important;
|
|
3062
|
+
}
|
|
3063
|
+
|
|
3064
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!px-3 .ant-table-thead tr th) {
|
|
3065
|
+
padding-left: 0.75rem !important;
|
|
3066
|
+
padding-right: 0.75rem !important;
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3069
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!px-4 .ant-table-thead tr th) {
|
|
3070
|
+
padding-left: 1rem !important;
|
|
3071
|
+
padding-right: 1rem !important;
|
|
3072
|
+
}
|
|
3073
|
+
|
|
3074
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!py-2\.5 .ant-table-thead tr th) {
|
|
3075
|
+
padding-top: 0.625rem !important;
|
|
3076
|
+
padding-bottom: 0.625rem !important;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!py-3 .ant-table-thead tr th) {
|
|
3080
|
+
padding-top: 0.75rem !important;
|
|
3081
|
+
padding-bottom: 0.75rem !important;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!text-foreground\/70 .ant-table-thead tr th) {
|
|
3085
|
+
color: hsl(var(--foreground) / 0.7) !important;
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:\!bg-transparent .ant-table) {
|
|
3089
|
+
background-color: transparent !important;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:\!text-xs .ant-table) {
|
|
3093
|
+
font-size: var(--font-size-xs) !important;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:text-sm .ant-table) {
|
|
3097
|
+
font-size: var(--font-size-sm);
|
|
2579
3098
|
}
|