@chatbi-v/xcml 2.0.1 → 2.1.0
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 +700 -185
- package/dist/index.d.cts +36 -2
- package/dist/index.d.ts +36 -2
- package/dist/index.js +17 -17
- 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
|
}
|
|
@@ -1259,6 +1550,10 @@
|
|
|
1259
1550
|
min-height: 6rem;
|
|
1260
1551
|
}
|
|
1261
1552
|
|
|
1553
|
+
.xcml-scope :is(.min-h-full) {
|
|
1554
|
+
min-height: 100%;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1262
1557
|
.xcml-scope :is(.w-0) {
|
|
1263
1558
|
width: 0px;
|
|
1264
1559
|
}
|
|
@@ -1275,6 +1570,10 @@
|
|
|
1275
1570
|
width: 0.375rem;
|
|
1276
1571
|
}
|
|
1277
1572
|
|
|
1573
|
+
.xcml-scope :is(.w-10) {
|
|
1574
|
+
width: 2.5rem;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1278
1577
|
.xcml-scope :is(.w-12) {
|
|
1279
1578
|
width: 3rem;
|
|
1280
1579
|
}
|
|
@@ -1291,10 +1590,22 @@
|
|
|
1291
1590
|
width: 6rem;
|
|
1292
1591
|
}
|
|
1293
1592
|
|
|
1593
|
+
.xcml-scope :is(.w-32) {
|
|
1594
|
+
width: 8rem;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1294
1597
|
.xcml-scope :is(.w-4) {
|
|
1295
1598
|
width: 1rem;
|
|
1296
1599
|
}
|
|
1297
1600
|
|
|
1601
|
+
.xcml-scope :is(.w-6) {
|
|
1602
|
+
width: 1.5rem;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.xcml-scope :is(.w-7) {
|
|
1606
|
+
width: 1.75rem;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1298
1609
|
.xcml-scope :is(.w-8) {
|
|
1299
1610
|
width: 2rem;
|
|
1300
1611
|
}
|
|
@@ -1303,10 +1614,6 @@
|
|
|
1303
1614
|
width: 375px;
|
|
1304
1615
|
}
|
|
1305
1616
|
|
|
1306
|
-
.xcml-scope :is(.w-\[var\(--percent\)\]) {
|
|
1307
|
-
width: var(--percent);
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
1617
|
.xcml-scope :is(.w-full) {
|
|
1311
1618
|
width: 100%;
|
|
1312
1619
|
}
|
|
@@ -1319,8 +1626,8 @@
|
|
|
1319
1626
|
min-width: 0px;
|
|
1320
1627
|
}
|
|
1321
1628
|
|
|
1322
|
-
.xcml-scope :is(.min-w
|
|
1323
|
-
min-width:
|
|
1629
|
+
.xcml-scope :is(.min-w-24) {
|
|
1630
|
+
min-width: 6rem;
|
|
1324
1631
|
}
|
|
1325
1632
|
|
|
1326
1633
|
.xcml-scope :is(.max-w-full) {
|
|
@@ -1339,12 +1646,9 @@
|
|
|
1339
1646
|
flex-shrink: 0;
|
|
1340
1647
|
}
|
|
1341
1648
|
|
|
1342
|
-
.xcml-scope :is(
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
.xcml-scope :is(.border-collapse) {
|
|
1347
|
-
border-collapse: collapse;
|
|
1649
|
+
.xcml-scope :is(.-translate-x-2) {
|
|
1650
|
+
--tw-translate-x: -0.5rem;
|
|
1651
|
+
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
1652
|
}
|
|
1349
1653
|
|
|
1350
1654
|
.xcml-scope :is(.scale-x-95) {
|
|
@@ -1366,10 +1670,6 @@
|
|
|
1366
1670
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1367
1671
|
}
|
|
1368
1672
|
|
|
1369
|
-
.xcml-scope :is(.cursor-default) {
|
|
1370
|
-
cursor: default;
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
1673
|
.xcml-scope :is(.cursor-help) {
|
|
1374
1674
|
cursor: help;
|
|
1375
1675
|
}
|
|
@@ -1430,10 +1730,6 @@
|
|
|
1430
1730
|
align-items: baseline;
|
|
1431
1731
|
}
|
|
1432
1732
|
|
|
1433
|
-
.xcml-scope :is(.justify-end) {
|
|
1434
|
-
justify-content: flex-end;
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
1733
|
.xcml-scope :is(.justify-center) {
|
|
1438
1734
|
justify-content: center;
|
|
1439
1735
|
}
|
|
@@ -1442,6 +1738,14 @@
|
|
|
1442
1738
|
justify-content: space-between;
|
|
1443
1739
|
}
|
|
1444
1740
|
|
|
1741
|
+
.xcml-scope :is(.gap-0) {
|
|
1742
|
+
gap: 0px;
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
.xcml-scope :is(.gap-0\.5) {
|
|
1746
|
+
gap: 0.125rem;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1445
1749
|
.xcml-scope :is(.gap-1) {
|
|
1446
1750
|
gap: 0.25rem;
|
|
1447
1751
|
}
|
|
@@ -1454,10 +1758,22 @@
|
|
|
1454
1758
|
gap: 0.5rem;
|
|
1455
1759
|
}
|
|
1456
1760
|
|
|
1761
|
+
.xcml-scope :is(.gap-2\.5) {
|
|
1762
|
+
gap: 0.625rem;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1457
1765
|
.xcml-scope :is(.gap-3) {
|
|
1458
1766
|
gap: 0.75rem;
|
|
1459
1767
|
}
|
|
1460
1768
|
|
|
1769
|
+
.xcml-scope :is(.gap-4) {
|
|
1770
|
+
gap: 1rem;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
.xcml-scope :is(.gap-5) {
|
|
1774
|
+
gap: 1.25rem;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1461
1777
|
.xcml-scope :is(.gap-card-gap) {
|
|
1462
1778
|
gap: var(--card-gap);
|
|
1463
1779
|
}
|
|
@@ -1474,16 +1790,10 @@
|
|
|
1474
1790
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1475
1791
|
}
|
|
1476
1792
|
|
|
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])) {
|
|
1793
|
+
.xcml-scope :is(.space-y-3 > :not([hidden]) ~ :not([hidden])) {
|
|
1484
1794
|
--tw-space-y-reverse: 0;
|
|
1485
|
-
margin-top: calc(
|
|
1486
|
-
margin-bottom: calc(
|
|
1795
|
+
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1796
|
+
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
1487
1797
|
}
|
|
1488
1798
|
|
|
1489
1799
|
.xcml-scope :is(.space-y-6 > :not([hidden]) ~ :not([hidden])) {
|
|
@@ -1498,16 +1808,6 @@
|
|
|
1498
1808
|
margin-bottom: calc(var(--card-gap) * var(--tw-space-y-reverse));
|
|
1499
1809
|
}
|
|
1500
1810
|
|
|
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
1811
|
.xcml-scope :is(.overflow-auto) {
|
|
1512
1812
|
overflow: auto;
|
|
1513
1813
|
}
|
|
@@ -1552,6 +1852,10 @@
|
|
|
1552
1852
|
border-radius: 0.25rem;
|
|
1553
1853
|
}
|
|
1554
1854
|
|
|
1855
|
+
.xcml-scope :is(.rounded-2xl) {
|
|
1856
|
+
border-radius: 1rem;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1555
1859
|
.xcml-scope :is(.rounded-full) {
|
|
1556
1860
|
border-radius: 9999px;
|
|
1557
1861
|
}
|
|
@@ -1564,6 +1868,10 @@
|
|
|
1564
1868
|
border-radius: var(--radius-md);
|
|
1565
1869
|
}
|
|
1566
1870
|
|
|
1871
|
+
.xcml-scope :is(.rounded-sm) {
|
|
1872
|
+
border-radius: var(--radius-sm);
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1567
1875
|
.xcml-scope :is(.rounded-xl) {
|
|
1568
1876
|
border-radius: var(--radius-xl);
|
|
1569
1877
|
}
|
|
@@ -1573,6 +1881,11 @@
|
|
|
1573
1881
|
border-bottom-right-radius: var(--radius-md);
|
|
1574
1882
|
}
|
|
1575
1883
|
|
|
1884
|
+
.xcml-scope :is(.rounded-r-sm) {
|
|
1885
|
+
border-top-right-radius: var(--radius-sm);
|
|
1886
|
+
border-bottom-right-radius: var(--radius-sm);
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1576
1889
|
.xcml-scope :is(.border) {
|
|
1577
1890
|
border-width: 1px;
|
|
1578
1891
|
}
|
|
@@ -1581,6 +1894,10 @@
|
|
|
1581
1894
|
border-bottom-width: 1px;
|
|
1582
1895
|
}
|
|
1583
1896
|
|
|
1897
|
+
.xcml-scope :is(.border-b-2) {
|
|
1898
|
+
border-bottom-width: 2px;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1584
1901
|
.xcml-scope :is(.border-l-2) {
|
|
1585
1902
|
border-left-width: 2px;
|
|
1586
1903
|
}
|
|
@@ -1589,18 +1906,10 @@
|
|
|
1589
1906
|
border-top-width: 1px;
|
|
1590
1907
|
}
|
|
1591
1908
|
|
|
1592
|
-
.xcml-scope :is(.border-t-2) {
|
|
1593
|
-
border-top-width: 2px;
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
1909
|
.xcml-scope :is(.border-dashed) {
|
|
1597
1910
|
border-style: dashed;
|
|
1598
1911
|
}
|
|
1599
1912
|
|
|
1600
|
-
.xcml-scope :is(.border-none) {
|
|
1601
|
-
border-style: none;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
1913
|
.xcml-scope :is(.border-amber-200) {
|
|
1605
1914
|
--tw-border-opacity: 1;
|
|
1606
1915
|
border-color: rgb(253 230 138 / var(--tw-border-opacity));
|
|
@@ -1610,10 +1919,6 @@
|
|
|
1610
1919
|
border-color: hsl(var(--border));
|
|
1611
1920
|
}
|
|
1612
1921
|
|
|
1613
|
-
.xcml-scope :is(.border-border\/10) {
|
|
1614
|
-
border-color: hsl(var(--border) / 0.1);
|
|
1615
|
-
}
|
|
1616
|
-
|
|
1617
1922
|
.xcml-scope :is(.border-border\/30) {
|
|
1618
1923
|
border-color: hsl(var(--border) / 0.3);
|
|
1619
1924
|
}
|
|
@@ -1638,6 +1943,14 @@
|
|
|
1638
1943
|
border-color: hsl(var(--destructive) / 0.2);
|
|
1639
1944
|
}
|
|
1640
1945
|
|
|
1946
|
+
.xcml-scope :is(.border-muted\/20) {
|
|
1947
|
+
border-color: hsl(var(--muted) / 0.2);
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.xcml-scope :is(.border-primary\/10) {
|
|
1951
|
+
border-color: hsl(var(--primary) / 0.1);
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1641
1954
|
.xcml-scope :is(.border-primary\/20) {
|
|
1642
1955
|
border-color: hsl(var(--primary) / 0.2);
|
|
1643
1956
|
}
|
|
@@ -1646,12 +1959,20 @@
|
|
|
1646
1959
|
border-color: hsl(var(--primary) / 0.3);
|
|
1647
1960
|
}
|
|
1648
1961
|
|
|
1962
|
+
.xcml-scope :is(.border-success\/20) {
|
|
1963
|
+
border-color: hsl(var(--success) / 0.2);
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.xcml-scope :is(.border-warning\/20) {
|
|
1967
|
+
border-color: hsl(var(--warning) / 0.2);
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1649
1970
|
.xcml-scope :is(.bg-amber-50\/50) {
|
|
1650
1971
|
background-color: rgb(255 251 235 / 0.5);
|
|
1651
1972
|
}
|
|
1652
1973
|
|
|
1653
|
-
.xcml-scope :is(.bg-
|
|
1654
|
-
background-color:
|
|
1974
|
+
.xcml-scope :is(.bg-background\/80) {
|
|
1975
|
+
background-color: hsl(var(--background) / 0.8);
|
|
1655
1976
|
}
|
|
1656
1977
|
|
|
1657
1978
|
.xcml-scope :is(.bg-border\/50) {
|
|
@@ -1666,12 +1987,12 @@
|
|
|
1666
1987
|
background-color: hsl(var(--card) / 0.5);
|
|
1667
1988
|
}
|
|
1668
1989
|
|
|
1669
|
-
.xcml-scope :is(.bg-
|
|
1670
|
-
background-color:
|
|
1990
|
+
.xcml-scope :is(.bg-current) {
|
|
1991
|
+
background-color: currentColor;
|
|
1671
1992
|
}
|
|
1672
1993
|
|
|
1673
|
-
.xcml-scope :is(.bg-destructive
|
|
1674
|
-
background-color: hsl(var(--destructive)
|
|
1994
|
+
.xcml-scope :is(.bg-destructive) {
|
|
1995
|
+
background-color: hsl(var(--destructive));
|
|
1675
1996
|
}
|
|
1676
1997
|
|
|
1677
1998
|
.xcml-scope :is(.bg-destructive\/5) {
|
|
@@ -1683,6 +2004,10 @@
|
|
|
1683
2004
|
background-color: rgb(224 231 255 / var(--tw-bg-opacity));
|
|
1684
2005
|
}
|
|
1685
2006
|
|
|
2007
|
+
.xcml-scope :is(.bg-inherit) {
|
|
2008
|
+
background-color: inherit;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
1686
2011
|
.xcml-scope :is(.bg-muted) {
|
|
1687
2012
|
background-color: hsl(var(--muted));
|
|
1688
2013
|
}
|
|
@@ -1703,6 +2028,10 @@
|
|
|
1703
2028
|
background-color: hsl(var(--muted) / 0.4);
|
|
1704
2029
|
}
|
|
1705
2030
|
|
|
2031
|
+
.xcml-scope :is(.bg-muted\/5) {
|
|
2032
|
+
background-color: hsl(var(--muted) / 0.05);
|
|
2033
|
+
}
|
|
2034
|
+
|
|
1706
2035
|
.xcml-scope :is(.bg-muted\/50) {
|
|
1707
2036
|
background-color: hsl(var(--muted) / 0.5);
|
|
1708
2037
|
}
|
|
@@ -1711,42 +2040,30 @@
|
|
|
1711
2040
|
background-color: hsl(var(--muted) / 0.6);
|
|
1712
2041
|
}
|
|
1713
2042
|
|
|
1714
|
-
.xcml-scope :is(.bg-primary) {
|
|
1715
|
-
background-color: hsl(var(--primary));
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
2043
|
.xcml-scope :is(.bg-primary\/10) {
|
|
1719
2044
|
background-color: hsl(var(--primary) / 0.1);
|
|
1720
2045
|
}
|
|
1721
2046
|
|
|
1722
|
-
.xcml-scope :is(.bg-primary\/15) {
|
|
1723
|
-
background-color: hsl(var(--primary) / 0.15);
|
|
1724
|
-
}
|
|
1725
|
-
|
|
1726
2047
|
.xcml-scope :is(.bg-primary\/20) {
|
|
1727
2048
|
background-color: hsl(var(--primary) / 0.2);
|
|
1728
2049
|
}
|
|
1729
2050
|
|
|
1730
|
-
.xcml-scope :is(.bg-primary\/
|
|
1731
|
-
background-color: hsl(var(--primary) / 0.
|
|
2051
|
+
.xcml-scope :is(.bg-primary\/40) {
|
|
2052
|
+
background-color: hsl(var(--primary) / 0.4);
|
|
1732
2053
|
}
|
|
1733
2054
|
|
|
1734
|
-
.xcml-scope :is(.bg-primary\/
|
|
1735
|
-
background-color: hsl(var(--primary) / 0.
|
|
2055
|
+
.xcml-scope :is(.bg-primary\/5) {
|
|
2056
|
+
background-color: hsl(var(--primary) / 0.05);
|
|
1736
2057
|
}
|
|
1737
2058
|
|
|
1738
|
-
.xcml-scope :is(.bg-
|
|
1739
|
-
background-color: hsl(var(--
|
|
2059
|
+
.xcml-scope :is(.bg-primary\/80) {
|
|
2060
|
+
background-color: hsl(var(--primary) / 0.8);
|
|
1740
2061
|
}
|
|
1741
2062
|
|
|
1742
2063
|
.xcml-scope :is(.bg-success) {
|
|
1743
2064
|
background-color: hsl(var(--success));
|
|
1744
2065
|
}
|
|
1745
2066
|
|
|
1746
|
-
.xcml-scope :is(.bg-success\/10) {
|
|
1747
|
-
background-color: hsl(var(--success) / 0.1);
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
2067
|
.xcml-scope :is(.bg-success\/5) {
|
|
1751
2068
|
background-color: hsl(var(--success) / 0.05);
|
|
1752
2069
|
}
|
|
@@ -1755,6 +2072,10 @@
|
|
|
1755
2072
|
background-color: transparent;
|
|
1756
2073
|
}
|
|
1757
2074
|
|
|
2075
|
+
.xcml-scope :is(.bg-warning\/5) {
|
|
2076
|
+
background-color: hsl(var(--warning) / 0.05);
|
|
2077
|
+
}
|
|
2078
|
+
|
|
1758
2079
|
.xcml-scope :is(.bg-white) {
|
|
1759
2080
|
--tw-bg-opacity: 1;
|
|
1760
2081
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
@@ -1773,10 +2094,20 @@
|
|
|
1773
2094
|
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
1774
2095
|
}
|
|
1775
2096
|
|
|
2097
|
+
.xcml-scope :is(.bg-gradient-to-l) {
|
|
2098
|
+
background-image: linear-gradient(to left, var(--tw-gradient-stops));
|
|
2099
|
+
}
|
|
2100
|
+
|
|
1776
2101
|
.xcml-scope :is(.bg-gradient-to-r) {
|
|
1777
2102
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
|
1778
2103
|
}
|
|
1779
2104
|
|
|
2105
|
+
.xcml-scope :is(.from-background\/50) {
|
|
2106
|
+
--tw-gradient-from: hsl(var(--background) / 0.5) var(--tw-gradient-from-position);
|
|
2107
|
+
--tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
|
|
2108
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
1780
2111
|
.xcml-scope :is(.from-foreground) {
|
|
1781
2112
|
--tw-gradient-from: hsl(var(--foreground)) var(--tw-gradient-from-position);
|
|
1782
2113
|
--tw-gradient-to: hsl(var(--foreground) / 0) var(--tw-gradient-to-position);
|
|
@@ -1795,6 +2126,12 @@
|
|
|
1795
2126
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1796
2127
|
}
|
|
1797
2128
|
|
|
2129
|
+
.xcml-scope :is(.from-transparent) {
|
|
2130
|
+
--tw-gradient-from: transparent var(--tw-gradient-from-position);
|
|
2131
|
+
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
2132
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2133
|
+
}
|
|
2134
|
+
|
|
1798
2135
|
.xcml-scope :is(.via-foreground) {
|
|
1799
2136
|
--tw-gradient-to: hsl(var(--foreground) / 0) var(--tw-gradient-to-position);
|
|
1800
2137
|
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--foreground)) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
@@ -1810,6 +2147,10 @@
|
|
|
1810
2147
|
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.6) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1811
2148
|
}
|
|
1812
2149
|
|
|
2150
|
+
.xcml-scope :is(.to-border\/50) {
|
|
2151
|
+
--tw-gradient-to: hsl(var(--border) / 0.5) var(--tw-gradient-to-position);
|
|
2152
|
+
}
|
|
2153
|
+
|
|
1813
2154
|
.xcml-scope :is(.to-foreground\/70) {
|
|
1814
2155
|
--tw-gradient-to: hsl(var(--foreground) / 0.7) var(--tw-gradient-to-position);
|
|
1815
2156
|
}
|
|
@@ -1822,11 +2163,23 @@
|
|
|
1822
2163
|
--tw-gradient-to: hsl(var(--primary) / 0.2) var(--tw-gradient-to-position);
|
|
1823
2164
|
}
|
|
1824
2165
|
|
|
2166
|
+
.xcml-scope :is(.to-transparent) {
|
|
2167
|
+
--tw-gradient-to: transparent var(--tw-gradient-to-position);
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.xcml-scope :is(.bg-cover) {
|
|
2171
|
+
background-size: cover;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
1825
2174
|
.xcml-scope :is(.bg-clip-text) {
|
|
1826
2175
|
-webkit-background-clip: text;
|
|
1827
2176
|
background-clip: text;
|
|
1828
2177
|
}
|
|
1829
2178
|
|
|
2179
|
+
.xcml-scope :is(.bg-center) {
|
|
2180
|
+
background-position: center;
|
|
2181
|
+
}
|
|
2182
|
+
|
|
1830
2183
|
.xcml-scope :is(.object-cover) {
|
|
1831
2184
|
-o-object-fit: cover;
|
|
1832
2185
|
object-fit: cover;
|
|
@@ -1856,6 +2209,10 @@
|
|
|
1856
2209
|
padding: 1rem;
|
|
1857
2210
|
}
|
|
1858
2211
|
|
|
2212
|
+
.xcml-scope :is(.p-5) {
|
|
2213
|
+
padding: 1.25rem;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
1859
2216
|
.xcml-scope :is(.p-8) {
|
|
1860
2217
|
padding: 2rem;
|
|
1861
2218
|
}
|
|
@@ -1872,6 +2229,16 @@
|
|
|
1872
2229
|
padding: var(--table-cell-padding-sm);
|
|
1873
2230
|
}
|
|
1874
2231
|
|
|
2232
|
+
.xcml-scope :is(.px-0) {
|
|
2233
|
+
padding-left: 0px;
|
|
2234
|
+
padding-right: 0px;
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
.xcml-scope :is(.px-0\.5) {
|
|
2238
|
+
padding-left: 0.125rem;
|
|
2239
|
+
padding-right: 0.125rem;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
1875
2242
|
.xcml-scope :is(.px-1) {
|
|
1876
2243
|
padding-left: 0.25rem;
|
|
1877
2244
|
padding-right: 0.25rem;
|
|
@@ -1897,16 +2264,6 @@
|
|
|
1897
2264
|
padding-right: 1rem;
|
|
1898
2265
|
}
|
|
1899
2266
|
|
|
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
2267
|
.xcml-scope :is(.py-0) {
|
|
1911
2268
|
padding-top: 0px;
|
|
1912
2269
|
padding-bottom: 0px;
|
|
@@ -1932,39 +2289,60 @@
|
|
|
1932
2289
|
padding-bottom: 0.5rem;
|
|
1933
2290
|
}
|
|
1934
2291
|
|
|
1935
|
-
.xcml-scope :is(.py-
|
|
1936
|
-
padding-top:
|
|
1937
|
-
padding-bottom:
|
|
2292
|
+
.xcml-scope :is(.py-4) {
|
|
2293
|
+
padding-top: 1rem;
|
|
2294
|
+
padding-bottom: 1rem;
|
|
1938
2295
|
}
|
|
1939
2296
|
|
|
1940
|
-
.xcml-scope :is(.py-
|
|
1941
|
-
padding-top:
|
|
1942
|
-
padding-bottom:
|
|
2297
|
+
.xcml-scope :is(.py-8) {
|
|
2298
|
+
padding-top: 2rem;
|
|
2299
|
+
padding-bottom: 2rem;
|
|
1943
2300
|
}
|
|
1944
2301
|
|
|
1945
|
-
.xcml-scope :is(.
|
|
1946
|
-
padding-
|
|
1947
|
-
padding-bottom: 0.875rem;
|
|
2302
|
+
.xcml-scope :is(.pb-2) {
|
|
2303
|
+
padding-bottom: 0.5rem;
|
|
1948
2304
|
}
|
|
1949
2305
|
|
|
1950
|
-
.xcml-scope :is(.
|
|
1951
|
-
padding-
|
|
1952
|
-
padding-bottom: 1.25rem;
|
|
2306
|
+
.xcml-scope :is(.pb-2\.5) {
|
|
2307
|
+
padding-bottom: 0.625rem;
|
|
1953
2308
|
}
|
|
1954
2309
|
|
|
1955
|
-
.xcml-scope :is(.
|
|
1956
|
-
padding-
|
|
1957
|
-
padding-bottom: 2rem;
|
|
2310
|
+
.xcml-scope :is(.pl-1) {
|
|
2311
|
+
padding-left: 0.25rem;
|
|
1958
2312
|
}
|
|
1959
2313
|
|
|
1960
|
-
.xcml-scope :is(.
|
|
1961
|
-
padding-
|
|
2314
|
+
.xcml-scope :is(.pl-12) {
|
|
2315
|
+
padding-left: 3rem;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.xcml-scope :is(.pl-16) {
|
|
2319
|
+
padding-left: 4rem;
|
|
1962
2320
|
}
|
|
1963
2321
|
|
|
1964
2322
|
.xcml-scope :is(.pl-2) {
|
|
1965
2323
|
padding-left: 0.5rem;
|
|
1966
2324
|
}
|
|
1967
2325
|
|
|
2326
|
+
.xcml-scope :is(.pl-20) {
|
|
2327
|
+
padding-left: 5rem;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
.xcml-scope :is(.pl-3) {
|
|
2331
|
+
padding-left: 0.75rem;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.xcml-scope :is(.pl-4) {
|
|
2335
|
+
padding-left: 1rem;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.xcml-scope :is(.pl-8) {
|
|
2339
|
+
padding-left: 2rem;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
.xcml-scope :is(.pl-9) {
|
|
2343
|
+
padding-left: 2.25rem;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
1968
2346
|
.xcml-scope :is(.pt-2) {
|
|
1969
2347
|
padding-top: 0.5rem;
|
|
1970
2348
|
}
|
|
@@ -1989,10 +2367,6 @@
|
|
|
1989
2367
|
vertical-align: baseline;
|
|
1990
2368
|
}
|
|
1991
2369
|
|
|
1992
|
-
.xcml-scope :is(.align-middle) {
|
|
1993
|
-
vertical-align: middle;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
2370
|
.xcml-scope :is(.font-mono) {
|
|
1997
2371
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1998
2372
|
}
|
|
@@ -2006,18 +2380,6 @@
|
|
|
2006
2380
|
line-height: 2.25rem;
|
|
2007
2381
|
}
|
|
2008
2382
|
|
|
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
2383
|
.xcml-scope :is(.text-base) {
|
|
2022
2384
|
font-size: var(--font-size-base);
|
|
2023
2385
|
}
|
|
@@ -2026,10 +2388,6 @@
|
|
|
2026
2388
|
font-size: var(--font-size-lg);
|
|
2027
2389
|
}
|
|
2028
2390
|
|
|
2029
|
-
.xcml-scope :is(.text-metric) {
|
|
2030
|
-
font-size: var(--font-size-metric);
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
2391
|
.xcml-scope :is(.text-metric-lg) {
|
|
2034
2392
|
font-size: var(--font-size-metric-lg);
|
|
2035
2393
|
}
|
|
@@ -2070,6 +2428,15 @@
|
|
|
2070
2428
|
font-style: italic;
|
|
2071
2429
|
}
|
|
2072
2430
|
|
|
2431
|
+
.xcml-scope :is(.tabular-nums) {
|
|
2432
|
+
--tw-numeric-spacing: tabular-nums;
|
|
2433
|
+
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.xcml-scope :is(.leading-none) {
|
|
2437
|
+
line-height: 1;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2073
2440
|
.xcml-scope :is(.leading-normal) {
|
|
2074
2441
|
line-height: 1.5;
|
|
2075
2442
|
}
|
|
@@ -2082,6 +2449,10 @@
|
|
|
2082
2449
|
line-height: 1.375;
|
|
2083
2450
|
}
|
|
2084
2451
|
|
|
2452
|
+
.xcml-scope :is(.tracking-\[0\.15em\]) {
|
|
2453
|
+
letter-spacing: 0.15em;
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2085
2456
|
.xcml-scope :is(.tracking-tight) {
|
|
2086
2457
|
letter-spacing: -0.025em;
|
|
2087
2458
|
}
|
|
@@ -2090,10 +2461,23 @@
|
|
|
2090
2461
|
letter-spacing: -0.05em;
|
|
2091
2462
|
}
|
|
2092
2463
|
|
|
2464
|
+
.xcml-scope :is(.tracking-wide) {
|
|
2465
|
+
letter-spacing: 0.025em;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2093
2468
|
.xcml-scope :is(.tracking-wider) {
|
|
2094
2469
|
letter-spacing: 0.05em;
|
|
2095
2470
|
}
|
|
2096
2471
|
|
|
2472
|
+
.xcml-scope :is(.tracking-widest) {
|
|
2473
|
+
letter-spacing: 0.1em;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.xcml-scope :is(.text-amber-400) {
|
|
2477
|
+
--tw-text-opacity: 1;
|
|
2478
|
+
color: rgb(251 191 36 / var(--tw-text-opacity));
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2097
2481
|
.xcml-scope :is(.text-amber-500) {
|
|
2098
2482
|
--tw-text-opacity: 1;
|
|
2099
2483
|
color: rgb(245 158 11 / var(--tw-text-opacity));
|
|
@@ -2116,27 +2500,24 @@
|
|
|
2116
2500
|
color: hsl(var(--foreground));
|
|
2117
2501
|
}
|
|
2118
2502
|
|
|
2119
|
-
.xcml-scope :is(.text-foreground\/
|
|
2120
|
-
color: hsl(var(--foreground) / 0.
|
|
2503
|
+
.xcml-scope :is(.text-foreground\/40) {
|
|
2504
|
+
color: hsl(var(--foreground) / 0.4);
|
|
2121
2505
|
}
|
|
2122
2506
|
|
|
2123
|
-
.xcml-scope :is(.text-foreground\/
|
|
2124
|
-
color: hsl(var(--foreground) / 0.
|
|
2507
|
+
.xcml-scope :is(.text-foreground\/70) {
|
|
2508
|
+
color: hsl(var(--foreground) / 0.7);
|
|
2125
2509
|
}
|
|
2126
2510
|
|
|
2127
|
-
.xcml-scope :is(.text-
|
|
2128
|
-
|
|
2129
|
-
color: rgb(34 197 94 / var(--tw-text-opacity));
|
|
2511
|
+
.xcml-scope :is(.text-foreground\/80) {
|
|
2512
|
+
color: hsl(var(--foreground) / 0.8);
|
|
2130
2513
|
}
|
|
2131
2514
|
|
|
2132
|
-
.xcml-scope :is(.text-
|
|
2133
|
-
|
|
2134
|
-
color: rgb(22 163 74 / var(--tw-text-opacity));
|
|
2515
|
+
.xcml-scope :is(.text-foreground\/90) {
|
|
2516
|
+
color: hsl(var(--foreground) / 0.9);
|
|
2135
2517
|
}
|
|
2136
2518
|
|
|
2137
|
-
.xcml-scope :is(.text-
|
|
2138
|
-
|
|
2139
|
-
color: rgb(99 102 241 / var(--tw-text-opacity));
|
|
2519
|
+
.xcml-scope :is(.text-inherit) {
|
|
2520
|
+
color: inherit;
|
|
2140
2521
|
}
|
|
2141
2522
|
|
|
2142
2523
|
.xcml-scope :is(.text-muted-foreground) {
|
|
@@ -2159,22 +2540,12 @@
|
|
|
2159
2540
|
color: hsl(var(--muted-foreground) / 0.6);
|
|
2160
2541
|
}
|
|
2161
2542
|
|
|
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));
|
|
2543
|
+
.xcml-scope :is(.text-muted-foreground\/70) {
|
|
2544
|
+
color: hsl(var(--muted-foreground) / 0.7);
|
|
2173
2545
|
}
|
|
2174
2546
|
|
|
2175
|
-
.xcml-scope :is(.text-
|
|
2176
|
-
|
|
2177
|
-
color: rgb(220 38 38 / var(--tw-text-opacity));
|
|
2547
|
+
.xcml-scope :is(.text-primary) {
|
|
2548
|
+
color: hsl(var(--primary));
|
|
2178
2549
|
}
|
|
2179
2550
|
|
|
2180
2551
|
.xcml-scope :is(.text-success) {
|
|
@@ -2185,6 +2556,15 @@
|
|
|
2185
2556
|
color: transparent;
|
|
2186
2557
|
}
|
|
2187
2558
|
|
|
2559
|
+
.xcml-scope :is(.text-warning) {
|
|
2560
|
+
color: hsl(var(--warning));
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
.xcml-scope :is(.text-zinc-800) {
|
|
2564
|
+
--tw-text-opacity: 1;
|
|
2565
|
+
color: rgb(39 39 42 / var(--tw-text-opacity));
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2188
2568
|
.xcml-scope :is(.no-underline) {
|
|
2189
2569
|
text-decoration-line: none;
|
|
2190
2570
|
}
|
|
@@ -2223,12 +2603,6 @@
|
|
|
2223
2603
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2224
2604
|
}
|
|
2225
2605
|
|
|
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
2606
|
.xcml-scope :is(.shadow-card) {
|
|
2233
2607
|
--tw-shadow: var(--shadow-card);
|
|
2234
2608
|
--tw-shadow-colored: var(--shadow-card);
|
|
@@ -2268,6 +2642,11 @@
|
|
|
2268
2642
|
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
2643
|
}
|
|
2270
2644
|
|
|
2645
|
+
.xcml-scope :is(.blur-3xl) {
|
|
2646
|
+
--tw-blur: blur(64px);
|
|
2647
|
+
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);
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2271
2650
|
.xcml-scope :is(.filter) {
|
|
2272
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);
|
|
2273
2652
|
}
|
|
@@ -2379,18 +2758,14 @@
|
|
|
2379
2758
|
background-color: hsl(var(--card) / 0.8);
|
|
2380
2759
|
}
|
|
2381
2760
|
|
|
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
2761
|
.xcml-scope :is(.hover\:bg-primary\/5:hover) {
|
|
2391
2762
|
background-color: hsl(var(--primary) / 0.05);
|
|
2392
2763
|
}
|
|
2393
2764
|
|
|
2765
|
+
.xcml-scope :is(.hover\:text-destructive:hover) {
|
|
2766
|
+
color: hsl(var(--destructive));
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2394
2769
|
.xcml-scope :is(.hover\:text-primary:hover) {
|
|
2395
2770
|
color: hsl(var(--primary));
|
|
2396
2771
|
}
|
|
@@ -2452,6 +2827,11 @@
|
|
|
2452
2827
|
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
2828
|
}
|
|
2454
2829
|
|
|
2830
|
+
.xcml-scope :is(.group:hover .group-hover\:translate-x-0) {
|
|
2831
|
+
--tw-translate-x: 0px;
|
|
2832
|
+
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));
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2455
2835
|
.xcml-scope :is(.group:hover .group-hover\:scale-110) {
|
|
2456
2836
|
--tw-scale-x: 1.1;
|
|
2457
2837
|
--tw-scale-y: 1.1;
|
|
@@ -2570,10 +2950,145 @@
|
|
|
2570
2950
|
}
|
|
2571
2951
|
}
|
|
2572
2952
|
|
|
2573
|
-
.xcml-scope :is(.\[\&_\.ant-
|
|
2574
|
-
|
|
2953
|
+
.xcml-scope :is(.\[\&_\.ant-pagination-item-active\]\:\!border-primary .ant-pagination-item-active) {
|
|
2954
|
+
border-color: hsl(var(--primary)) !important;
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
.xcml-scope :is(.\[\&_\.ant-pagination-item-active\]\:\!bg-primary\/5 .ant-pagination-item-active) {
|
|
2958
|
+
background-color: hsl(var(--primary) / 0.05) !important;
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
.xcml-scope :is(.\[\&_\.ant-pagination-item-active_a\]\:\!text-primary .ant-pagination-item-active a) {
|
|
2962
|
+
color: hsl(var(--primary)) !important;
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
.xcml-scope :is(.\[\&_\.ant-table-bordered_\.ant-table-container\]\:\!border-border\/50 .ant-table-bordered .ant-table-container) {
|
|
2966
|
+
border-color: hsl(var(--border) / 0.5) !important;
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:\!overflow-hidden .ant-table-container) {
|
|
2970
|
+
overflow: hidden !important;
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:overflow-hidden .ant-table-container) {
|
|
2974
|
+
overflow: hidden;
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2977
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:\!rounded-md .ant-table-container) {
|
|
2978
|
+
border-radius: var(--radius-md) !important;
|
|
2979
|
+
}
|
|
2980
|
+
|
|
2981
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:rounded-md .ant-table-container) {
|
|
2982
|
+
border-radius: var(--radius-md);
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!border-b .ant-table-tbody tr td) {
|
|
2986
|
+
border-bottom-width: 1px !important;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:border-b .ant-table-tbody tr td) {
|
|
2990
|
+
border-bottom-width: 1px;
|
|
2575
2991
|
}
|
|
2576
2992
|
|
|
2577
|
-
.xcml-scope :is(.\[\&_\.ant-table\]\:\!
|
|
2578
|
-
|
|
2993
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!border-border\/30 .ant-table-tbody tr td) {
|
|
2994
|
+
border-color: hsl(var(--border) / 0.3) !important;
|
|
2995
|
+
}
|
|
2996
|
+
|
|
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);
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!px-3 .ant-table-tbody tr td) {
|
|
3002
|
+
padding-left: 0.75rem !important;
|
|
3003
|
+
padding-right: 0.75rem !important;
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!px-4 .ant-table-tbody tr td) {
|
|
3007
|
+
padding-left: 1rem !important;
|
|
3008
|
+
padding-right: 1rem !important;
|
|
3009
|
+
}
|
|
3010
|
+
|
|
3011
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!py-2 .ant-table-tbody tr td) {
|
|
3012
|
+
padding-top: 0.5rem !important;
|
|
3013
|
+
padding-bottom: 0.5rem !important;
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:\!py-2\.5 .ant-table-tbody tr td) {
|
|
3017
|
+
padding-top: 0.625rem !important;
|
|
3018
|
+
padding-bottom: 0.625rem !important;
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:transition-all .ant-table-tbody tr td) {
|
|
3022
|
+
transition-property: all;
|
|
3023
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3024
|
+
transition-duration: 150ms;
|
|
3025
|
+
}
|
|
3026
|
+
|
|
3027
|
+
.xcml-scope :is(.\[\&_\.ant-table-tbody_tr_td\]\:duration-150 .ant-table-tbody tr td) {
|
|
3028
|
+
transition-duration: 150ms;
|
|
3029
|
+
animation-duration: 150ms;
|
|
3030
|
+
}
|
|
3031
|
+
|
|
3032
|
+
.xcml-scope :is(.hover\:\[\&_\.ant-table-tbody_tr_td\]\:\!bg-primary\/5 .ant-table-tbody tr td:hover) {
|
|
3033
|
+
background-color: hsl(var(--primary) / 0.05) !important;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!border-b .ant-table-thead tr th) {
|
|
3037
|
+
border-bottom-width: 1px !important;
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3040
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:border-b .ant-table-thead tr th) {
|
|
3041
|
+
border-bottom-width: 1px;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!border-border\/60 .ant-table-thead tr th) {
|
|
3045
|
+
border-color: hsl(var(--border) / 0.6) !important;
|
|
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);
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!bg-muted\/30 .ant-table-thead tr th) {
|
|
3053
|
+
background-color: hsl(var(--muted) / 0.3) !important;
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!bg-muted\/40 .ant-table-thead tr th) {
|
|
3057
|
+
background-color: hsl(var(--muted) / 0.4) !important;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!px-3 .ant-table-thead tr th) {
|
|
3061
|
+
padding-left: 0.75rem !important;
|
|
3062
|
+
padding-right: 0.75rem !important;
|
|
3063
|
+
}
|
|
3064
|
+
|
|
3065
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!px-4 .ant-table-thead tr th) {
|
|
3066
|
+
padding-left: 1rem !important;
|
|
3067
|
+
padding-right: 1rem !important;
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!py-2\.5 .ant-table-thead tr th) {
|
|
3071
|
+
padding-top: 0.625rem !important;
|
|
3072
|
+
padding-bottom: 0.625rem !important;
|
|
3073
|
+
}
|
|
3074
|
+
|
|
3075
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!py-3 .ant-table-thead tr th) {
|
|
3076
|
+
padding-top: 0.75rem !important;
|
|
3077
|
+
padding-bottom: 0.75rem !important;
|
|
3078
|
+
}
|
|
3079
|
+
|
|
3080
|
+
.xcml-scope :is(.\[\&_\.ant-table-thead_tr_th\]\:\!text-foreground\/70 .ant-table-thead tr th) {
|
|
3081
|
+
color: hsl(var(--foreground) / 0.7) !important;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:\!bg-transparent .ant-table) {
|
|
3085
|
+
background-color: transparent !important;
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:\!text-xs .ant-table) {
|
|
3089
|
+
font-size: var(--font-size-xs) !important;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:text-sm .ant-table) {
|
|
3093
|
+
font-size: var(--font-size-sm);
|
|
2579
3094
|
}
|