commit 499da5ca3d0a1e0ad640f0d66a6fffe3ea898d73 parent 2c014a9af1160d4a192eb89a24466009225a3edf Author: Dan Stillman <dstillman@zotero.org> Date: Thu, 3 Nov 2016 09:32:05 -0400 Merge pull request #1117 from adomasven/fix/google-docs-hanging-indent Change padding-left to margin-left property for hanging indent Diffstat:
| M | chrome/content/zotero/xpcom/cite.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js @@ -206,7 +206,7 @@ Zotero.Cite = { } // If only one field, apply hanging indent on root else if (!multiField) { - style += "padding-left: " + hangingIndent + "em; text-indent:-" + hangingIndent + "em;"; + style += "margin-left: " + hangingIndent + "em; text-indent:-" + hangingIndent + "em;"; } }