-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstylesheet.css
More file actions
114 lines (97 loc) · 2.19 KB
/
Copy pathstylesheet.css
File metadata and controls
114 lines (97 loc) · 2.19 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.claude-monitor-label {
font-size: 12px;
font-weight: bold;
padding: 0 4px;
}
.claude-monitor-icon {
icon-size: 14px;
padding: 0 2px 0 0;
margin-top: 0;
margin-bottom: 0;
}
.claude-monitor-dot {
font-size: 16px;
padding: 0 2px;
}
.claude-monitor-vbar {
margin: 0 2px;
}
.claude-monitor-hbar {
margin: 0 4px;
}
.claude-monitor-value {
font-size: 12px;
color: #cccccc;
}
.claude-monitor-header {
font-size: 13px;
font-weight: bold;
color: #c4a0ff;
}
.claude-monitor-badge {
font-size: 7px;
margin-top: 8px;
margin-left: -4px;
}
/* Pill background styles */
.claude-pill-solid {
background-color: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
.claude-pill-subtle {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
.claude-pill-border {
background-color: transparent;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
/* Status-aware pill backgrounds */
.claude-pill-status-ok {
background-color: rgba(100, 220, 30, 0.12);
border: 1px solid rgba(100, 220, 30, 0.25);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
.claude-pill-status-warn {
background-color: rgba(255, 180, 0, 0.12);
border: 1px solid rgba(255, 180, 0, 0.25);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
.claude-pill-status-danger {
background-color: rgba(255, 60, 60, 0.12);
border: 1px solid rgba(255, 60, 60, 0.25);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
/* Neon glow pill */
.claude-pill-glow {
background-color: rgba(180, 120, 255, 0.08);
border: 1px solid rgba(180, 120, 255, 0.25);
border-radius: 99px;
margin: 4px 2px;
padding: 0 8px;
}
/* Font size variants */
.claude-text-small .claude-monitor-label {
font-size: 10px;
}
.claude-text-large .claude-monitor-label {
font-size: 14px;
}
/* Frosted dropdown background */
.claude-dropdown-frosted .popup-menu-content {
background-color: rgba(30, 30, 30, 0.85);
}