1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/* Task lists item */
.task-lists-item:drop(active) {
background-color: @blue_2;
}
.task-blue {
background: darker(#3584e4);
}
.progressbar-blue progress,
.checkbtn-blue check:checked {
background-color: @blue_2;
}
.task-green {
background: darker(#33d17a);
}
.progressbar-green progress,
.checkbtn-green check:checked {
background-color: @green_3;
}
.task-yellow {
background: darker(#f5c211);
}
.progressbar-yellow progress,
.checkbtn-yellow check:checked {
background-color: @yellow_4;
}
.task-orange {
background: darker(#ff7800);
}
.progressbar-orange progress,
.checkbtn-orange check:checked {
background-color: @orange_2;
}
.task-red {
background: darker(#e01b24);
}
.progressbar-red progress,
.checkbtn-red check:checked {
background-color: @red_1;
}
.task-purple {
background: darker(#9141ac);
}
.progressbar-purple progress,
.checkbtn-purple check:checked {
background-color: @purple_2;
}
.task-brown {
background: #986a44;
}
.progressbar-brown progress,
.checkbtn-brown check:checked {
background-color: @brown_1;
}
.tag {
background-color: alpha(white, 0.25);
}
link {
color: white;
}
|