mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 11:10:04 +00:00
41 lines
No EOL
628 B
SCSS
41 lines
No EOL
628 B
SCSS
progress-bar {
|
|
position: absolute !important;
|
|
width: 0;
|
|
height: 4px;
|
|
display: block;
|
|
left: 0;
|
|
pointer-events: none;
|
|
max-width: 100%;
|
|
background-color: #aaaaaa;
|
|
z-index: 2;
|
|
|
|
@include dark-theme {
|
|
background-color: #999999;
|
|
}
|
|
|
|
&:before,
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 50%;
|
|
right: -1px;
|
|
transform: translateY(50%);
|
|
background: inherit;
|
|
width: 2px;
|
|
height: 9px;
|
|
border: 1px solid inherit;
|
|
}
|
|
|
|
&:before {
|
|
right: auto;
|
|
left: -1px;
|
|
}
|
|
|
|
.task.is-done & {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.task.is-current & {
|
|
background-color: $green;
|
|
}
|
|
} |