Files
habitica/website/client/assets/scss/task.scss
T
Matteo Pagliazzi 6fb4c1b576 Client Tasks v1 (#8823)
* remove unused elements from tasks page

* remove components

* client: tasks: wip

* tasks: order, start styling them

* more tasks works

* habits controls

* more work

* tasks icons

* split columns in their own component

* implement tags for tasks

* wip

* add columns description
2017-06-26 23:55:14 +02:00

86 lines
1.3 KiB
SCSS

.task {
// for editing rewards or when a task is created
&-purple {
background: $purple-300;
}
&-worst {
background: $maroon-100;
&-control {
background: darken($maroon-100, 12%);
}
}
&-worse {
background: $red-100;
&-control {
background: darken($red-100, 12%);
}
}
&-bad {
background: $orange-100;
&-control {
background: darken($orange-100, 12%);
}
}
&-neutral {
background: $yellow-50;
&-control {
background: darken($yellow-50, 12%);
}
}
&-good {
background: $green-10;
&-control {
background: darken($green-10, 12%);
}
}
&-better {
background: $blue-50;
&-control {
background: darken($blue-50, 12%);
}
}
&-best {
background: $teal-50;
&-control {
background: darken($teal-50, 12%);
}
}
&-reward {
background: rgba($yellow-500, 0.26);
}
&-daily-todo-disabled {
background: $gray-500;
&-control {
background: $gray-400;
color: $gray-200;
}
}
&-daily-todo-content-disabled {
background: $gray-600;
* {
color: $gray-300 !important;
}
}
&-habit-disabled {
background: $gray-700;
color: rgba(0, 0, 0, 0.12);
&-control {
color: rgba(0, 0, 0, 0.12) !important;
border: 1px solid rgba(0, 0, 0, 0.12);
}
}
}