diff options
author | Stephen Kraus <8003332+stephenmk@users.noreply.github.com> | 2022-08-14 12:30:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 13:30:25 -0400 |
commit | c331ceae997a49e3c7125853c2225964dc17749b (patch) | |
tree | 26548d26ac79f18ac02c12004246584d890d5d0f /ext/js | |
parent | 289a61a62fd5cb41223ef639b1e83e290e1a9c77 (diff) |
Add new structured content styling options (#2203)
Allow for arbitrary string assignment to the font-size property.
https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
Add support for the text-align property.
https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
Co-authored-by: stephenmk <stephenmk@users.noreply.github.com>
Diffstat (limited to 'ext/js')
-rw-r--r-- | ext/js/display/sandbox/structured-content-generator.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/js/display/sandbox/structured-content-generator.js b/ext/js/display/sandbox/structured-content-generator.js index 0e287dc2..bf9c1fb2 100644 --- a/ext/js/display/sandbox/structured-content-generator.js +++ b/ext/js/display/sandbox/structured-content-generator.js @@ -265,6 +265,7 @@ class StructuredContentGenerator { fontSize, textDecorationLine, verticalAlign, + textAlign, marginTop, marginLeft, marginRight, @@ -275,6 +276,7 @@ class StructuredContentGenerator { if (typeof fontWeight === 'string') { style.fontWeight = fontWeight; } if (typeof fontSize === 'string') { style.fontSize = fontSize; } if (typeof verticalAlign === 'string') { style.verticalAlign = verticalAlign; } + if (typeof textAlign === 'string') { style.textAlign = textAlign; } if (typeof textDecorationLine === 'string') { style.textDecoration = textDecorationLine; } else if (Array.isArray(textDecorationLine)) { |