@dreb/coding-agent 2.38.0 → 2.38.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.
|
@@ -7,6 +7,37 @@
|
|
|
7
7
|
|
|
8
8
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
9
9
|
|
|
10
|
+
/* Thin, hairline scrollbars that follow the injected theme tokens, so they
|
|
11
|
+
adapt to the exported theme automatically — no color literals. Firefox /
|
|
12
|
+
standards via scrollbar-*; Chromium / WebKit via ::-webkit-scrollbar*.
|
|
13
|
+
Hover swaps the thumb color; no shadows or gradients. */
|
|
14
|
+
* {
|
|
15
|
+
scrollbar-width: thin;
|
|
16
|
+
scrollbar-color: var(--dim) transparent;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
::-webkit-scrollbar {
|
|
20
|
+
width: 10px;
|
|
21
|
+
height: 10px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
::-webkit-scrollbar-track {
|
|
25
|
+
background: transparent;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
::-webkit-scrollbar-thumb {
|
|
29
|
+
background: var(--dim);
|
|
30
|
+
border-radius: 3px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
::-webkit-scrollbar-thumb:hover {
|
|
34
|
+
background: var(--muted);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
::-webkit-scrollbar-corner {
|
|
38
|
+
background: transparent;
|
|
39
|
+
}
|
|
40
|
+
|
|
10
41
|
:root {
|
|
11
42
|
--line-height: 18px; /* 12px font * 1.5 */
|
|
12
43
|
--sidebar-width: 400px;
|