Browse Source

Nested CommonMark Markdown task lists are not indented (#38215).


git-svn-id: https://svn.redmine.org/redmine/trunk@22083 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/5.1.0
Go MAEDA 1 year ago
parent
commit
17a75612e7
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      public/stylesheets/application.css

+ 3
- 1
public/stylesheets/application.css View File

@@ -1338,9 +1338,11 @@ a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor, h4:hover a.wiki-anchor, h5:hover a.wiki-anchor, h6:hover a.wiki-anchor { display: inline; color: #ddd; }

div.wiki img {vertical-align:middle; max-width:100%;}
div.wiki>.task-list {
padding-left: 0px;
}
div.wiki .task-list {
list-style-type: none;
padding-left: 0px;
}
div.wiki .task-list input.task-list-item-checkbox {
height: initial;

Loading…
Cancel
Save