Labels on tasks (#25)
This commit is contained in:
parent
ae499fd8a0
commit
f7a17e45bc
17 changed files with 528 additions and 78 deletions
15
src/styles/labels.scss
Normal file
15
src/styles/labels.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue