-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
133 lines (110 loc) · 2.4 KB
/
Copy pathstylesheet.css
File metadata and controls
133 lines (110 loc) · 2.4 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* Panel button styles */
.copilot-icon {
margin-right: 6px;
}
.copilot-usage-label {
font-size: 12px;
font-weight: bold;
}
/* Panel progress bar */
.copilot-panel-progress-bg {
background-color: rgba(255, 255, 255, 0.2);
border-radius: 3px;
height: 10px;
width: 50px;
margin-left: 4px;
}
.copilot-panel-progress-bar {
height: 10px;
border-radius: 3px;
transition: width 300ms ease-out;
background-color: #ffffff;
}
/* Usage section styles */
.copilot-usage-section {
padding: 4px 0;
spacing: 6px;
min-width: 260px;
}
.copilot-section-header {
spacing: 12px;
}
.copilot-section-title {
font-size: 13px;
font-weight: 600;
color: #e0e0e0;
}
.copilot-value-label {
font-size: 13px;
font-weight: bold;
color: #ffffff;
}
.copilot-detail-label {
font-size: 11px;
color: #a0a0a0;
}
/* Progress bar styles */
.copilot-progress-bg {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 4px;
height: 8px;
width: 240px;
margin: 4px 0;
}
.copilot-progress-bar {
height: 8px;
border-radius: 4px;
transition: width 300ms ease-out;
}
.copilot-progress-bar.usage-low {
background-color: #10a37f;
}
.copilot-progress-bar.usage-medium {
background-color: #eab308;
}
.copilot-progress-bar.usage-high {
background-color: #f97316;
}
.copilot-progress-bar.usage-critical {
background-color: #ef4444;
}
/* Footer styles */
.copilot-footer-box {
padding: 4px 0 2px;
spacing: 10px;
}
.copilot-refresh-button-content {
spacing: 6px;
}
.copilot-refresh-button-icon {
icon-size: 14px;
}
.copilot-refresh-button-label {
font-size: 12px;
font-weight: 600;
}
.copilot-refresh-button {
padding: 6px 10px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.08);
background-color: rgba(255, 255, 255, 0.06);
color: #ffffff;
transition: background-color 160ms ease-out, border-color 160ms ease-out;
}
.copilot-refresh-button:hover {
background-color: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.18);
}
.copilot-refresh-button:active {
background-color: rgba(255, 255, 255, 0.18);
}
.copilot-refresh-button.busy {
background-color: rgba(16, 163, 127, 0.18);
border-color: rgba(16, 163, 127, 0.34);
}
.copilot-last-updated-label {
font-size: 10px;
font-style: italic;
color: #808080;
text-align: right;
}