From 1c852a4d9db5835b05b321a0188ed6739647457d Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Sat, 1 Nov 2014 14:54:09 +0100 Subject: [PATCH] fixed layout issues due to missing box-sizing properties. --- NEWS | 1 + themes/default/css/wpitchoune.css | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 66630a0..d3bd375 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ v1.3.2 * fixed compilation against newer version of json-c (deprecation of the function json_object_object_get). +* fixed layout issues due to missing box-sizing properties. v1.3.1 ------ diff --git a/themes/default/css/wpitchoune.css b/themes/default/css/wpitchoune.css index 32cb5d0..a69791e 100644 --- a/themes/default/css/wpitchoune.css +++ b/themes/default/css/wpitchoune.css @@ -118,6 +118,7 @@ table { background: #ffffff; -moz-box-sizing: border-box; + box-sizing: border-box; padding: 1em 1em 1em 1em; @@ -151,7 +152,8 @@ table { margin: 0em 0em 2em 0em; background: #ffffff; - -moz-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; padding: 2em 2em 2em 2em; -moz-border-radius: 4px; -- 2.7.4