Merge pull request #1117 from adomasven/fix/google-docs-hanging-indent

Change padding-left to margin-left property for hanging indent
This commit is contained in:
Dan Stillman 2016-11-03 09:32:05 -04:00 committed by GitHub
commit 499da5ca3d

View file

@ -206,7 +206,7 @@ Zotero.Cite = {
} }
// If only one field, apply hanging indent on root // If only one field, apply hanging indent on root
else if (!multiField) { else if (!multiField) {
style += "padding-left: " + hangingIndent + "em; text-indent:-" + hangingIndent + "em;"; style += "margin-left: " + hangingIndent + "em; text-indent:-" + hangingIndent + "em;";
} }
} }