1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-27 18:27:43 +00:00

Small padding/margin improvement

This commit is contained in:
M66B 2023-02-23 14:41:33 +01:00
parent a372d12ba4
commit 6a14b91f55

View file

@ -981,7 +981,7 @@ public class HtmlHelper {
// https://developer.mozilla.org/en-US/docs/Web/CSS/margin
// https://developer.mozilla.org/en-US/docs/Web/CSS/padding
if (element.isBlock()) {
Float[] p = new Float[4];
Float[] p = new Float[4]; // top, right, bottom, left
String[] v = value.split(" ");
for (int i = 0; i < v.length && i < p.length; i++)
@ -992,8 +992,12 @@ public class HtmlHelper {
p[2] = p[0];
p[3] = p[0];
} else if (v.length == 2) {
// top and bottom, left and right
p[2] = p[0];
p[3] = p[1];
} else if (v.length == 3) {
// top, right and left, bottom
p[3] = p[1];
}
if (key.endsWith("top"))