Set fixed width for date in task body

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
Raimund Schlüßler 2020-03-06 11:30:10 +01:00
parent 5ff4e51e43
commit 75bc10497c
No known key found for this signature in database
GPG key ID: 036FA7EB1A599178
2 changed files with 9 additions and 1 deletions

View file

@ -587,6 +587,14 @@
&.overdue {
color: $red_overdue;
}
span {
overflow: hidden;
text-align: right;
text-overflow: ellipsis;
white-space: nowrap;
width: 60px;
}
}
.calendar {

View file

@ -83,7 +83,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<span class="icon icon-sprt-bw sprt-note" />
</div>
<div v-if="task.due" :class="{overdue: overdue(task.dueMoment)}" class="duedate">
{{ dueDateString }}
<span>{{ dueDateString }}</span>
</div>
<Actions class="reactive no-nav" menu-align="right">
<ActionButton v-if="!task.calendar.readOnly"