-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
98 lines (90 loc) · 2.24 KB
/
Copy pathstylesheet.css
File metadata and controls
98 lines (90 loc) · 2.24 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
.symfony-menubar-menu .popup-menu-content {
min-width: 420px;
}
/* ---- Status dots ---- */
.server-status-dot { margin-right: 6px; }
.server-status-dot.running { color: #4ade80; }
.server-status-dot.stopped { color: #888888; }
/* ---- Port label ---- */
.server-port-label {
color: rgba(255, 255, 255, 0.4);
font-size: 12px;
margin-right: 8px;
}
/* ---- PHP badges ---- */
.php-badge {
font-size: 10px;
padding: 2px 6px;
border-radius: 4px;
margin-right: 8px;
}
.php-badge.enabled {
background-color: rgba(74, 222, 128, 0.20);
color: #4ade80;
}
.php-badge.installed {
background-color: rgba(255, 255, 255, 0.06);
color: rgba(255, 255, 255, 0.35);
}
/* ---- Section header ---- */
.section-header-label {
font-size: 11px;
font-weight: bold;
color: rgba(255, 255, 255, 0.4);
padding-top: 5px;
padding-bottom: 2px;
}
.section-header-button {
padding: 0 4px;
background: transparent;
border: none;
}
.section-header-icon { color: rgba(255, 255, 255, 0.5); }
.section-header-button:hover .section-header-icon { color: rgba(255, 255, 255, 0.9); }
/* ---- Inline action buttons (ServerRowItem) ---- */
.server-action-button {
padding: 2px 4px;
background: transparent;
border: none;
}
.server-action-icon { color: rgba(255, 255, 255, 0.7); }
/* ---- PHP version button (ServerRowItem) ---- */
.php-version-button {
font-size: 11px;
padding: 1px 6px;
border-radius: 4px;
margin-right: 6px;
background-color: rgba(255, 255, 255, 0.06);
color: rgba(255, 255, 255, 0.55);
border: none;
}
.php-version-button:hover {
background-color: rgba(255, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.9);
}
/* ---- PHP version dialog ---- */
.php-version-dialog-list {
margin-top: 12px;
spacing: 4px;
}
.php-version-dialog-item {
padding: 6px 12px;
border-radius: 4px;
background: transparent;
color: rgba(255, 255, 255, 0.8);
border: none;
text-align: left;
}
.php-version-dialog-item:hover {
background-color: rgba(255, 255, 255, 0.10);
}
.php-version-dialog-item-current {
color: #4ade80;
font-weight: bold;
}
/* ---- About dialog ---- */
.about-repo-link {
color: #78aeed;
text-decoration: underline;
margin-top: 8px;
}