mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
fix: Fix markdown styles and card description font size
This commit is contained in:
parent
1bb387d315
commit
3a7e4d2e8f
2 changed files with 14 additions and 4 deletions
|
@ -119,7 +119,6 @@
|
|||
background: transparent;
|
||||
border: none;
|
||||
color: #17394d;
|
||||
font-size: 15px;
|
||||
margin-bottom: 8px;
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -927,16 +927,27 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.markdown-body .task-list-item-checkbox {
|
||||
margin: 0 .2em .25em -1.6em;
|
||||
.markdown-body .task-list-item [type=checkbox] {
|
||||
margin: 0 .2em .25em -18px; // 0 .2em .25em -1.6em
|
||||
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;
|
||||
}
|
||||
|
||||
.markdown-body ::-webkit-calendar-picker-indicator {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue