@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 +1 -1
- package/src/styles/app-globals.css +6 -31
package/package.json
CHANGED
|
@@ -3,37 +3,12 @@
|
|
|
3
3
|
@apply border-border;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
/* Elevator scrollbar
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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 {
|