Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/daemon/bulk-job.css
13459 views
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
}
33
34