From 37f4a215df96404a561019dd491b86d61040c109 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 10 Dec 2013 09:49:05 +0200 Subject: [PATCH] Specify box sizing. --- css/application.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/application.css b/css/application.css index b455ed5..7604e07 100644 --- a/css/application.css +++ b/css/application.css @@ -199,12 +199,18 @@ strong { } .license-details { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; float: left; width: 55%; padding-left: 20px; } .license-variations { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; height: 31px; padding-top: 23px; margin-left: -10px; @@ -242,6 +248,9 @@ strong { } .license-rules .name { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; border-right: solid 1px #d9d7d2; padding-left: 0; width: 280px;