forked from jenkinsci/pipeline-graph-view-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (74 loc) · 1.38 KB
/
style.css
File metadata and controls
87 lines (74 loc) · 1.38 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
h1 {
display: flex;
align-items: center;
gap: 1rem;
}
.app-details__prev_next {
padding: 0.5rem;
min-width: 2.375rem;
border-radius: 100px;
margin-inline: -0.75rem;
color: var(--text-color-secondary) !important;
&::before,
&::after {
inset: 0.375rem;
}
svg {
width: 1.175rem !important;
height: 1.175rem !important;
}
}
.pgv-details {
display: flex;
align-items: center;
gap: 1rem 1.5rem;
margin-left: 0.25rem;
margin-bottom: 0.875rem;
margin-top: -0.25rem;
flex-wrap: wrap;
@media (width <= 800px) {
margin-block: 0.75rem 1rem;
}
& > div {
display: flex;
align-items: center;
gap: 1ch;
font-size: var(--font-size-sm);
color: var(--text-color-secondary);
font-weight: var(--font-bold-weight);
text-box: trim-both;
a {
color: inherit;
}
svg,
img {
width: 1.125rem;
height: 1.125rem;
}
}
}
.pgv-description {
display: grid;
grid-template-columns: auto 1fr;
gap: 1ch;
align-items: start;
margin: 0 0 1rem 0.25rem;
& > svg {
width: 1.125rem;
height: 1.125rem;
}
& > div {
text-box: trim-both;
line-height: 1.66;
margin-top: 0.0625rem;
}
}
.pgv-dropdown-item {
display: grid;
grid-template-columns: auto 1fr;
row-gap: 0.25rem;
.pgv-dropdown-item__description {
color: var(--text-color-secondary);
grid-area: 2 / 2;
}
}