forked from cockpit-project/cockpit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service-details.scss
72 lines (57 loc) · 1.27 KB
/
service-details.scss
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
@use "ct-card";
@use "../lib/journal.css";
@use "_global-variables.scss";
#service-details .pf-v5-c-card {
@extend .ct-card;
}
.comma-list {
display: inline;
list-style: none;
padding-inline-start: 0;
}
.comma-list li {
display: inline-block;
}
.comma-list li:not(:last-child)::after {
content: ",";
margin-inline-end: 0.5em;
}
/* Rely on flex for spacing only */
#service-actions button {
padding-inline-start: 0;
}
.service-thumbtack-icon {
color: var(--pf-v5-global--icon--Color--light);
}
.action-button {
margin-inline-start: 2rem;
}
.status-icon::before {
color: inherit;
}
.status-icon {
margin-inline-end: 0.5rem;
color: var(--pf-v5-global--icon--Color--light);
}
.status-running > .status-icon,
.status-enabled > .status-icon {
/* mid-way between PF4 success-100 & 200; then rounded to AA contrast */
color: #6da000;
}
.status-failed > .status-icon,
.status-failed > .status {
color: var(--pf-v5-global--danger-color--200);
}
.side-note {
color: var(--pf-v5-global--Color--300);
padding-inline-start: 1em;
}
.pf-v5-theme-dark .side-note {
color: var(--pf-v5-global--Color--200);
}
.font-xs {
font-size: var(--pf-v5-global--FontSize--xs);
}
.pf-v5-c-dropdown__menu-item.pf-m-danger {
color: var(--pf-v5-global--danger-color--200);
}