blob: 2df43b861b2401cccc74087594236299e8331e46 (
plain)
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
|
@include media-breakpoint-down(md) {
.content-list {
&.builds-content-list {
width: 100%;
overflow: auto;
}
}
}
.ci-table {
.avatar {
margin-left: 0;
float: none;
}
.branch-commit {
.ref-name {
font-weight: $gl-font-weight-bold;
max-width: 100px;
overflow: hidden;
display: inline-block;
white-space: nowrap;
vertical-align: middle;
text-overflow: ellipsis;
}
svg {
height: 14px;
width: 14px;
vertical-align: middle;
&:not(.text-warning) {
fill: $gl-text-color-secondary;
}
}
.sprite {
width: 12px;
height: 12px;
fill: $gl-text-color;
}
.fa {
font-size: 12px;
color: $gl-text-color;
}
.commit-sha {
color: $blue-600;
}
.badge {
margin-right: 4px;
}
.label-container {
font-size: 0;
.badge {
margin-top: 5px;
}
}
}
.duration,
.finished-at {
color: $gl-text-color-secondary;
margin: 0;
white-space: nowrap;
svg {
width: 12px;
height: 12px;
vertical-align: middle;
margin-right: 4px;
}
}
.build-link a {
color: $gl-text-color;
}
}
[data-page='admin:jobs:index'] {
.admin-builds-table {
td:last-child {
min-width: 120px;
}
}
}
.pipelines-container .top-area .nav-controls > .btn:last-child {
float: none;
}
.progress-bar.bg-primary {
background-color: $blue-500 !important;
}
.pipeline-stage-pill {
width: 10rem;
}
.pipeline-job-pill {
width: 8rem;
}
.stage-rounded {
border-radius: 2rem;
}
.stage-left-rounded {
border-radius: 2rem 0 0 2rem;
}
.stage-right-rounded {
border-radius: 0 2rem 2rem 0;
}
|