seemore 1.3.0 → 1.3.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/package.json
CHANGED
|
@@ -303,6 +303,15 @@
|
|
|
303
303
|
box-shadow: 0 0 0 4px var(--color-fd-muted);
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
+
/* Written as a plain `.dark` rule rather than `dark:` on the `@apply` above: Tailwind
|
|
307
|
+
wraps a `dark:` variant reached through `@apply` in `:where(.dark, .dark *)`, which
|
|
308
|
+
carries no specificity of its own and loses the tie to the plain `box-shadow` line
|
|
309
|
+
and the `bg-fd-muted/40` utility above regardless of source order. */
|
|
310
|
+
.dark .seemore-editable [data-seemore-pos]:hover {
|
|
311
|
+
background-color: transparent;
|
|
312
|
+
box-shadow: none;
|
|
313
|
+
}
|
|
314
|
+
|
|
306
315
|
.seemore-editable .seemore-editing {
|
|
307
316
|
@apply invisible;
|
|
308
317
|
}
|