Added task overview

This commit is contained in:
kolaente 2018-11-06 15:54:25 +01:00
parent d27b5d6870
commit 23dc41b501
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
3 changed files with 91 additions and 47 deletions

View file

@ -149,4 +149,46 @@ h1,h2,h3,h4,h5,h6{
.buttonright {
margin-right: 0.5rem;
}
.tasks {
margin-top: 1rem;
padding: 0;
text-align: left;
.task {
display: block;
padding: 0.5rem 1rem;
border-bottom: 1px solid darken(#fff, 10%);
label{
width: 96%;
display: inline-block;
cursor: pointer;
}
input[type="checkbox"] {
vertical-align: middle;
}
.settings{
float: right;
width: 4%;
cursor: pointer;
}
}
.task:last-child {
border-bottom: none;
}
}
.taskedit{
min-height: calc(100% - 1rem);
margin-top: 1rem;
}
.settings{
float: right;
color: rgb(74, 74, 74);
}