1
0

Labels on tasks (#25)

This commit is contained in:
konrad
2019-03-07 19:48:40 +00:00
committed by Gitea
parent ae499fd8a0
commit f7a17e45bc
17 changed files with 528 additions and 78 deletions

15
src/styles/labels.scss Normal file
View File

@ -0,0 +1,15 @@
.labels-list {
a, a:hover{
text-decoration: none;
}
.tag{
margin: 0.5em;
background: darken($background, 5);
&.disabled{
opacity: 0.7;
cursor: default;
}
}
}

View File

@ -66,6 +66,10 @@
color: $orange;
}
}
.tag {
margin: 0 0.5em;
}
}
input[type="checkbox"] {
@ -139,4 +143,13 @@
}
}
}
.tag{
margin-right: 0.5em;
margin-bottom: 0.5em;
&:last-child{
margin-right: 0;
}
}
}