Files
spacedrive/interface/app/$libraryId/Layout/Sidebar/JobManager/Job.scss
ameer2468 0a4c1f41e7 Job Manager improvement & refactor (#783)
* d

* wip

* Nit: margin and padding tweak

* UI design tweaks

* Update Job.tsx

* Improve UI

* [WIP] - Refactor job manager

* remove invalidate explorer event on thumb generation. the event above performs atomic updates on the front end when new thumbnails are generated, now just need to make that work

* prettier formatting + removed unused imports

* UI tweaks

* progress bar width adjustment

* tweaks

* fix em

* fix thumbnail generation

* fix progress bar

* fix time

---------

Co-authored-by: Jamie Pine <ijamespine@me.com>
Co-authored-by: Brendan Allan <brendonovich@outlook.com>
Co-authored-by: Oscar Beaumont <oscar@otbeaumont.me>
2023-05-08 22:31:49 +00:00

55 lines
868 B
SCSS

ul.groupedjob {
position: relative;
&::before {
position: absolute;
z-index: 10;
top: 37px;
height: 48.75px;
width: 11px;
border-left: 1px solid rgba(50, 51, 67, 1);
content: '';
left: 25px;
}
}
.removelistdot {
list-style: none;
}
.joblistitem {
position: relative;
&:last-child {
padding-bottom: 12px;
&::after {
position: absolute;
z-index: 10;
height: 37.5px;
top: 0;
width: 10px;
border-left: 1px solid rgba(50, 51, 67, 1);
content: '';
left: 25px;
}
}
&::before {
position: relative;
top: 23.5px;
height: 1em;
width: 10px;
border-bottom: 1px solid rgba(50, 51, 67, 1);
content: '';
display: inline-block;
left: 10px;
}
&::after {
position: absolute;
z-index: 10;
height: 100%;
top: 0;
width: 10px;
border-left: 1px solid rgba(50, 51, 67, 1);
content: '';
left: 25px;
}
}