22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
-
+
-
+
|
for action in build tests; do
for status in pass fail; do
for platform in "${platforms[@]}"; do
tag="${action}-${status}-${platform}"
cat << _EOF_
.timelineTableCell a[href*="/timeline?r=${tag}&"] {
background: url("$(infoToStatusImageURL "${action}" "${status}" "${platform}")");
width: 120px;
width: 56px;
height: 20px;
background-size: 120px 20px;
background-size: 56px 20px;
background-repeat: no-repeat;
color: rgba(0,0,0,0);
display: inline-block;
text-indent: -65536px;
}
_EOF_
done
done
done
exit 0
|