@kofile/gds-foundations 0.0.10 → 1.0.0-alpha
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/build/.DS_Store +0 -0
- package/build/css/.DS_Store +0 -0
- package/build/css/components/badge.module.css +82 -0
- package/build/css/components/button.module.css +309 -0
- package/build/css/components/checkbox.module.css +190 -0
- package/build/css/components/field-message.module.css +26 -0
- package/build/css/components/form-label.module.css +21 -0
- package/build/css/components/input.module.css +164 -0
- package/build/css/components/label.module.css +21 -0
- package/build/css/components/link.module.css +52 -0
- package/build/css/components/radio-group.module.css +151 -0
- package/build/css/components/select.module.css +235 -0
- package/build/css/components/switch.module.css +92 -0
- package/build/css/components/table.module.css +225 -0
- package/build/css/components/tabs.module.css +79 -0
- package/build/css/index.css +0 -1
- package/build/css/normalize.css +0 -10
- package/build/css/themes/badge/dark.css +12 -0
- package/build/css/themes/badge/index.css +2 -0
- package/build/css/themes/badge/light.css +12 -0
- package/build/css/themes/button/dark.css +42 -0
- package/build/css/themes/button/index.css +2 -0
- package/build/css/themes/button/light.css +42 -0
- package/build/css/themes/checkbox/dark.css +19 -0
- package/build/css/themes/checkbox/light.css +19 -0
- package/build/css/themes/checkbox-tile/dark.css +14 -0
- package/build/css/themes/checkbox-tile/light.css +18 -0
- package/build/css/themes/field-message/dark.css +6 -0
- package/build/css/themes/field-message/light.css +6 -0
- package/build/css/themes/form-label/dark.css +6 -0
- package/build/css/themes/form-label/light.css +6 -0
- package/build/css/themes/global.css +565 -0
- package/build/css/themes/index.css +30 -0
- package/build/css/themes/input/dark.css +19 -0
- package/build/css/themes/input/light.css +19 -0
- package/build/css/themes/label/dark.css +5 -0
- package/build/css/themes/label/light.css +5 -0
- package/build/css/themes/link/dark.css +7 -0
- package/build/css/themes/link/light.css +7 -0
- package/build/css/themes/output.css +2 -0
- package/build/css/themes/output.css.map +1 -0
- package/build/css/themes/output.json +1 -0
- package/build/css/themes/radio-group/dark.css +12 -0
- package/build/css/themes/radio-group/light.css +11 -0
- package/build/css/themes/radio-group-tile/dark.css +12 -0
- package/build/css/themes/radio-group-tile/light.css +18 -0
- package/build/css/themes/select/dark.css +31 -0
- package/build/css/themes/select/light.css +28 -0
- package/build/css/themes/switch/dark.css +12 -0
- package/build/css/themes/switch/light.css +14 -0
- package/build/css/themes/table/dark.css +20 -0
- package/build/css/themes/table/light.css +24 -0
- package/build/css/themes/tabs/dark.css +11 -0
- package/build/css/themes/tabs/light.css +13 -0
- package/build/css/tokens-global.css +4 -0
- package/build/css/utilities/background-color.css +284 -0
- package/build/css/utilities/border-color.css +284 -0
- package/build/css/utilities/border-radius.css +455 -0
- package/build/css/utilities/border-style.css +18 -0
- package/build/css/utilities/border-width.css +127 -0
- package/build/css/utilities/cursor.css +31 -0
- package/build/css/utilities/display.css +0 -2
- package/build/css/utilities/flex-shrink.css +6 -0
- package/build/css/utilities/grid-auto-columns.css +12 -0
- package/build/css/utilities/grid-template-columns.css +42 -0
- package/build/css/utilities/height.css +56 -56
- package/build/css/utilities/index.css +13 -0
- package/build/css/utilities/max-height.css +41 -41
- package/build/css/utilities/min-height.css +1 -1
- package/build/css/utilities/padding.css +23 -0
- package/build/css/utilities/text-overflow.css +13 -0
- package/build/css/utilities/text-transform.css +12 -0
- package/build/css/utilities/vertical-align.css +31 -0
- package/build/css/utilities/white-space.css +23 -0
- package/build/css/utilities/width.css +93 -93
- package/build/min/themes/Global.css +1 -0
- package/build/min/themes/dark.css +1 -0
- package/build/min/themes/light.css +1 -0
- package/build/minified/tokens-global.css +2 -2
- package/package.json +106 -8
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
.rounded-none {
|
|
2
|
+
border-radius: var(--border-radius-none, 0) !important;
|
|
3
|
+
}
|
|
4
|
+
.rounded-2xs {
|
|
5
|
+
border-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
6
|
+
}
|
|
7
|
+
.rounded-xs {
|
|
8
|
+
border-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
9
|
+
}
|
|
10
|
+
.rounded-sm {
|
|
11
|
+
border-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
12
|
+
}
|
|
13
|
+
.rounded-md {
|
|
14
|
+
border-radius: var(--border-radius-md, 0.5rem) !important;
|
|
15
|
+
}
|
|
16
|
+
.rounded-lg {
|
|
17
|
+
border-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
18
|
+
}
|
|
19
|
+
.rounded-xl {
|
|
20
|
+
border-radius: var(--border-radius-xl, 1rem) !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.rounded-s-none {
|
|
24
|
+
border-start-start-radius: var(--border-radius-none, 0) !important;
|
|
25
|
+
border-end-start-radius: var(--border-radius-none, 0) !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.rounded-s-2xs {
|
|
29
|
+
border-start-start-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
30
|
+
border-end-start-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.rounded-s-xs {
|
|
34
|
+
border-start-start-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
35
|
+
border-end-start-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.rounded-s-sm {
|
|
39
|
+
border-start-start-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
40
|
+
border-end-start-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.rounded-s-md {
|
|
44
|
+
border-start-start-radius: var(--border-radius-md, 0.5rem) !important;
|
|
45
|
+
border-end-start-radius: var(--border-radius-md, 0.5rem) !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.rounded-s-lg {
|
|
49
|
+
border-start-start-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
50
|
+
border-end-start-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.rounded-s-xl {
|
|
54
|
+
border-start-start-radius: var(--border-radius-xl, 1rem) !important;
|
|
55
|
+
border-end-start-radius: var(--border-radius-xl, 1rem) !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.rounded-e-none {
|
|
59
|
+
border-start-end-radius: var(--border-radius-none, 0) !important;
|
|
60
|
+
border-end-end-radius: var(--border-radius-none, 0) !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.rounded-e-2xs {
|
|
64
|
+
border-start-end-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
65
|
+
border-end-end-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.rounded-e-xs {
|
|
69
|
+
border-start-end-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
70
|
+
border-end-end-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.rounded-e-sm {
|
|
74
|
+
border-start-end-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
75
|
+
border-end-end-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.rounded-e-md {
|
|
79
|
+
border-start-end-radius: var(--border-radius-md, 0.5rem) !important;
|
|
80
|
+
border-end-end-radius: var(--border-radius-md, 0.5rem) !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.rounded-e-lg {
|
|
84
|
+
border-start-end-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
85
|
+
border-end-end-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.rounded-e-xl {
|
|
89
|
+
border-start-end-radius: var(--border-radius-xl, 1rem) !important;
|
|
90
|
+
border-end-end-radius: var(--border-radius-xl, 1rem) !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.rounded-t-none {
|
|
94
|
+
border-top-left-radius: var(--border-radius-none, 0) !important;
|
|
95
|
+
border-top-right-radius: var(--border-radius-none, 0) !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.rounded-t-2xs {
|
|
99
|
+
border-top-left-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
100
|
+
border-top-right-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.rounded-t-xs {
|
|
104
|
+
border-top-left-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
105
|
+
border-top-right-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.rounded-t-sm {
|
|
109
|
+
border-top-left-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
110
|
+
border-top-right-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.rounded-t-md {
|
|
114
|
+
border-top-left-radius: var(--border-radius-md, 0.5rem) !important;
|
|
115
|
+
border-top-right-radius: var(--border-radius-md, 0.5rem) !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.rounded-t-lg {
|
|
119
|
+
border-top-left-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
120
|
+
border-top-right-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.rounded-t-xl {
|
|
124
|
+
border-top-left-radius: var(--border-radius-xl, 1rem) !important;
|
|
125
|
+
border-top-right-radius: var(--border-radius-xl, 1rem) !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.rounded-b-none {
|
|
129
|
+
border-bottom-left-radius: var(--border-radius-none, 0) !important;
|
|
130
|
+
border-bottom-right-radius: var(--border-radius-none, 0) !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.rounded-b-2xs {
|
|
134
|
+
border-bottom-left-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
135
|
+
border-bottom-right-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.rounded-b-xs {
|
|
139
|
+
border-bottom-left-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
140
|
+
border-bottom-right-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.rounded-b-sm {
|
|
144
|
+
border-bottom-left-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
145
|
+
border-bottom-right-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.rounded-b-md {
|
|
149
|
+
border-bottom-left-radius: var(--border-radius-md, 0.5rem) !important;
|
|
150
|
+
border-bottom-right-radius: var(--border-radius-md, 0.5rem) !important;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.rounded-b-lg {
|
|
154
|
+
border-bottom-left-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
155
|
+
border-bottom-right-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.rounded-b-xl {
|
|
159
|
+
border-bottom-left-radius: var(--border-radius-xl, 1rem) !important;
|
|
160
|
+
border-bottom-right-radius: var(--border-radius-xl, 1rem) !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.rounded-r-none {
|
|
164
|
+
border-top-right-radius: var(--border-radius-none, 0) !important;
|
|
165
|
+
border-bottom-right-radius: var(--border-radius-none, 0) !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.rounded-r-2xs {
|
|
169
|
+
border-top-right-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
170
|
+
border-bottom-right-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.rounded-r-xs {
|
|
174
|
+
border-top-right-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
175
|
+
border-bottom-right-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.rounded-r-sm {
|
|
179
|
+
border-top-right-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
180
|
+
border-bottom-right-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.rounded-r-md {
|
|
184
|
+
border-top-right-radius: var(--border-radius-md, 0.5rem) !important;
|
|
185
|
+
border-bottom-right-radius: var(--border-radius-md, 0.5rem) !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.rounded-r-lg {
|
|
189
|
+
border-top-right-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
190
|
+
border-bottom-right-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.rounded-r-xl {
|
|
194
|
+
border-top-right-radius: var(--border-radius-xl, 1rem) !important;
|
|
195
|
+
border-bottom-right-radius: var(--border-radius-xl, 1rem) !important;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.rounded-l-none {
|
|
199
|
+
border-top-left-radius: var(--border-radius-none, 0) !important;
|
|
200
|
+
border-bottom-left-radius: var(--border-radius-none, 0) !important;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.rounded-l-2xs {
|
|
204
|
+
border-top-left-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
205
|
+
border-bottom-left-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.rounded-l-xs {
|
|
209
|
+
border-top-left-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
210
|
+
border-bottom-left-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.rounded-l-sm {
|
|
214
|
+
border-top-left-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
215
|
+
border-bottom-left-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.rounded-l-md {
|
|
219
|
+
border-top-left-radius: var(--border-radius-md, 0.5rem) !important;
|
|
220
|
+
border-bottom-left-radius: var(--border-radius-md, 0.5rem) !important;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.rounded-l-lg {
|
|
224
|
+
border-top-left-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
225
|
+
border-bottom-left-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.rounded-l-xl {
|
|
229
|
+
border-top-left-radius: var(--border-radius-xl, 1rem) !important;
|
|
230
|
+
border-bottom-left-radius: var(--border-radius-xl, 1rem) !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.rounded-ss-none {
|
|
234
|
+
border-start-start-radius: var(--border-radius-none, 0) !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.rounded-ss-2xs {
|
|
238
|
+
border-start-start-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.rounded-ss-xs {
|
|
242
|
+
border-start-start-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.rounded-ss-sm {
|
|
246
|
+
border-start-start-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.rounded-ss-md {
|
|
250
|
+
border-start-start-radius: var(--border-radius-md, 0.5rem) !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.rounded-ss-lg {
|
|
254
|
+
border-start-start-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.rounded-ss-xl {
|
|
258
|
+
border-start-start-radius: var(--border-radius-xl, 1rem) !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.rounded-se-none {
|
|
262
|
+
border-start-end-radius: var(--border-radius-none, 0) !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.rounded-se-2xs {
|
|
266
|
+
border-start-end-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.rounded-se-xs {
|
|
270
|
+
border-start-end-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.rounded-se-sm {
|
|
274
|
+
border-start-end-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.rounded-se-md {
|
|
278
|
+
border-start-end-radius: var(--border-radius-md, 0.5rem) !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.rounded-se-lg {
|
|
282
|
+
border-start-end-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.rounded-se-xl {
|
|
286
|
+
border-start-end-radius: var(--border-radius-xl, 1rem) !important;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.rounded-es-none {
|
|
290
|
+
border-end-start-radius: var(--border-radius-none, 0) !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.rounded-es-2xs {
|
|
294
|
+
border-end-start-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.rounded-es-xs {
|
|
298
|
+
border-end-start-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.rounded-es-sm {
|
|
302
|
+
border-end-start-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.rounded-es-md {
|
|
306
|
+
border-end-start-radius: var(--border-radius-md, 0.5rem) !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.rounded-es-lg {
|
|
310
|
+
border-end-start-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.rounded-es-xl {
|
|
314
|
+
border-end-start-radius: var(--border-radius-xl, 1rem) !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.rounded-ee-none {
|
|
318
|
+
border-end-end-radius: var(--border-radius-none, 0) !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.rounded-ee-2xs {
|
|
322
|
+
border-end-end-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.rounded-ee-xs {
|
|
326
|
+
border-end-end-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.rounded-ee-sm {
|
|
330
|
+
border-end-end-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.rounded-ee-md {
|
|
334
|
+
border-end-end-radius: var(--border-radius-md, 0.5rem) !important;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.rounded-ee-lg {
|
|
338
|
+
border-end-end-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.rounded-ee-xl {
|
|
342
|
+
border-end-end-radius: var(--border-radius-xl, 1rem) !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.rounded-tl-none {
|
|
346
|
+
border-top-left-radius: var(--border-radius-none, 0) !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.rounded-tl-2xs {
|
|
350
|
+
border-top-left-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.rounded-tl-xs {
|
|
354
|
+
border-top-left-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.rounded-tl-sm {
|
|
358
|
+
border-top-left-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.rounded-tl-md {
|
|
362
|
+
border-top-left-radius: var(--border-radius-md, 0.5rem) !important;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.rounded-tl-lg {
|
|
366
|
+
border-top-left-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.rounded-tl-xl {
|
|
370
|
+
border-top-left-radius: var(--border-radius-xl, 1rem) !important;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.rounded-tr-none {
|
|
374
|
+
border-top-right-radius: var(--border-radius-none, 0) !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.rounded-tr-2xs {
|
|
378
|
+
border-top-right-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.rounded-tr-xs {
|
|
382
|
+
border-top-right-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.rounded-tr-sm {
|
|
386
|
+
border-top-right-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.rounded-tr-md {
|
|
390
|
+
border-top-right-radius: var(--border-radius-md, 0.5rem) !important;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.rounded-tr-lg {
|
|
394
|
+
border-top-right-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.rounded-tr-xl {
|
|
398
|
+
border-top-right-radius: var(--border-radius-xl, 1rem) !important;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.rounded-bl-none {
|
|
402
|
+
border-bottom-left-radius: var(--border-radius-none, 0) !important;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.rounded-bl-2xs {
|
|
406
|
+
border-bottom-left-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.rounded-bl-xs {
|
|
410
|
+
border-bottom-left-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.rounded-bl-sm {
|
|
414
|
+
border-bottom-left-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.rounded-bl-md {
|
|
418
|
+
border-bottom-left-radius: var(--border-radius-md, 0.5rem) !important;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.rounded-bl-lg {
|
|
422
|
+
border-bottom-left-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.rounded-bl-xl {
|
|
426
|
+
border-bottom-left-radius: var(--border-radius-xl, 1rem) !important;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.rounded-br-none {
|
|
430
|
+
border-bottom-right-radius: var(--border-radius-none, 0) !important;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.rounded-br-2xs {
|
|
434
|
+
border-bottom-right-radius: var(--border-radius-2xs, 0.125rem) !important;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.rounded-br-xs {
|
|
438
|
+
border-bottom-right-radius: var(--border-radius-xs, 0.25rem) !important;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.rounded-br-sm {
|
|
442
|
+
border-bottom-right-radius: var(--border-radius-sm, 0.375rem) !important;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.rounded-br-md {
|
|
446
|
+
border-bottom-right-radius: var(--border-radius-md, 0.5rem) !important;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.rounded-br-lg {
|
|
450
|
+
border-bottom-right-radius: var(--border-radius-lg, 0.75rem) !important;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.rounded-br-xl {
|
|
454
|
+
border-bottom-right-radius: var(--border-radius-xl, 1rem) !important;
|
|
455
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.border-solid {
|
|
2
|
+
border-style: solid !important;
|
|
3
|
+
}
|
|
4
|
+
.border-dashed {
|
|
5
|
+
border-style: dashed !important;
|
|
6
|
+
}
|
|
7
|
+
.border-dotted {
|
|
8
|
+
border-style: dotted !important;
|
|
9
|
+
}
|
|
10
|
+
.border-double {
|
|
11
|
+
border-style: double !important;
|
|
12
|
+
}
|
|
13
|
+
.border-hidden {
|
|
14
|
+
border-style: hidden !important;
|
|
15
|
+
}
|
|
16
|
+
.border-none {
|
|
17
|
+
border-style: none !important;
|
|
18
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/* Border Width Utility Classes */
|
|
2
|
+
.border-none {
|
|
3
|
+
border-width: var(--border-width-none) !important;
|
|
4
|
+
}
|
|
5
|
+
.border-sm {
|
|
6
|
+
border-width: var(--border-width-sm) !important;
|
|
7
|
+
}
|
|
8
|
+
.border-md {
|
|
9
|
+
border-width: var(--border-width-md) !important;
|
|
10
|
+
}
|
|
11
|
+
.border-lg {
|
|
12
|
+
border-width: var(--border-width-lg) !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Horizontal Border Width (Left and Right) */
|
|
16
|
+
.border-x-none {
|
|
17
|
+
border-left-width: var(--border-width-none) !important;
|
|
18
|
+
border-right-width: var(--border-width-none) !important;
|
|
19
|
+
}
|
|
20
|
+
.border-x-sm {
|
|
21
|
+
border-left-width: var(--border-width-sm) !important;
|
|
22
|
+
border-right-width: var(--border-width-sm) !important;
|
|
23
|
+
}
|
|
24
|
+
.border-x-md {
|
|
25
|
+
border-left-width: var(--border-width-md) !important;
|
|
26
|
+
border-right-width: var(--border-width-md) !important;
|
|
27
|
+
}
|
|
28
|
+
.border-x-lg {
|
|
29
|
+
border-left-width: var(--border-width-lg) !important;
|
|
30
|
+
border-right-width: var(--border-width-lg) !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* Vertical Border Width (Top and Bottom) */
|
|
34
|
+
.border-y-none {
|
|
35
|
+
border-top-width: var(--border-width-none) !important;
|
|
36
|
+
border-bottom-width: var(--border-width-none) !important;
|
|
37
|
+
}
|
|
38
|
+
.border-y-sm {
|
|
39
|
+
border-top-width: var(--border-width-sm) !important;
|
|
40
|
+
border-bottom-width: var(--border-width-sm) !important;
|
|
41
|
+
}
|
|
42
|
+
.border-y-md {
|
|
43
|
+
border-top-width: var(--border-width-md) !important;
|
|
44
|
+
border-bottom-width: var(--border-width-md) !important;
|
|
45
|
+
}
|
|
46
|
+
.border-y-lg {
|
|
47
|
+
border-top-width: var(--border-width-lg) !important;
|
|
48
|
+
border-bottom-width: var(--border-width-lg) !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Inline Start Border Width */
|
|
52
|
+
.border-s-none {
|
|
53
|
+
border-inline-start-width: var(--border-width-none) !important;
|
|
54
|
+
}
|
|
55
|
+
.border-s-sm {
|
|
56
|
+
border-inline-start-width: var(--border-width-sm) !important;
|
|
57
|
+
}
|
|
58
|
+
.border-s-md {
|
|
59
|
+
border-inline-start-width: var(--border-width-md) !important;
|
|
60
|
+
}
|
|
61
|
+
.border-s-lg {
|
|
62
|
+
border-inline-start-width: var(--border-width-lg) !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* Inline End Border Width */
|
|
66
|
+
.border-e-none {
|
|
67
|
+
border-inline-end-width: var(--border-width-none) !important;
|
|
68
|
+
}
|
|
69
|
+
.border-e-sm {
|
|
70
|
+
border-inline-end-width: var(--border-width-sm) !important;
|
|
71
|
+
}
|
|
72
|
+
.border-e-md {
|
|
73
|
+
border-inline-end-width: var(--border-width-md) !important;
|
|
74
|
+
}
|
|
75
|
+
.border-e-lg {
|
|
76
|
+
border-inline-end-width: var(--border-width-lg) !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* Specific Side Border Width */
|
|
80
|
+
.border-t-none {
|
|
81
|
+
border-top-width: var(--border-width-none) !important;
|
|
82
|
+
}
|
|
83
|
+
.border-t-sm {
|
|
84
|
+
border-top-width: var(--border-width-sm) !important;
|
|
85
|
+
}
|
|
86
|
+
.border-t-md {
|
|
87
|
+
border-top-width: var(--border-width-md) !important;
|
|
88
|
+
}
|
|
89
|
+
.border-t-lg {
|
|
90
|
+
border-top-width: var(--border-width-lg) !important;
|
|
91
|
+
}
|
|
92
|
+
.border-r-none {
|
|
93
|
+
border-right-width: var(--border-width-none) !important;
|
|
94
|
+
}
|
|
95
|
+
.border-r-sm {
|
|
96
|
+
border-right-width: var(--border-width-sm) !important;
|
|
97
|
+
}
|
|
98
|
+
.border-r-md {
|
|
99
|
+
border-right-width: var(--border-width-md) !important;
|
|
100
|
+
}
|
|
101
|
+
.border-r-lg {
|
|
102
|
+
border-right-width: var(--border-width-lg) !important;
|
|
103
|
+
}
|
|
104
|
+
.border-b-none {
|
|
105
|
+
border-bottom-width: var(--border-width-none) !important;
|
|
106
|
+
}
|
|
107
|
+
.border-b-sm {
|
|
108
|
+
border-bottom-width: var(--border-width-sm) !important;
|
|
109
|
+
}
|
|
110
|
+
.border-b-md {
|
|
111
|
+
border-bottom-width: var(--border-width-md) !important;
|
|
112
|
+
}
|
|
113
|
+
.border-b-lg {
|
|
114
|
+
border-bottom-width: var(--border-width-lg) !important;
|
|
115
|
+
}
|
|
116
|
+
.border-l-none {
|
|
117
|
+
border-left-width: var(--border-width-none) !important;
|
|
118
|
+
}
|
|
119
|
+
.border-l-sm {
|
|
120
|
+
border-left-width: var(--border-width-sm) !important;
|
|
121
|
+
}
|
|
122
|
+
.border-l-md {
|
|
123
|
+
border-left-width: var(--border-width-md) !important;
|
|
124
|
+
}
|
|
125
|
+
.border-l-lg {
|
|
126
|
+
border-left-width: var(--border-width-lg) !important;
|
|
127
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.cursor-auto {
|
|
2
|
+
cursor: auto !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.cursor-default {
|
|
6
|
+
cursor: default !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cursor-pointer {
|
|
10
|
+
cursor: pointer !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cursor-wait {
|
|
14
|
+
cursor: wait !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.cursor-text {
|
|
18
|
+
cursor: text !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.cursor-move {
|
|
22
|
+
cursor: move !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cursor-help {
|
|
26
|
+
cursor: help !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.cursor-not-allowed {
|
|
30
|
+
cursor: not-allowed !important;
|
|
31
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
.grid-cols-1 {
|
|
2
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3
|
+
}
|
|
4
|
+
.grid-cols-2 {
|
|
5
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
6
|
+
}
|
|
7
|
+
.grid-cols-3 {
|
|
8
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
9
|
+
}
|
|
10
|
+
.grid-cols-4 {
|
|
11
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
12
|
+
}
|
|
13
|
+
.grid-cols-5 {
|
|
14
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
15
|
+
}
|
|
16
|
+
.grid-cols-6 {
|
|
17
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
18
|
+
}
|
|
19
|
+
.grid-cols-7 {
|
|
20
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
21
|
+
}
|
|
22
|
+
.grid-cols-8 {
|
|
23
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
24
|
+
}
|
|
25
|
+
.grid-cols-9 {
|
|
26
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
27
|
+
}
|
|
28
|
+
.grid-cols-10 {
|
|
29
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
30
|
+
}
|
|
31
|
+
.grid-cols-11 {
|
|
32
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
33
|
+
}
|
|
34
|
+
.grid-cols-12 {
|
|
35
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
36
|
+
}
|
|
37
|
+
.grid-cols-none {
|
|
38
|
+
grid-template-columns: none;
|
|
39
|
+
}
|
|
40
|
+
.grid-cols-subgrid {
|
|
41
|
+
grid-template-columns: subgrid;
|
|
42
|
+
}
|