Fix related tasks list spacing
This commit is contained in:
parent
57d0609577
commit
dc4f85e808
1 changed files with 21 additions and 6 deletions
|
@ -1,3 +1,5 @@
|
|||
$remove-icon-width: 24px;
|
||||
|
||||
.task-relations {
|
||||
padding-bottom: 1em;
|
||||
|
||||
|
@ -20,6 +22,9 @@
|
|||
.tasks {
|
||||
margin: 0;
|
||||
|
||||
a:not(.remove) {
|
||||
width: calc(100% - #{$remove-icon-width});
|
||||
|
||||
.task {
|
||||
padding: .5em;
|
||||
max-width: 100%;
|
||||
|
@ -30,6 +35,16 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.task .tasktext {
|
||||
width: calc(100% - .25rem); // Magic .25rem extra space
|
||||
}
|
||||
|
||||
.remove {
|
||||
width: $remove-icon-width;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.none {
|
||||
|
|
Loading…
Reference in a new issue