-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
32 lines (27 loc) · 775 Bytes
/
Copy pathstyle.css
File metadata and controls
32 lines (27 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Token Usage Tracker Extension Styles */
/* Active state for range buttons */
.range-btn.active {
background-color: white;
color: #0f172a; /* slate-900 */
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.05),
0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
/* Transition for the hover cursor rect in the graph */
.cursor-rect {
transition: fill 0.1s;
}
/* Hide number input spin buttons */
#token-usage-model-colors-grid input[type="number"]::-webkit-outer-spin-button,
#token-usage-model-colors-grid input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#token-usage-model-colors-grid input[type="number"] {
-moz-appearance: textfield;
appearance: textfield;
}
/* Compact model config row */
.model-config-row {
padding: 2px 0;
}