2019-08-04 21:57:43 +02:00
|
|
|
.widget-choices {
|
|
|
|
ul {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
2018-02-23 15:37:19 +01:00
|
|
|
|
2019-08-04 21:57:43 +02:00
|
|
|
li {
|
|
|
|
padding: 2px;
|
|
|
|
list-style: none;
|
|
|
|
}
|
2018-02-23 15:37:19 +01:00
|
|
|
|
2019-08-04 21:57:43 +02:00
|
|
|
button {
|
|
|
|
font-weight: 700;
|
|
|
|
color: hsl(240, 100%, 50%);
|
|
|
|
}
|
2018-02-23 15:37:19 +01:00
|
|
|
|
2019-08-04 22:02:02 +02:00
|
|
|
.widget-choices-heading {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2018-02-23 15:37:19 +01:00
|
|
|
}
|
2018-05-31 02:00:40 +02:00
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
.todo-widget h4,
|
2018-05-31 02:00:40 +02:00
|
|
|
.poll-widget h4 {
|
2018-07-02 19:57:01 +02:00
|
|
|
font-size: 18px;
|
2018-05-31 02:00:40 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
.todo-widget li,
|
2018-05-31 02:00:40 +02:00
|
|
|
.poll-widget li {
|
|
|
|
list-style: none;
|
2018-06-26 13:30:59 +02:00
|
|
|
margin: 2px 2px 2px 0px;
|
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
.todo-widget ul,
|
2018-06-26 13:30:59 +02:00
|
|
|
.poll-widget ul {
|
|
|
|
margin: 0px 0px 5px 0px;
|
|
|
|
padding: 0;
|
2018-05-31 02:00:40 +02:00
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
.poll-widget .poll-names .todo-widget {
|
|
|
|
font-size: 14px;
|
2018-10-14 21:57:50 +02:00
|
|
|
color: hsl(120, 100%, 25%);
|
2018-05-31 02:00:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.poll-widget .poll-option {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2018-06-26 13:30:59 +02:00
|
|
|
|
|
|
|
.poll-vote {
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(156, 41%, 40%);
|
|
|
|
border-color: hsl(156, 28%, 70%);
|
2018-06-26 13:30:59 +02:00
|
|
|
margin-right: 4px;
|
2018-10-14 21:57:50 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2018-06-26 13:30:59 +02:00
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
button.task {
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
background-color: transparent;
|
2018-10-06 18:49:20 +02:00
|
|
|
border-color: hsl(156, 28%, 70%);
|
2018-07-02 19:57:01 +02:00
|
|
|
margin-right: 4px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.task:hover {
|
2018-10-06 18:49:20 +02:00
|
|
|
border: 1px solid hsl(194, 60%, 40%);
|
2018-07-02 19:57:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button.task-completed {
|
2018-10-06 18:49:20 +02:00
|
|
|
border-color: hsl(157, 18%, 77%);
|
2018-07-02 19:57:01 +02:00
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.task-completed {
|
|
|
|
width: 15px;
|
|
|
|
}
|
|
|
|
|
2018-06-26 13:30:59 +02:00
|
|
|
.poll-vote:hover {
|
2018-10-06 18:49:20 +02:00
|
|
|
border-color: hsl(156, 30%, 50%);
|
2018-06-26 13:30:59 +02:00
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
input.add-task,
|
|
|
|
button.add-task,
|
2019-01-28 19:13:56 +01:00
|
|
|
input.poll-option,
|
|
|
|
button.poll-option,
|
2018-06-27 17:33:30 +02:00
|
|
|
input.poll-question,
|
|
|
|
button.poll-question {
|
2018-06-26 13:30:59 +02:00
|
|
|
padding: 4px 6px;
|
|
|
|
margin: 2px 0px 2px 0px;
|
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
button.add-task,
|
2019-01-28 19:13:56 +01:00
|
|
|
button.poll-option,
|
2018-07-02 19:57:01 +02:00
|
|
|
button.poll-question {
|
2018-06-26 13:30:59 +02:00
|
|
|
border-radius: 3px;
|
2018-10-06 18:49:20 +02:00
|
|
|
border: 1px solid hsl(0, 0%, 80%);
|
2018-10-14 21:57:50 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2018-06-26 13:30:59 +02:00
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
2018-07-02 19:57:01 +02:00
|
|
|
button.add-task:hover,
|
2019-01-28 19:13:56 +01:00
|
|
|
button.poll-option:hover,
|
2018-07-02 19:57:01 +02:00
|
|
|
button.poll-question:hover {
|
2018-10-06 18:49:20 +02:00
|
|
|
border-color: hsl(0, 0%, 60%);
|
2018-06-26 13:30:59 +02:00
|
|
|
}
|
2018-07-02 19:57:01 +02:00
|
|
|
|
|
|
|
.widget-error {
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(1, 45%, 50%);
|
2018-07-02 19:57:01 +02:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
2018-12-22 05:02:36 +01:00
|
|
|
|
|
|
|
.poll-question-check,
|
|
|
|
.poll-question-remove {
|
|
|
|
width: 28px !important;
|
|
|
|
height: 28px;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid hsl(0, 0%, 80%);
|
|
|
|
background-color: hsl(0, 0%, 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-question-check:hover,
|
|
|
|
.poll-question-remove:hover {
|
|
|
|
border-color: hsl(0, 0%, 60%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-edit-question {
|
|
|
|
opacity: 0.4;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-edit-question:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-question-header {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-02-27 07:20:12 +01:00
|
|
|
|
|
|
|
.current-user-vote {
|
|
|
|
background-color: hsla(156, 10%, 90%, .9);
|
|
|
|
}
|