@redseed/redseed-ui-tailwindcss 7.3.8 → 7.4.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/components/card.css +12 -0
- package/components/comment.css +2 -2
- package/components/modal.css +2 -1
- package/package.json +1 -1
package/components/card.css
CHANGED
|
@@ -60,6 +60,18 @@
|
|
|
60
60
|
@apply border-border-error;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
.rsui-card--draft {
|
|
64
|
+
@apply bg-background-secondary;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.rsui-card--bordered.rsui-card--draft {
|
|
68
|
+
@apply relative border-0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.rsui-card__draft-border {
|
|
72
|
+
@apply absolute inset-0 size-full pointer-events-none rounded-xl border-border-secondary;
|
|
73
|
+
}
|
|
74
|
+
|
|
63
75
|
.rsui-card--hoverable {
|
|
64
76
|
@apply hover:shadow-md;
|
|
65
77
|
}
|
package/components/comment.css
CHANGED
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
.rsui-comment__body--owned {
|
|
88
88
|
@apply rounded-tl-xl rounded-tr-none ml-0;
|
|
89
89
|
@apply text-text-on-color bg-background-info-contrast;
|
|
90
|
-
@apply border-
|
|
90
|
+
@apply border-background-info-contrast;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
.rsui-comment__body--private {
|
|
94
94
|
@apply rounded-tl-xl rounded-tr-none ml-0 w-full;
|
|
95
95
|
@apply text-text-on-color bg-background-secondary-contrast;
|
|
96
|
-
@apply border-
|
|
96
|
+
@apply border-background-secondary-contrast;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.rsui-comment__body--no-photo {
|
package/components/modal.css
CHANGED
|
@@ -71,7 +71,8 @@
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.rsui-modal__footer {
|
|
74
|
-
@apply sticky inset-x-0 bottom-0 z-1 p-0 bg-background-secondary shrink-0 flex
|
|
74
|
+
@apply sticky inset-x-0 bottom-0 z-1 p-0 bg-background-secondary shrink-0 flex flex-col items-stretch gap-y-2;
|
|
75
|
+
@apply sm:flex-row sm:items-center sm:justify-end sm:gap-x-2 sm:gap-y-0;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
78
|
.rsui-modal__footer--padded {
|