@eui/styles 18.2.0 → 18.2.1-snapshot-1727953374536

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.
@@ -1,4 +1,4 @@
1
- @mixin eui-scrollbars( $size: 8px, $foreground-color: v(eui-c-neutral-lightest), $background-color: v(eui-c-neutral-bg-light), $border-radius: 5rem, $state: active ) {
1
+ @mixin eui-scrollbars( $size: 8px, $foreground-color: var(--eui-c-neutral-lightest), $background-color: var(--eui-c-neutral-bg-light), $border-radius: 5rem, $state: active ) {
2
2
  &::-webkit-scrollbar {
3
3
  display: inherit;
4
4
  height: $size; // horizontal scroll
@@ -39,8 +39,9 @@
39
39
 
40
40
  // Firefox only CSS-specific extension - Attention those properties overrides :webkit pseudos!
41
41
  @-moz-document url-prefix() {
42
- scrollbar-color: $background-color;
43
- scrollbar-width: thin;
42
+ scrollbar-color: var(--eui-c-neutral-lighter) var(--eui-c-neutral-bg-light);
43
+ // scrollbar-gutter: stable;
44
+ scrollbar-width: auto;
44
45
  }
45
46
  }
46
47
  @mixin eui-scrollbars-inactive($size: 8px) {