mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
33 lines
502 B
CSS
33 lines
502 B
CSS
|
/**
|
||
|
* @provides bulk-job-css
|
||
|
*/
|
||
|
|
||
|
.bulk-job-progress-bar {
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
border: 1px solid {$lightgreyborder};
|
||
|
height: 32px;
|
||
|
}
|
||
|
|
||
|
.bulk-job-progress-slice {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
|
||
|
.bulk-job-progress-slice-green {
|
||
|
background-color: {$green};
|
||
|
}
|
||
|
|
||
|
.bulk-job-progress-slice-blue {
|
||
|
background-color: {$blue};
|
||
|
}
|
||
|
|
||
|
.bulk-job-progress-slice-red {
|
||
|
background-color: {$red};
|
||
|
}
|
||
|
|
||
|
.bulk-job-progress-slice-empty {
|
||
|
background-color: {$lightbluebackground};
|
||
|
}
|