randmarcomps 1.510.0 → 1.512.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/randmarcomps.d.ts +2 -2
- package/dist/randmarcomps.js +4812 -6662
- package/dist/randmarcomps.umd.cjs +96 -97
- package/dist/style.css +18 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -144,6 +144,7 @@ body {
|
|
|
144
144
|
opacity: 1;
|
|
145
145
|
animation: none !important;
|
|
146
146
|
transition: none !important;
|
|
147
|
+
z-index: 10000 !important;
|
|
147
148
|
background:
|
|
148
149
|
radial-gradient(820px circle at 18% 22%, hsl(from var(--primary) h s l / 0.55), transparent 62%),
|
|
149
150
|
radial-gradient(720px circle at 80% 18%, hsl(from var(--primary) calc(h + 18) s calc(l + 10) / 0.38), transparent 60%),
|
|
@@ -153,9 +154,18 @@ body {
|
|
|
153
154
|
box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.55);
|
|
154
155
|
}
|
|
155
156
|
|
|
157
|
+
.randmar-assistant-overlay[data-state="closed"] {
|
|
158
|
+
opacity: 0 !important;
|
|
159
|
+
background: transparent !important;
|
|
160
|
+
box-shadow: none !important;
|
|
161
|
+
backdrop-filter: none !important;
|
|
162
|
+
-webkit-backdrop-filter: none !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
156
165
|
.randmar-assistant-dialog {
|
|
157
166
|
animation: none !important;
|
|
158
167
|
transition: none !important;
|
|
168
|
+
z-index: 10001 !important;
|
|
159
169
|
}
|
|
160
170
|
|
|
161
171
|
@supports (backdrop-filter: blur(0)) {
|
|
@@ -183,6 +193,10 @@ body {
|
|
|
183
193
|
transform: translate3d(0, 0, 0);
|
|
184
194
|
}
|
|
185
195
|
|
|
196
|
+
.randmar-assistant-overlay[data-state="closed"]::before {
|
|
197
|
+
opacity: 0 !important;
|
|
198
|
+
}
|
|
199
|
+
|
|
186
200
|
.randmar-assistant-overlay::after {
|
|
187
201
|
content: "";
|
|
188
202
|
position: absolute;
|
|
@@ -191,3 +205,7 @@ body {
|
|
|
191
205
|
mix-blend-mode: soft-light;
|
|
192
206
|
opacity: 0.85;
|
|
193
207
|
}
|
|
208
|
+
|
|
209
|
+
.randmar-assistant-overlay[data-state="closed"]::after {
|
|
210
|
+
opacity: 0 !important;
|
|
211
|
+
}
|