buddy-builder 1.4.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.
@@ -0,0 +1,107 @@
1
+ /* ═══ Status bar ══════════════════════════════════════════════ */
2
+
3
+ .status-bar {
4
+ display: flex;
5
+ align-items: center;
6
+ height: 22px;
7
+ min-height: 22px;
8
+ background: var(--bg-1);
9
+ border-top: 1px solid var(--border);
10
+ padding: 0 8px;
11
+ font-size: 11px;
12
+ color: var(--text-muted);
13
+ flex-shrink: 0;
14
+ position: relative;
15
+ -webkit-app-region: no-drag;
16
+ user-select: none;
17
+ }
18
+
19
+ .status-bar-left {
20
+ display: flex;
21
+ align-items: center;
22
+ gap: 8px;
23
+ }
24
+
25
+ .status-bar-item {
26
+ display: inline-flex;
27
+ align-items: center;
28
+ gap: 4px;
29
+ background: none;
30
+ border: none;
31
+ color: var(--text-muted);
32
+ font: inherit;
33
+ cursor: pointer;
34
+ padding: 1px 4px;
35
+ border-radius: 3px;
36
+ transition: background 0.12s;
37
+ }
38
+
39
+ .status-bar-item:hover {
40
+ background: var(--hover-bg);
41
+ color: var(--text-secondary);
42
+ }
43
+
44
+ .status-bar-item.indexing {
45
+ color: var(--accent);
46
+ }
47
+
48
+ .status-bar-spinner {
49
+ display: inline-block;
50
+ width: 10px;
51
+ height: 10px;
52
+ border: 1.5px solid var(--accent);
53
+ border-top-color: transparent;
54
+ border-radius: 50%;
55
+ animation: spin 0.8s linear infinite;
56
+ }
57
+
58
+ /* ─── Status bar popup ─── */
59
+
60
+ .status-bar-popup {
61
+ position: absolute;
62
+ bottom: 24px;
63
+ left: 8px;
64
+ background: var(--bg-3);
65
+ border: 1px solid var(--border-strong);
66
+ border-radius: var(--radius);
67
+ padding: 8px 12px;
68
+ min-width: 180px;
69
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
70
+ z-index: 100;
71
+ font-size: 11px;
72
+ }
73
+
74
+ .status-bar-popup-row {
75
+ display: flex;
76
+ justify-content: space-between;
77
+ padding: 3px 0;
78
+ color: var(--text-secondary);
79
+ }
80
+
81
+ .status-bar-popup-label {
82
+ color: var(--text-muted);
83
+ }
84
+
85
+ .status-bar-popup-value {
86
+ color: var(--text);
87
+ font-variant-numeric: tabular-nums;
88
+ }
89
+
90
+ .status-bar-popup-btn {
91
+ display: block;
92
+ width: 100%;
93
+ margin-top: 8px;
94
+ padding: 4px 8px;
95
+ background: var(--bg-2);
96
+ border: 1px solid var(--border);
97
+ border-radius: var(--radius-sm);
98
+ color: var(--text-secondary);
99
+ font: inherit;
100
+ cursor: pointer;
101
+ transition: background 0.12s;
102
+ }
103
+
104
+ .status-bar-popup-btn:hover {
105
+ background: var(--bg-4);
106
+ color: var(--text);
107
+ }