codexmate 0.0.34 → 0.0.37
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/README.md +14 -5
- package/README.zh.md +14 -5
- package/cli.js +74 -61
- package/package.json +2 -1
- package/web-ui/app.js +32 -2
- package/web-ui/index.html +1 -1
- package/web-ui/logic.sessions.mjs +6 -5
- package/web-ui/modules/app.computed.dashboard.mjs +4 -0
- package/web-ui/modules/app.computed.session.mjs +147 -6
- package/web-ui/modules/app.methods.claude-config.mjs +4 -0
- package/web-ui/modules/app.methods.navigation.mjs +32 -16
- package/web-ui/modules/app.methods.session-browser.mjs +7 -0
- package/web-ui/modules/app.methods.session-trash.mjs +30 -0
- package/web-ui/modules/i18n.dict.mjs +5 -0
- package/web-ui/modules/sessions-filters-url.mjs +65 -12
- package/web-ui/modules/skills.methods.mjs +31 -0
- package/web-ui/partials/index/layout-header.html +20 -11
- package/web-ui/partials/index/panel-config-claude.html +5 -3
- package/web-ui/partials/index/panel-config-codex.html +1 -1
- package/web-ui/partials/index/panel-market.html +76 -149
- package/web-ui/partials/index/panel-sessions.html +2 -2
- package/web-ui/partials/index/panel-settings.html +4 -2
- package/web-ui/partials/index/panel-usage.html +111 -68
- package/web-ui/res/vue.runtime.global.prod.js +7 -0
- package/web-ui/res/web-ui-render.precompiled.js +7269 -0
- package/web-ui/session-helpers.mjs +15 -4
- package/web-ui/source-bundle.cjs +73 -1
- package/web-ui/styles/base-theme.css +10 -0
- package/web-ui/styles/layout-shell.css +65 -27
- package/web-ui/styles/navigation-panels.css +8 -0
- package/web-ui/styles/responsive.css +50 -9
- package/web-ui/styles/sessions-usage.css +501 -336
- package/web-ui/styles/skills-market.css +294 -0
- package/web-ui/styles/titles-cards.css +14 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* ============================================
|
|
2
|
-
Usage Tab —
|
|
2
|
+
Usage Tab — 流光设计 (Flow of Light)
|
|
3
3
|
============================================ */
|
|
4
4
|
|
|
5
5
|
/* ---- Toolbar ---- */
|
|
@@ -7,554 +7,710 @@
|
|
|
7
7
|
display: flex;
|
|
8
8
|
justify-content: space-between;
|
|
9
9
|
align-items: center;
|
|
10
|
-
gap:
|
|
10
|
+
gap: 16px;
|
|
11
11
|
flex-wrap: wrap;
|
|
12
|
-
margin-bottom:
|
|
12
|
+
margin-bottom: 28px;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.usage-toolbar-title {
|
|
16
|
-
font-size:
|
|
17
|
-
font-weight:
|
|
16
|
+
font-size: 20px;
|
|
17
|
+
font-weight: 600;
|
|
18
18
|
color: var(--color-text-primary);
|
|
19
|
-
letter-spacing: -0.
|
|
19
|
+
letter-spacing: -0.03em;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.usage-range-group {
|
|
23
23
|
display: flex;
|
|
24
|
-
gap:
|
|
24
|
+
gap: 2px;
|
|
25
25
|
padding: 3px;
|
|
26
|
-
border-radius:
|
|
27
|
-
background:
|
|
28
|
-
border: 1px solid
|
|
26
|
+
border-radius: 12px;
|
|
27
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,239,232,0.7));
|
|
28
|
+
border: 1px solid rgba(137, 111, 94, 0.08);
|
|
29
|
+
box-shadow: 0 2px 12px rgba(92, 68, 52, 0.06);
|
|
30
|
+
backdrop-filter: blur(8px);
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
.usage-range-btn {
|
|
32
34
|
border: none;
|
|
33
35
|
background: transparent;
|
|
34
36
|
color: var(--color-text-tertiary);
|
|
35
|
-
padding:
|
|
36
|
-
border-radius:
|
|
37
|
+
padding: 8px 16px;
|
|
38
|
+
border-radius: 9px;
|
|
37
39
|
cursor: pointer;
|
|
38
|
-
font-size:
|
|
39
|
-
font-weight:
|
|
40
|
+
font-size: 13px;
|
|
41
|
+
font-weight: 500;
|
|
40
42
|
font-family: var(--font-family);
|
|
41
43
|
white-space: nowrap;
|
|
42
|
-
transition: all
|
|
44
|
+
transition: all 180ms var(--ease-spring);
|
|
43
45
|
outline: none;
|
|
44
46
|
-webkit-tap-highlight-color: transparent;
|
|
45
47
|
}
|
|
46
48
|
|
|
47
49
|
.usage-range-btn:hover:not(:disabled) {
|
|
48
50
|
color: var(--color-text-secondary);
|
|
49
|
-
background:
|
|
51
|
+
background: rgba(200, 121, 99, 0.08);
|
|
50
52
|
}
|
|
51
53
|
|
|
52
54
|
.usage-range-btn:active:not(:disabled) {
|
|
53
|
-
transform: scale(0.
|
|
55
|
+
transform: scale(0.95);
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
.usage-range-btn.active {
|
|
57
59
|
color: #fff;
|
|
58
|
-
background: var(--color-brand);
|
|
59
|
-
box-shadow: 0
|
|
60
|
+
background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
|
|
61
|
+
box-shadow: 0 4px 16px rgba(200, 121, 99, 0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
.usage-range-btn:disabled {
|
|
63
|
-
opacity: 0.
|
|
65
|
+
opacity: 0.35;
|
|
64
66
|
cursor: not-allowed;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.usage-range-btn-icon {
|
|
68
|
-
padding:
|
|
70
|
+
padding: 8px 12px;
|
|
69
71
|
display: inline-flex;
|
|
70
72
|
align-items: center;
|
|
71
73
|
justify-content: center;
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
.usage-range-btn-icon svg {
|
|
75
|
-
width:
|
|
76
|
-
height:
|
|
77
|
+
width: 16px;
|
|
78
|
+
height: 16px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.usage-range-btn-icon:active {
|
|
82
|
+
transform: rotate(180deg);
|
|
83
|
+
transition: transform 400ms var(--ease-spring);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* ---- Empty State (插画风格) ---- */
|
|
87
|
+
.usage-empty-state {
|
|
88
|
+
display: flex;
|
|
89
|
+
flex-direction: column;
|
|
90
|
+
align-items: center;
|
|
91
|
+
justify-content: center;
|
|
92
|
+
padding: 64px 20px;
|
|
93
|
+
text-align: center;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.usage-empty-illustration {
|
|
97
|
+
width: 72px;
|
|
98
|
+
height: 72px;
|
|
99
|
+
color: var(--color-text-muted);
|
|
100
|
+
opacity: 0.5;
|
|
101
|
+
margin-bottom: 20px;
|
|
102
|
+
animation: usage-empty-breathe 4s ease-in-out infinite;
|
|
77
103
|
}
|
|
78
104
|
|
|
79
|
-
|
|
80
|
-
.
|
|
105
|
+
@keyframes usage-empty-breathe {
|
|
106
|
+
0%, 100% { transform: scale(1) translateY(0); opacity: 0.5; }
|
|
107
|
+
50% { transform: scale(1.08) translateY(-4px); opacity: 0.7; }
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.usage-empty-text {
|
|
111
|
+
font-size: 14px;
|
|
112
|
+
color: var(--color-text-secondary);
|
|
113
|
+
max-width: 300px;
|
|
114
|
+
line-height: 1.6;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* ---- Hero 区域 (全宽沉浸式) ---- */
|
|
118
|
+
.usage-hero {
|
|
119
|
+
padding: 32px 28px;
|
|
120
|
+
margin-bottom: 24px;
|
|
121
|
+
border-radius: 18px;
|
|
122
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(252,248,241,0.9));
|
|
123
|
+
border: 1px solid rgba(137, 111, 94, 0.08);
|
|
124
|
+
min-height: 160px;
|
|
125
|
+
display: flex;
|
|
126
|
+
flex-direction: column;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
gap: 20px;
|
|
129
|
+
box-shadow: 0 8px 32px rgba(92, 68, 52, 0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
|
|
130
|
+
backdrop-filter: blur(10px);
|
|
131
|
+
position: relative;
|
|
132
|
+
overflow: hidden;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.usage-hero::before {
|
|
136
|
+
content: '';
|
|
137
|
+
position: absolute;
|
|
138
|
+
top: -50%;
|
|
139
|
+
right: -20%;
|
|
140
|
+
width: 400px;
|
|
141
|
+
height: 400px;
|
|
142
|
+
background: radial-gradient(circle, rgba(200, 121, 99, 0.06) 0%, transparent 70%);
|
|
143
|
+
pointer-events: none;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.usage-hero-active {
|
|
81
147
|
display: flex;
|
|
82
148
|
flex-wrap: wrap;
|
|
83
149
|
align-items: center;
|
|
84
|
-
gap: 10px;
|
|
85
|
-
padding:
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
150
|
+
gap: 10px 16px;
|
|
151
|
+
padding: 12px 18px;
|
|
152
|
+
border-radius: 12px;
|
|
153
|
+
background: linear-gradient(135deg, rgba(200, 121, 99, 0.08), rgba(200, 121, 99, 0.04));
|
|
154
|
+
border: 1px solid rgba(200, 121, 99, 0.12);
|
|
89
155
|
font-size: 12px;
|
|
90
|
-
|
|
156
|
+
position: relative;
|
|
157
|
+
z-index: 1;
|
|
91
158
|
}
|
|
92
159
|
|
|
93
|
-
.usage-
|
|
160
|
+
.usage-hero-active-dot {
|
|
94
161
|
width: 7px;
|
|
95
162
|
height: 7px;
|
|
96
163
|
border-radius: 50%;
|
|
97
164
|
background: var(--color-success);
|
|
98
165
|
flex-shrink: 0;
|
|
99
|
-
animation: usage-pulse 2s ease-in-out infinite;
|
|
166
|
+
animation: usage-pulse 2.2s ease-in-out infinite;
|
|
167
|
+
box-shadow: 0 0 12px rgba(75, 139, 106, 0.4);
|
|
100
168
|
}
|
|
101
169
|
|
|
102
170
|
@keyframes usage-pulse {
|
|
103
|
-
0%, 100% { opacity: 1; }
|
|
104
|
-
50% { opacity: 0.
|
|
171
|
+
0%, 100% { opacity: 1; transform: scale(1); }
|
|
172
|
+
50% { opacity: 0.5; transform: scale(0.85); }
|
|
105
173
|
}
|
|
106
174
|
|
|
107
|
-
.usage-
|
|
108
|
-
font-weight:
|
|
175
|
+
.usage-hero-active-label {
|
|
176
|
+
font-weight: 600;
|
|
109
177
|
color: var(--color-text-primary);
|
|
110
178
|
}
|
|
111
179
|
|
|
112
|
-
.usage-
|
|
180
|
+
.usage-hero-active-stat {
|
|
113
181
|
color: var(--color-text-tertiary);
|
|
114
182
|
}
|
|
115
183
|
|
|
116
|
-
.usage-
|
|
184
|
+
.usage-hero-active-stat::before {
|
|
117
185
|
content: '·';
|
|
118
|
-
margin-right:
|
|
186
|
+
margin-right: 12px;
|
|
119
187
|
color: var(--color-border-strong);
|
|
120
188
|
}
|
|
121
189
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
gap: 10px;
|
|
127
|
-
margin-bottom: 18px;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.usage-summary-card {
|
|
131
|
-
display: flex;
|
|
132
|
-
flex-direction: column;
|
|
133
|
-
justify-content: center;
|
|
134
|
-
gap: 2px;
|
|
135
|
-
padding: 14px 16px;
|
|
136
|
-
border-radius: var(--radius-md);
|
|
137
|
-
background: var(--color-surface);
|
|
138
|
-
border: 1px solid var(--color-border-soft);
|
|
139
|
-
transition: all 120ms var(--ease-spring);
|
|
140
|
-
min-height: 72px;
|
|
190
|
+
.usage-hero-metrics {
|
|
191
|
+
text-align: center;
|
|
192
|
+
position: relative;
|
|
193
|
+
z-index: 1;
|
|
141
194
|
}
|
|
142
195
|
|
|
143
|
-
.usage-
|
|
144
|
-
font-size:
|
|
196
|
+
.usage-hero-main {
|
|
197
|
+
font-size: 52px;
|
|
145
198
|
font-weight: 700;
|
|
146
199
|
color: var(--color-text-primary);
|
|
147
|
-
line-height: 1
|
|
148
|
-
letter-spacing: -0.
|
|
200
|
+
line-height: 1;
|
|
201
|
+
letter-spacing: -0.04em;
|
|
149
202
|
font-variant-numeric: tabular-nums;
|
|
203
|
+
animation: usage-hero-count 1s var(--ease-out-expo);
|
|
204
|
+
background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-brand) 100%);
|
|
205
|
+
-webkit-background-clip: text;
|
|
206
|
+
-webkit-text-fill-color: transparent;
|
|
207
|
+
background-clip: text;
|
|
150
208
|
}
|
|
151
209
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
210
|
+
@keyframes usage-hero-count {
|
|
211
|
+
from { opacity: 0; transform: translateY(16px) scale(0.95); }
|
|
212
|
+
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.usage-hero-sub {
|
|
216
|
+
margin-top: 10px;
|
|
217
|
+
font-size: 14px;
|
|
155
218
|
color: var(--color-text-tertiary);
|
|
156
|
-
|
|
157
|
-
|
|
219
|
+
display: flex;
|
|
220
|
+
align-items: center;
|
|
221
|
+
justify-content: center;
|
|
222
|
+
gap: 14px;
|
|
223
|
+
flex-wrap: wrap;
|
|
158
224
|
}
|
|
159
225
|
|
|
160
|
-
.usage-
|
|
161
|
-
|
|
162
|
-
-
|
|
226
|
+
.usage-hero-delta {
|
|
227
|
+
font-size: 12px;
|
|
228
|
+
font-weight: 600;
|
|
229
|
+
padding: 3px 10px;
|
|
230
|
+
border-radius: 16px;
|
|
163
231
|
}
|
|
164
232
|
|
|
165
|
-
.usage-
|
|
166
|
-
|
|
167
|
-
background:
|
|
233
|
+
.usage-hero-delta.delta-up {
|
|
234
|
+
color: var(--color-success);
|
|
235
|
+
background: linear-gradient(135deg, rgba(75, 139, 106, 0.15), rgba(75, 139, 106, 0.08));
|
|
168
236
|
}
|
|
169
237
|
|
|
170
|
-
.usage-
|
|
171
|
-
|
|
238
|
+
.usage-hero-delta.delta-down {
|
|
239
|
+
color: var(--color-error);
|
|
240
|
+
background: linear-gradient(135deg, rgba(196, 69, 54, 0.15), rgba(196, 69, 54, 0.08));
|
|
172
241
|
}
|
|
173
242
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
243
|
+
/* ---- 波浪图 (流体动画) ---- */
|
|
244
|
+
.usage-wave-section {
|
|
245
|
+
overflow: hidden;
|
|
246
|
+
border: none;
|
|
247
|
+
background: transparent;
|
|
248
|
+
padding: 0;
|
|
249
|
+
margin-bottom: 24px;
|
|
177
250
|
}
|
|
178
251
|
|
|
179
|
-
|
|
180
|
-
|
|
252
|
+
.usage-wave-container {
|
|
253
|
+
margin-top: 16px;
|
|
181
254
|
position: relative;
|
|
255
|
+
padding: 20px;
|
|
256
|
+
border-radius: 18px;
|
|
257
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(252,248,241,0.6));
|
|
258
|
+
border: 1px solid rgba(137, 111, 94, 0.06);
|
|
259
|
+
box-shadow: 0 4px 20px rgba(92, 68, 52, 0.05);
|
|
260
|
+
backdrop-filter: blur(8px);
|
|
182
261
|
}
|
|
183
262
|
|
|
184
|
-
.usage-
|
|
185
|
-
|
|
186
|
-
|
|
263
|
+
.usage-wave-chart {
|
|
264
|
+
width: 100%;
|
|
265
|
+
height: 150px;
|
|
266
|
+
display: block;
|
|
187
267
|
}
|
|
188
268
|
|
|
189
|
-
.usage-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
display: flex;
|
|
193
|
-
align-items: flex-start;
|
|
194
|
-
justify-content: flex-end;
|
|
195
|
-
padding: 12px;
|
|
196
|
-
z-index: 1;
|
|
269
|
+
.usage-wave-area {
|
|
270
|
+
transition: d 600ms var(--ease-spring);
|
|
271
|
+
animation: usage-wave-pulse 4s ease-in-out infinite;
|
|
197
272
|
}
|
|
198
273
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
border-radius: 50%;
|
|
203
|
-
border: 2px solid var(--color-border-soft);
|
|
204
|
-
border-top-color: var(--color-brand);
|
|
205
|
-
animation: usage-spin 0.8s linear infinite;
|
|
274
|
+
@keyframes usage-wave-pulse {
|
|
275
|
+
0%, 100% { opacity: 1; }
|
|
276
|
+
50% { opacity: 0.85; }
|
|
206
277
|
}
|
|
207
278
|
|
|
208
|
-
|
|
209
|
-
|
|
279
|
+
.usage-wave-line {
|
|
280
|
+
transition: d 600ms var(--ease-spring);
|
|
281
|
+
filter: drop-shadow(0 4px 12px rgba(200, 121, 99, 0.25));
|
|
210
282
|
}
|
|
211
283
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
border: 1px solid var(--color-border-soft);
|
|
218
|
-
margin-bottom: 12px;
|
|
284
|
+
.usage-wave-hover-line {
|
|
285
|
+
transition: x1 200ms var(--ease-spring), x2 200ms var(--ease-spring),
|
|
286
|
+
y1 200ms var(--ease-spring), y2 200ms var(--ease-spring);
|
|
287
|
+
stroke-dasharray: 4 4;
|
|
288
|
+
animation: usage-hover-dash 20s linear infinite;
|
|
219
289
|
}
|
|
220
290
|
|
|
221
|
-
|
|
222
|
-
|
|
291
|
+
@keyframes usage-hover-dash {
|
|
292
|
+
to { stroke-dashoffset: -100; }
|
|
223
293
|
}
|
|
224
294
|
|
|
225
|
-
.usage-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
margin-bottom: 2px;
|
|
295
|
+
.usage-wave-hover-point {
|
|
296
|
+
transition: cx 200ms var(--ease-spring), cy 200ms var(--ease-spring);
|
|
297
|
+
filter: drop-shadow(0 0 8px rgba(200, 121, 99, 0.4));
|
|
298
|
+
animation: usage-point-pulse 2s ease-in-out infinite;
|
|
230
299
|
}
|
|
231
300
|
|
|
232
|
-
|
|
301
|
+
@keyframes usage-point-pulse {
|
|
302
|
+
0%, 100% { r: 5; }
|
|
303
|
+
50% { r: 6.5; }
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.usage-wave-labels {
|
|
307
|
+
display: flex;
|
|
308
|
+
justify-content: space-between;
|
|
309
|
+
margin-top: 12px;
|
|
310
|
+
padding: 0 8px;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.usage-wave-label {
|
|
233
314
|
font-size: 11px;
|
|
234
315
|
color: var(--color-text-muted);
|
|
316
|
+
cursor: pointer;
|
|
317
|
+
padding: 4px 8px;
|
|
318
|
+
border-radius: 6px;
|
|
319
|
+
transition: all 180ms var(--ease-spring);
|
|
320
|
+
-webkit-tap-highlight-color: transparent;
|
|
321
|
+
font-weight: 500;
|
|
235
322
|
}
|
|
236
323
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
grid-template-columns: repeat(2, 1fr);
|
|
241
|
-
gap: 12px;
|
|
324
|
+
.usage-wave-label:hover {
|
|
325
|
+
color: var(--color-text-secondary);
|
|
326
|
+
background: rgba(200, 121, 99, 0.08);
|
|
242
327
|
}
|
|
243
328
|
|
|
244
|
-
.usage-
|
|
245
|
-
|
|
329
|
+
.usage-wave-label.active {
|
|
330
|
+
color: var(--color-brand);
|
|
331
|
+
font-weight: 600;
|
|
332
|
+
background: linear-gradient(135deg, rgba(200, 121, 99, 0.12), rgba(200, 121, 99, 0.06));
|
|
246
333
|
}
|
|
247
334
|
|
|
248
|
-
/* ----
|
|
249
|
-
.usage-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
335
|
+
/* ---- 日期详情 ---- */
|
|
336
|
+
.usage-daydetail {
|
|
337
|
+
margin-top: 16px;
|
|
338
|
+
padding: 14px 18px;
|
|
339
|
+
border-radius: 12px;
|
|
340
|
+
background: linear-gradient(135deg, rgba(247, 239, 232, 0.8), rgba(247, 239, 232, 0.4));
|
|
341
|
+
border: 1px solid rgba(137, 111, 94, 0.06);
|
|
255
342
|
}
|
|
256
343
|
|
|
257
|
-
.usage-
|
|
258
|
-
flex: 1;
|
|
344
|
+
.usage-daydetail-header {
|
|
259
345
|
display: flex;
|
|
260
|
-
|
|
346
|
+
justify-content: space-between;
|
|
261
347
|
align-items: center;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
min-width: 0;
|
|
265
|
-
-webkit-tap-highlight-color: transparent;
|
|
348
|
+
flex-wrap: wrap;
|
|
349
|
+
gap: 8px;
|
|
266
350
|
}
|
|
267
351
|
|
|
268
|
-
.usage-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
display: flex;
|
|
273
|
-
flex-direction: column;
|
|
274
|
-
justify-content: flex-end;
|
|
275
|
-
position: relative;
|
|
276
|
-
border-radius: 4px 4px 0 0;
|
|
277
|
-
overflow: hidden;
|
|
278
|
-
background: var(--color-surface-alt);
|
|
352
|
+
.usage-daydetail-date {
|
|
353
|
+
font-weight: 600;
|
|
354
|
+
font-size: 14px;
|
|
355
|
+
color: var(--color-text-primary);
|
|
279
356
|
}
|
|
280
357
|
|
|
281
|
-
.usage-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
background: var(--color-brand);
|
|
285
|
-
transition: height 200ms var(--ease-spring);
|
|
286
|
-
min-height: 2px;
|
|
358
|
+
.usage-daydetail-stats {
|
|
359
|
+
font-size: 12px;
|
|
360
|
+
color: var(--color-text-secondary);
|
|
287
361
|
}
|
|
288
362
|
|
|
289
|
-
.usage-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
border-radius: 4px 4px 0 0;
|
|
363
|
+
.usage-daydetail-compare {
|
|
364
|
+
margin-top: 6px;
|
|
365
|
+
font-size: 11px;
|
|
366
|
+
color: var(--color-text-muted);
|
|
294
367
|
}
|
|
295
368
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
369
|
+
/* ---- 热力图 (动态呼吸) ---- */
|
|
370
|
+
.usage-card-hourly-heatmap {
|
|
371
|
+
overflow-x: auto;
|
|
372
|
+
border: none;
|
|
373
|
+
background: transparent;
|
|
374
|
+
padding: 0;
|
|
299
375
|
}
|
|
300
376
|
|
|
301
|
-
.
|
|
302
|
-
|
|
377
|
+
.hourly-heatmap-wrapper {
|
|
378
|
+
display: flex;
|
|
379
|
+
flex-direction: column;
|
|
380
|
+
gap: 3px;
|
|
381
|
+
margin-top: 14px;
|
|
382
|
+
min-width: 500px;
|
|
383
|
+
padding: 16px;
|
|
384
|
+
border-radius: 18px;
|
|
385
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(252,248,241,0.6));
|
|
386
|
+
border: 1px solid rgba(137, 111, 94, 0.06);
|
|
387
|
+
box-shadow: 0 4px 20px rgba(92, 68, 52, 0.05);
|
|
388
|
+
backdrop-filter: blur(8px);
|
|
303
389
|
}
|
|
304
390
|
|
|
305
|
-
.
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
white-space: nowrap;
|
|
310
|
-
overflow: hidden;
|
|
311
|
-
text-overflow: ellipsis;
|
|
312
|
-
max-width: 100%;
|
|
391
|
+
.hourly-heatmap-header {
|
|
392
|
+
display: flex;
|
|
393
|
+
gap: 3px;
|
|
394
|
+
align-items: flex-end;
|
|
313
395
|
}
|
|
314
396
|
|
|
315
|
-
.
|
|
316
|
-
|
|
317
|
-
|
|
397
|
+
.hourly-heatmap-corner {
|
|
398
|
+
width: 36px;
|
|
399
|
+
flex-shrink: 0;
|
|
318
400
|
}
|
|
319
401
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
margin-top: 10px;
|
|
325
|
-
font-size: 11px;
|
|
402
|
+
.hourly-heatmap-hour-label {
|
|
403
|
+
flex: 1;
|
|
404
|
+
min-width: 0;
|
|
405
|
+
font-size: 9px;
|
|
326
406
|
color: var(--color-text-muted);
|
|
407
|
+
text-align: center;
|
|
408
|
+
line-height: 14px;
|
|
327
409
|
}
|
|
328
410
|
|
|
329
|
-
.
|
|
330
|
-
display:
|
|
411
|
+
.hourly-heatmap-row {
|
|
412
|
+
display: flex;
|
|
413
|
+
gap: 3px;
|
|
331
414
|
align-items: center;
|
|
332
|
-
gap: 5px;
|
|
333
415
|
}
|
|
334
416
|
|
|
335
|
-
.
|
|
336
|
-
width:
|
|
337
|
-
|
|
338
|
-
|
|
417
|
+
.hourly-heatmap-weekday-label {
|
|
418
|
+
width: 36px;
|
|
419
|
+
flex-shrink: 0;
|
|
420
|
+
font-size: 11px;
|
|
421
|
+
color: var(--color-text-secondary);
|
|
422
|
+
text-align: right;
|
|
423
|
+
padding-right: 6px;
|
|
424
|
+
font-weight: 500;
|
|
339
425
|
}
|
|
340
426
|
|
|
341
|
-
.
|
|
342
|
-
|
|
427
|
+
.hourly-heatmap-cell {
|
|
428
|
+
flex: 1;
|
|
429
|
+
min-width: 0;
|
|
430
|
+
height: 7px;
|
|
431
|
+
border-radius: 4px;
|
|
432
|
+
transition: all 200ms var(--ease-spring);
|
|
433
|
+
cursor: crosshair;
|
|
343
434
|
}
|
|
344
435
|
|
|
345
|
-
.
|
|
346
|
-
|
|
347
|
-
|
|
436
|
+
.hourly-heatmap-cell:hover {
|
|
437
|
+
transform: scaleY(1.4);
|
|
438
|
+
filter: brightness(1.1);
|
|
348
439
|
}
|
|
349
440
|
|
|
350
|
-
|
|
351
|
-
.usage-daydetail {
|
|
352
|
-
margin-top: 12px;
|
|
353
|
-
padding: 10px 14px;
|
|
354
|
-
border-radius: var(--radius-sm);
|
|
441
|
+
.hourly-heatmap-cell.level-0 {
|
|
355
442
|
background: var(--color-surface-alt);
|
|
356
443
|
}
|
|
444
|
+
.hourly-heatmap-cell.level-1 {
|
|
445
|
+
background: var(--color-heatmap-1);
|
|
446
|
+
animation: heatmap-breath-1 3s ease-in-out infinite;
|
|
447
|
+
}
|
|
448
|
+
.hourly-heatmap-cell.level-2 {
|
|
449
|
+
background: var(--color-heatmap-2);
|
|
450
|
+
animation: heatmap-breath-2 3s ease-in-out infinite;
|
|
451
|
+
}
|
|
452
|
+
.hourly-heatmap-cell.level-3 {
|
|
453
|
+
background: var(--color-heatmap-3);
|
|
454
|
+
animation: heatmap-breath-3 3s ease-in-out infinite;
|
|
455
|
+
}
|
|
456
|
+
.hourly-heatmap-cell.level-4 {
|
|
457
|
+
background: var(--color-heatmap-4);
|
|
458
|
+
animation: heatmap-breath-4 3s ease-in-out infinite;
|
|
459
|
+
box-shadow: 0 0 8px rgba(200, 121, 99, 0.3);
|
|
460
|
+
}
|
|
357
461
|
|
|
358
|
-
|
|
462
|
+
@keyframes heatmap-breath-1 {
|
|
463
|
+
0%, 100% { opacity: 1; }
|
|
464
|
+
50% { opacity: 0.85; }
|
|
465
|
+
}
|
|
466
|
+
@keyframes heatmap-breath-2 {
|
|
467
|
+
0%, 100% { opacity: 1; }
|
|
468
|
+
50% { opacity: 0.9; }
|
|
469
|
+
}
|
|
470
|
+
@keyframes heatmap-breath-3 {
|
|
471
|
+
0%, 100% { opacity: 1; }
|
|
472
|
+
50% { opacity: 0.95; }
|
|
473
|
+
}
|
|
474
|
+
@keyframes heatmap-breath-4 {
|
|
475
|
+
0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(200, 121, 99, 0.3); }
|
|
476
|
+
50% { opacity: 0.9; box-shadow: 0 0 14px rgba(200, 121, 99, 0.5); }
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.hourly-heatmap-legend {
|
|
359
480
|
display: flex;
|
|
360
|
-
justify-content: space-between;
|
|
361
481
|
align-items: center;
|
|
362
|
-
|
|
363
|
-
|
|
482
|
+
gap: 4px;
|
|
483
|
+
justify-content: flex-end;
|
|
484
|
+
margin-top: 12px;
|
|
485
|
+
font-size: 10px;
|
|
486
|
+
color: var(--color-text-muted);
|
|
364
487
|
}
|
|
365
488
|
|
|
366
|
-
.
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
489
|
+
.hourly-heatmap-legend .hourly-heatmap-cell {
|
|
490
|
+
width: 12px;
|
|
491
|
+
height: 12px;
|
|
492
|
+
border-radius: 3px;
|
|
370
493
|
}
|
|
371
494
|
|
|
372
|
-
.
|
|
373
|
-
|
|
374
|
-
color: var(--color-text-secondary);
|
|
495
|
+
.hourly-heatmap-legend-label {
|
|
496
|
+
margin: 0 4px;
|
|
375
497
|
}
|
|
376
498
|
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
499
|
+
/* ---- 列表样式 (加大间距) ---- */
|
|
500
|
+
.usage-list-compact {
|
|
501
|
+
display: flex;
|
|
502
|
+
flex-direction: column;
|
|
503
|
+
gap: 6px;
|
|
381
504
|
}
|
|
382
505
|
|
|
383
|
-
|
|
384
|
-
.usage-list {
|
|
506
|
+
.usage-list-compact-item {
|
|
385
507
|
display: flex;
|
|
386
|
-
|
|
387
|
-
gap:
|
|
508
|
+
align-items: flex-start;
|
|
509
|
+
gap: 10px;
|
|
510
|
+
padding: 10px 14px;
|
|
511
|
+
border-radius: 10px;
|
|
512
|
+
cursor: pointer;
|
|
513
|
+
transition: all 180ms var(--ease-spring);
|
|
514
|
+
-webkit-tap-highlight-color: transparent;
|
|
388
515
|
}
|
|
389
516
|
|
|
390
|
-
.usage-list-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
gap: 8px 12px;
|
|
395
|
-
padding: 8px 10px;
|
|
396
|
-
border-radius: var(--radius-sm);
|
|
397
|
-
background: var(--color-surface-alt);
|
|
398
|
-
transition: background 120ms var(--ease-spring);
|
|
517
|
+
.usage-list-compact-item:hover {
|
|
518
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(252,248,241,0.7));
|
|
519
|
+
transform: translateX(4px);
|
|
520
|
+
box-shadow: 0 2px 8px rgba(92, 68, 52, 0.06);
|
|
399
521
|
}
|
|
400
522
|
|
|
401
|
-
.usage-list-
|
|
402
|
-
|
|
523
|
+
.usage-list-compact-item:active {
|
|
524
|
+
transform: translateX(2px) scale(0.98);
|
|
403
525
|
}
|
|
404
526
|
|
|
405
|
-
.usage-list-
|
|
406
|
-
|
|
407
|
-
font-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
white-space: nowrap;
|
|
527
|
+
.usage-list-bullet {
|
|
528
|
+
color: var(--color-brand);
|
|
529
|
+
font-size: 16px;
|
|
530
|
+
line-height: 1.4;
|
|
531
|
+
flex-shrink: 0;
|
|
532
|
+
opacity: 0.7;
|
|
412
533
|
}
|
|
413
534
|
|
|
414
|
-
.usage-list-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
font-size: 11px;
|
|
535
|
+
.usage-list-compact-item:hover .usage-list-bullet {
|
|
536
|
+
opacity: 1;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.usage-list-compact-content {
|
|
540
|
+
flex: 1;
|
|
541
|
+
min-width: 0;
|
|
422
542
|
}
|
|
423
543
|
|
|
424
|
-
.usage-list-
|
|
544
|
+
.usage-list-title {
|
|
425
545
|
font-size: 13px;
|
|
426
|
-
font-weight:
|
|
546
|
+
font-weight: 500;
|
|
427
547
|
color: var(--color-text-primary);
|
|
428
|
-
|
|
429
|
-
text-
|
|
548
|
+
overflow: hidden;
|
|
549
|
+
text-overflow: ellipsis;
|
|
550
|
+
white-space: nowrap;
|
|
430
551
|
}
|
|
431
552
|
|
|
432
553
|
.usage-list-meta {
|
|
433
|
-
grid-column: 1 / -1;
|
|
434
554
|
font-size: 11px;
|
|
435
555
|
color: var(--color-text-muted);
|
|
556
|
+
margin-top: 3px;
|
|
436
557
|
}
|
|
437
558
|
|
|
438
559
|
.usage-list-value {
|
|
439
|
-
font-size:
|
|
560
|
+
font-size: 13px;
|
|
440
561
|
color: var(--color-text-secondary);
|
|
441
|
-
padding:
|
|
562
|
+
padding: 10px 0;
|
|
442
563
|
}
|
|
443
564
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
.usage-progress-fill {
|
|
452
|
-
height: 100%;
|
|
453
|
-
border-radius: 2px;
|
|
454
|
-
background: var(--color-brand);
|
|
455
|
-
transition: width 300ms var(--ease-spring);
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
/* ---- Hourly heatmap ---- */
|
|
459
|
-
.usage-card-hourly-heatmap {
|
|
460
|
-
overflow-x: auto;
|
|
565
|
+
/* ---- Path 列表 ---- */
|
|
566
|
+
.usage-paths-section {
|
|
567
|
+
grid-column: 1 / -1;
|
|
568
|
+
border: none;
|
|
569
|
+
background: transparent;
|
|
570
|
+
padding: 0;
|
|
461
571
|
}
|
|
462
572
|
|
|
463
|
-
.
|
|
573
|
+
.usage-list-paths {
|
|
464
574
|
display: flex;
|
|
465
575
|
flex-direction: column;
|
|
466
|
-
gap:
|
|
467
|
-
|
|
468
|
-
|
|
576
|
+
gap: 8px;
|
|
577
|
+
padding: 16px;
|
|
578
|
+
border-radius: 18px;
|
|
579
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(252,248,241,0.6));
|
|
580
|
+
border: 1px solid rgba(137, 111, 94, 0.06);
|
|
581
|
+
box-shadow: 0 4px 20px rgba(92, 68, 52, 0.05);
|
|
582
|
+
backdrop-filter: blur(8px);
|
|
469
583
|
}
|
|
470
584
|
|
|
471
|
-
.
|
|
585
|
+
.usage-list-path-row {
|
|
472
586
|
display: flex;
|
|
473
|
-
|
|
474
|
-
|
|
587
|
+
align-items: center;
|
|
588
|
+
gap: 12px;
|
|
589
|
+
padding: 10px 12px;
|
|
590
|
+
border-radius: 10px;
|
|
591
|
+
transition: all 180ms var(--ease-spring);
|
|
475
592
|
}
|
|
476
593
|
|
|
477
|
-
.
|
|
478
|
-
|
|
594
|
+
.usage-list-path-row:hover {
|
|
595
|
+
background: rgba(255, 255, 255, 0.7);
|
|
596
|
+
transform: translateX(4px);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.usage-list-path-rank {
|
|
600
|
+
width: 22px;
|
|
601
|
+
height: 22px;
|
|
602
|
+
display: flex;
|
|
603
|
+
align-items: center;
|
|
604
|
+
justify-content: center;
|
|
605
|
+
font-size: 11px;
|
|
606
|
+
font-weight: 600;
|
|
607
|
+
color: var(--color-brand);
|
|
608
|
+
background: linear-gradient(135deg, rgba(200, 121, 99, 0.12), rgba(200, 121, 99, 0.06));
|
|
609
|
+
border-radius: 6px;
|
|
479
610
|
flex-shrink: 0;
|
|
480
611
|
}
|
|
481
612
|
|
|
482
|
-
.
|
|
613
|
+
.usage-list-path-content {
|
|
483
614
|
flex: 1;
|
|
615
|
+
display: flex;
|
|
616
|
+
justify-content: space-between;
|
|
617
|
+
align-items: center;
|
|
618
|
+
gap: 12px;
|
|
484
619
|
min-width: 0;
|
|
485
|
-
font-size: 9px;
|
|
486
|
-
color: var(--color-text-muted);
|
|
487
|
-
text-align: center;
|
|
488
|
-
line-height: 14px;
|
|
489
620
|
}
|
|
490
621
|
|
|
491
|
-
.
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
622
|
+
.usage-list-path {
|
|
623
|
+
font-size: 12px;
|
|
624
|
+
color: var(--color-text-secondary);
|
|
625
|
+
font-family: var(--font-family-mono);
|
|
626
|
+
overflow: hidden;
|
|
627
|
+
text-overflow: ellipsis;
|
|
628
|
+
white-space: nowrap;
|
|
495
629
|
}
|
|
496
630
|
|
|
497
|
-
.
|
|
498
|
-
|
|
631
|
+
.usage-list-path-stat {
|
|
632
|
+
font-size: 14px;
|
|
633
|
+
font-weight: 600;
|
|
634
|
+
color: var(--color-text-primary);
|
|
635
|
+
font-variant-numeric: tabular-nums;
|
|
499
636
|
flex-shrink: 0;
|
|
500
|
-
font-size: 10px;
|
|
501
|
-
color: var(--color-text-secondary);
|
|
502
|
-
text-align: right;
|
|
503
|
-
padding-right: 4px;
|
|
504
637
|
}
|
|
505
638
|
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
639
|
+
/* ---- 卡片 (无边框浮动式) ---- */
|
|
640
|
+
.usage-card {
|
|
641
|
+
padding: 0;
|
|
642
|
+
border-radius: 0;
|
|
643
|
+
background: transparent;
|
|
644
|
+
border: none;
|
|
645
|
+
margin-bottom: 0;
|
|
511
646
|
}
|
|
512
647
|
|
|
513
|
-
.
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
648
|
+
.usage-card-title {
|
|
649
|
+
font-size: 15px;
|
|
650
|
+
font-weight: 600;
|
|
651
|
+
color: var(--color-text-primary);
|
|
652
|
+
margin-bottom: 0;
|
|
653
|
+
letter-spacing: -0.02em;
|
|
654
|
+
}
|
|
518
655
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
margin-top: 8px;
|
|
525
|
-
font-size: 10px;
|
|
526
|
-
color: var(--color-text-muted);
|
|
656
|
+
/* ---- 图表网格 (加大间距) ---- */
|
|
657
|
+
.usage-chart-grid {
|
|
658
|
+
display: grid;
|
|
659
|
+
grid-template-columns: repeat(2, 1fr);
|
|
660
|
+
gap: 20px;
|
|
527
661
|
}
|
|
528
662
|
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
663
|
+
/* 为非 paths 卡片添加容器 */
|
|
664
|
+
.usage-chart-grid > .usage-card:not(.usage-paths-section):not(.usage-wave-section):not(.usage-card-hourly-heatmap) {
|
|
665
|
+
padding: 16px;
|
|
666
|
+
border-radius: 18px;
|
|
667
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(252,248,241,0.6));
|
|
668
|
+
border: 1px solid rgba(137, 111, 94, 0.06);
|
|
669
|
+
box-shadow: 0 4px 20px rgba(92, 68, 52, 0.05);
|
|
670
|
+
backdrop-filter: blur(8px);
|
|
533
671
|
}
|
|
534
672
|
|
|
535
|
-
|
|
536
|
-
|
|
673
|
+
/* ---- 内容区域 ---- */
|
|
674
|
+
.usage-content {
|
|
675
|
+
position: relative;
|
|
537
676
|
}
|
|
538
677
|
|
|
539
|
-
|
|
540
|
-
.
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
678
|
+
.usage-content-loading {
|
|
679
|
+
opacity: 0.6;
|
|
680
|
+
pointer-events: none;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.usage-content-overlay {
|
|
684
|
+
position: absolute;
|
|
685
|
+
inset: 0;
|
|
686
|
+
display: flex;
|
|
687
|
+
align-items: flex-start;
|
|
688
|
+
justify-content: flex-end;
|
|
689
|
+
padding: 16px;
|
|
690
|
+
z-index: 10;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.usage-spinner {
|
|
694
|
+
width: 18px;
|
|
695
|
+
height: 18px;
|
|
696
|
+
border-radius: 50%;
|
|
697
|
+
border: 2px solid rgba(137, 111, 94, 0.15);
|
|
698
|
+
border-top-color: var(--color-brand);
|
|
699
|
+
animation: usage-spin 0.8s linear infinite;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
@keyframes usage-spin {
|
|
703
|
+
to { transform: rotate(360deg); }
|
|
548
704
|
}
|
|
549
705
|
|
|
550
|
-
/* ----
|
|
706
|
+
/* ---- 响应式 ---- */
|
|
551
707
|
@media (max-width: 960px) {
|
|
552
708
|
.usage-chart-grid {
|
|
553
709
|
grid-template-columns: 1fr;
|
|
554
710
|
}
|
|
555
711
|
|
|
556
|
-
.usage-
|
|
557
|
-
|
|
712
|
+
.usage-hero-main {
|
|
713
|
+
font-size: 44px;
|
|
558
714
|
}
|
|
559
715
|
}
|
|
560
716
|
|
|
@@ -569,20 +725,29 @@
|
|
|
569
725
|
flex-wrap: wrap;
|
|
570
726
|
}
|
|
571
727
|
|
|
572
|
-
.usage-
|
|
573
|
-
|
|
728
|
+
.usage-hero {
|
|
729
|
+
padding: 24px 20px;
|
|
730
|
+
min-height: 140px;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.usage-hero-main {
|
|
734
|
+
font-size: 38px;
|
|
574
735
|
}
|
|
575
736
|
|
|
576
|
-
.usage-
|
|
577
|
-
|
|
737
|
+
.usage-wave-chart {
|
|
738
|
+
height: 110px;
|
|
578
739
|
}
|
|
579
740
|
|
|
580
|
-
.usage-
|
|
581
|
-
|
|
741
|
+
.usage-wave-labels {
|
|
742
|
+
font-size: 10px;
|
|
582
743
|
}
|
|
583
744
|
|
|
584
|
-
.
|
|
585
|
-
|
|
586
|
-
|
|
745
|
+
.hourly-heatmap-wrapper {
|
|
746
|
+
min-width: 100%;
|
|
747
|
+
overflow-x: auto;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.usage-chart-grid {
|
|
751
|
+
gap: 16px;
|
|
587
752
|
}
|
|
588
753
|
}
|