fixed layout issues due to missing box-sizing properties.
authorJean-Philippe Orsini <jeanfi@gmail.com>
Sat, 1 Nov 2014 13:54:09 +0000 (14:54 +0100)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Sat, 1 Nov 2014 13:54:09 +0000 (14:54 +0100)
NEWS
themes/default/css/wpitchoune.css

diff --git a/NEWS b/NEWS
index 66630a0..d3bd375 100644 (file)
--- 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
 ------
index 32cb5d0..a69791e 100644 (file)
@@ -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;