1
0

Added colors to tasks

This commit is contained in:
kolaente
2019-04-30 22:18:06 +02:00
parent 84b20ef32b
commit cd4dc92a95
6 changed files with 80 additions and 8 deletions

View File

@ -78,8 +78,31 @@ $gantt-vertical-border-color: lighten($grey, 45);
user-select: none; // Non-prefixed version, currently supported by Chrome and Opera
&.is-current-edit {
border-color: $orange;
background: lighten($orange, 40);
border-color: $orange !important;
}
&.has-light-text {
color: $light;
&.done span:after {
border-top: 1px solid $light;
}
.edit-toggle {
color: $light;
}
}
&.has-dark-text {
color: $dark;
&.done span:after {
border-top: 1px solid $dark;
}
.edit-toggle {
color: $dark;
}
}
&.done span {
@ -87,7 +110,6 @@ $gantt-vertical-border-color: lighten($grey, 45);
&:after {
content: '';
border-top: 1px solid $dark;
position: absolute;
right: 0;
left: 0;