@medialane/ui 0.101.0 → 0.101.2
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/medialane.css +16 -0
- package/package.json +1 -1
package/dist/medialane.css
CHANGED
|
@@ -233,6 +233,22 @@ input[type="number"] { -moz-appearance: textfield; }
|
|
|
233
233
|
animation: none;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
+
/* ── Static two-stop signature ring — Collections/Creators surfaces ────── */
|
|
237
|
+
/* Same masked-ring technique as .ml-nav-wallet-ring, but static (no spin) and
|
|
238
|
+
scoped to the two colors this section owns (brand-blue -> brand-purple) —
|
|
239
|
+
see medialane-core reference_brand_colors_and_gradients section-theming map. */
|
|
240
|
+
.ml-collection-ring {
|
|
241
|
+
position: absolute;
|
|
242
|
+
inset: 0;
|
|
243
|
+
border-radius: 50%;
|
|
244
|
+
padding: 1.5px;
|
|
245
|
+
background: linear-gradient(135deg, #3b7bff, #8a5cf6);
|
|
246
|
+
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
247
|
+
-webkit-mask-composite: xor;
|
|
248
|
+
mask-composite: exclude;
|
|
249
|
+
pointer-events: none;
|
|
250
|
+
}
|
|
251
|
+
|
|
236
252
|
/* ── Hover-only branded gradient border (launchpad cards) ───────────────── */
|
|
237
253
|
/* The resting state keeps the card's own hairline; on hover-capable devices */
|
|
238
254
|
/* the full-spectrum ring fades in over it. Decoration only — never carries */
|