@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1/**
2 * @provides bulk-job-css
3 */
4
5.bulk-job-progress-bar {
6 position: relative;
7 width: 100%;
8 border: 1px solid {$lightgreyborder};
9 height: 32px;
10}
11
12.bulk-job-progress-slice {
13 position: absolute;
14 top: 0;
15 bottom: 0;
16}
17
18.bulk-job-progress-slice-green {
19 background-color: {$green};
20}
21
22.bulk-job-progress-slice-blue {
23 background-color: {$blue};
24}
25
26.bulk-job-progress-slice-red {
27 background-color: {$red};
28}
29
30.bulk-job-progress-slice-empty {
31 background-color: {$lightbluebackground};
32}