mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
try to fix incorrect arrow in duedate due to font issues on linux and android
This commit is contained in:
parent
c5b73b17d6
commit
266a01a86b
1 changed files with 7 additions and 1 deletions
|
|
@ -518,7 +518,10 @@ li.task-row.task-expanded .task-toggle { transform:rotate(90deg); }
|
|||
.task-tags { padding:0px 2px; }
|
||||
.task-tags .tag { font-size:0.9rem; font-weight:bold; color: var(--color-tasklist-tag); text-decoration:underline; }
|
||||
.duedate { color:var(--color-duedate-default); padding:0px; padding-left:1px; margin-left:5px; white-space:nowrap; }
|
||||
.duedate:before { content:'\2192\20'; }
|
||||
.duedate:before {
|
||||
content:'\2192\20';
|
||||
font-family: -apple-system, "DejaVu Sans", serif;
|
||||
}
|
||||
li.task-row.task-completed .duedate { /*font-size:0.8rem;*/ display:none; }
|
||||
#tasklist li.task-row.soon .duedate { color: var(--color-duedate-soon); }
|
||||
#tasklist li.task-row.today .duedate { color: var(--color-duedate-today); }
|
||||
|
|
@ -1017,6 +1020,9 @@ li.mtt-item-hidden { display:none; }
|
|||
-webkit-mask-origin: content-box;
|
||||
visibility: visible;
|
||||
}
|
||||
.duedate:before {
|
||||
content:'\279d\20'; /* Use another arrow, because Rightwards Arrow U+2192 is ugly in Noto font used in some Androids */
|
||||
}
|
||||
|
||||
#tasklist li.task-row .task-through { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
|
||||
#tasklist li.task-row.task-expanded .task-note-block { display:none; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue