You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
All: Fixes #1325: Fixed nested checkbox indentation
This commit is contained in:
@ -170,9 +170,15 @@ module.exports = function(style, options) {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Remove the indentation from the checkboxes at the root of the document
|
||||
(otherwise they are too far right), but keep it for their children to allow
|
||||
nested lists */
|
||||
#rendered-md > ul > li.md-checkbox {
|
||||
margin-left: -` + listMarginLeft + `;
|
||||
}
|
||||
|
||||
li.md-checkbox {
|
||||
list-style-type: none;
|
||||
margin-left: -` + listMarginLeft + `;
|
||||
}
|
||||
|
||||
li.md-checkbox input[type=checkbox] {
|
||||
|
Reference in New Issue
Block a user