@redseed/redseed-ui-tailwindcss 7.8.8 → 7.10.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/components/body_text.css
CHANGED
|
@@ -3,6 +3,71 @@
|
|
|
3
3
|
@apply *:text-base *:text-text-primary;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
.rsui-body-text--xs {
|
|
7
|
+
@apply text-xs;
|
|
8
|
+
@apply *:text-xs;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.rsui-body-text--sm {
|
|
12
|
+
@apply text-sm;
|
|
13
|
+
@apply *:text-sm;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.rsui-body-text--secondary {
|
|
17
|
+
@apply text-text-secondary;
|
|
18
|
+
@apply *:text-text-secondary;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.rsui-body-text--tertiary {
|
|
22
|
+
@apply text-text-tertiary;
|
|
23
|
+
@apply *:text-text-tertiary;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.rsui-body-text--quaternary {
|
|
27
|
+
@apply text-text-quaternary;
|
|
28
|
+
@apply *:text-text-quaternary;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.rsui-body-text--disabled {
|
|
32
|
+
@apply text-text-disabled;
|
|
33
|
+
@apply *:text-text-disabled;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.rsui-body-text--brand {
|
|
37
|
+
@apply text-text-brand;
|
|
38
|
+
@apply *:text-text-brand;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.rsui-body-text--success {
|
|
42
|
+
@apply text-text-success;
|
|
43
|
+
@apply *:text-text-success;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.rsui-body-text--warning {
|
|
47
|
+
@apply text-text-warning;
|
|
48
|
+
@apply *:text-text-warning;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.rsui-body-text--error {
|
|
52
|
+
@apply text-text-error;
|
|
53
|
+
@apply *:text-text-error;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.rsui-body-text--info {
|
|
57
|
+
@apply text-text-info;
|
|
58
|
+
@apply *:text-text-info;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.rsui-body-text--ai {
|
|
62
|
+
@apply text-text-ai;
|
|
63
|
+
@apply *:text-text-ai;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.rsui-body-text--on-color {
|
|
67
|
+
@apply text-text-on-color;
|
|
68
|
+
@apply *:text-text-on-color;
|
|
69
|
+
}
|
|
70
|
+
|
|
6
71
|
.rsui-body-text--line-clamp-1 {
|
|
7
72
|
@apply line-clamp-1;
|
|
8
73
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.rsui-message-box {
|
|
2
|
-
@apply border rounded-lg overflow-hidden p-4;
|
|
2
|
+
@apply border rounded-lg overflow-hidden p-4 flex flex-col gap-y-3;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.rsui-message-box--default {
|
|
@@ -23,7 +23,11 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.rsui-message-box__head {
|
|
26
|
-
@apply flex justify-between items-center;
|
|
26
|
+
@apply flex justify-between items-center gap-x-2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.rsui-message-box__content {
|
|
30
|
+
@apply flex justify-between items-start gap-x-2;
|
|
27
31
|
}
|
|
28
32
|
|
|
29
33
|
.rsui-message-box__close {
|