randmarcomps 1.507.0 → 1.509.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.js +2691 -2666
- package/dist/randmarcomps.umd.cjs +52 -52
- package/dist/style.css +8 -11
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -141,8 +141,9 @@ body {
|
|
|
141
141
|
/* Deep bokeh treatment for Randmar Assistant modal overlay */
|
|
142
142
|
.randmar-assistant-overlay {
|
|
143
143
|
pointer-events: none;
|
|
144
|
-
opacity:
|
|
145
|
-
animation:
|
|
144
|
+
opacity: 1;
|
|
145
|
+
animation: none !important;
|
|
146
|
+
transition: none !important;
|
|
146
147
|
background:
|
|
147
148
|
radial-gradient(820px circle at 18% 22%, hsl(from var(--primary) h s l / 0.55), transparent 62%),
|
|
148
149
|
radial-gradient(720px circle at 80% 18%, hsl(from var(--primary) calc(h + 18) s calc(l + 10) / 0.38), transparent 60%),
|
|
@@ -152,6 +153,11 @@ body {
|
|
|
152
153
|
box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.55);
|
|
153
154
|
}
|
|
154
155
|
|
|
156
|
+
.randmar-assistant-dialog {
|
|
157
|
+
animation: none !important;
|
|
158
|
+
transition: none !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
155
161
|
@supports (backdrop-filter: blur(0)) {
|
|
156
162
|
.randmar-assistant-overlay {
|
|
157
163
|
backdrop-filter: blur(34px) saturate(190%);
|
|
@@ -185,12 +191,3 @@ body {
|
|
|
185
191
|
mix-blend-mode: soft-light;
|
|
186
192
|
opacity: 0.85;
|
|
187
193
|
}
|
|
188
|
-
|
|
189
|
-
@keyframes randmar-assistant-overlay-fade-in {
|
|
190
|
-
from {
|
|
191
|
-
opacity: 0;
|
|
192
|
-
}
|
|
193
|
-
to {
|
|
194
|
-
opacity: 1;
|
|
195
|
-
}
|
|
196
|
-
}
|