mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 22:26:06 +02:00
Small padding/margin improvement
This commit is contained in:
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user