@flamingo-stack/openframe-frontend-core 0.0.419 → 0.0.420

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flamingo-stack/openframe-frontend-core",
3
- "version": "0.0.419",
3
+ "version": "0.0.420",
4
4
  "description": "Shared design system and components for all Flamingo platforms",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -3,37 +3,12 @@
3
3
  @apply border-border;
4
4
  }
5
5
 
6
- /* Elevator scrollbar, Firefox fallback. Scoped via @supports because
7
- scrollbar-width/color would disable ::-webkit-scrollbar styling in Chrome */
8
- @supports not selector(::-webkit-scrollbar) {
9
- * {
10
- scrollbar-width: thin;
11
- scrollbar-color: var(--ods-system-greys-grey) var(--ods-system-greys-soft-grey);
12
- }
13
- }
14
-
15
- /* Elevator scrollbar (ODS): 8px track + draggable rounded thumb */
16
- *::-webkit-scrollbar {
17
- width: 8px;
18
- height: 8px;
19
- }
20
-
21
- *::-webkit-scrollbar-track {
22
- background-color: var(--ods-system-greys-soft-grey);
23
- border-radius: 4px;
24
- }
25
-
26
- *::-webkit-scrollbar-thumb {
27
- background-color: var(--ods-system-greys-grey);
28
- border-radius: 4px;
29
- }
30
-
31
- *::-webkit-scrollbar-thumb:hover {
32
- background-color: var(--ods-system-greys-grey-hover);
33
- }
34
-
35
- *::-webkit-scrollbar-corner {
36
- background-color: transparent;
6
+ /* Elevator scrollbar (ODS): thin grey draggable thumb on a transparent track.
7
+ Standard properties only — no ::-webkit-scrollbar, so the platform keeps its
8
+ native rendering mode (e.g. auto-hiding overlay scrollbars on macOS). */
9
+ * {
10
+ scrollbar-width: thin;
11
+ scrollbar-color: var(--ods-system-greys-grey) transparent;
37
12
  }
38
13
 
39
14
  body {