@apolitical/component-library 10.4.9 → 10.4.10

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.
@@ -6,10 +6,6 @@ $overlay: (
6
6
 
7
7
  @layer base {
8
8
  .v1styles {
9
- &.has-overlay {
10
- overflow: hidden;
11
- }
12
-
13
9
  .overlay {
14
10
  @include transition(opacity, 0.1s, ease);
15
11
 
@@ -39,6 +39,15 @@ $character-limit: (
39
39
 
40
40
  @layer base {
41
41
  .v1styles {
42
+ // Firefox (legacy) applies its own reduced opacity to the prefixed
43
+ // pseudo-element; without this rule placeholders render faded there.
44
+ // Shipped by the v1 component library's base layer — kept for parity.
45
+ /* stylelint-disable-next-line selector-no-vendor-prefix */
46
+ ::-moz-placeholder {
47
+ color: get-map($theme, 'form_input_placeholder');
48
+ opacity: 1;
49
+ }
50
+
42
51
  ::placeholder {
43
52
  color: get-map($theme, 'form_input_placeholder');
44
53
  opacity: 1;
@@ -0,0 +1,9 @@
1
+ // Single entry point compiled by `pnpm build:uclasses` (see `uclasses.sh`) into
2
+ // `apps/next-ui/app/global.css`, then copied into admin-ui and Storybook.
3
+ // `index` (reset + base + the full ported `components`/`overrides` layers —
4
+ // see `components-legacy.scss`) must come first so its rules land inside the
5
+ // named cascade layers it declares. `uclasses`, `overrides/navigator-theme`,
6
+ // and `overrides/misc` don't wrap their rules in a named layer, so they stay
7
+ // unlayered — unlayered rules always win over every named layer regardless of
8
+ // import order.
9
+ @import 'index', 'uclasses/uclasses', 'overrides/navigator-theme', 'overrides/misc';