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:
parent
a35f26f607
commit
f36c35a49a
2 changed files with 14 additions and 4 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue