1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

fix: Fix markdown styles and card description font size

This commit is contained in:
Maksim Eltyshev 2023-01-10 16:38:19 +01:00
parent a35f26f607
commit f36c35a49a
2 changed files with 14 additions and 4 deletions

View file

@ -119,7 +119,6 @@
background: transparent; background: transparent;
border: none; border: none;
color: #17394d; color: #17394d;
font-size: 15px;
margin-bottom: 8px; margin-bottom: 8px;
outline: none; outline: none;
overflow: hidden; overflow: hidden;

View file

@ -927,16 +927,27 @@
display: none; display: none;
} }
.markdown-body .task-list-item-checkbox { .markdown-body .task-list-item [type=checkbox] {
margin: 0 .2em .25em -1.6em; margin: 0 .2em .25em -18px; // 0 .2em .25em -1.6em
vertical-align: middle; vertical-align: middle;
} }
.markdown-body .contains-task-list:dir(rtl) .task-list-item-checkbox { .markdown-body .contains-task-list:dir(rtl) .task-list-item [type=checkbox] {
margin: 0 -1.6em .25em .2em; margin: 0 -1.6em .25em .2em;
} }
.markdown-body ::-webkit-calendar-picker-indicator { .markdown-body ::-webkit-calendar-picker-indicator {
filter: invert(50%); filter: invert(50%);
} }
.markdown-body .sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
} }