From 3f019d4447e7e97b5045a5486537fa7c50050e1e Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Mon, 18 Mar 2013 13:16:58 +0100 Subject: [PATCH] style bugfix for chrome < 27 --- chromesoul.css | 4 ++++ manifest.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/chromesoul.css b/chromesoul.css index d423e6a..7636075 100644 --- a/chromesoul.css +++ b/chromesoul.css @@ -110,6 +110,8 @@ body { padding: 10px; width: calc(100% - 230px); height: calc(100% - 155px); + width: -webkit-calc(100% - 230px); + height: -webkit-calc(100% - 155px); } #main-ctn > * { @@ -191,10 +193,12 @@ body { margin: 2px 1px; padding: 0; height: calc(100% - 20px); + height: -webkit-calc(100% - 20px); } .tab-body { height: calc(100% - 35px); + height: -webkit-calc(100% - 35px); } .chat-log { diff --git a/manifest.json b/manifest.json index b18f5e7..ec2be90 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "Chromesoul", - "version": "0.5.1", + "version": "0.5.2", "minimum_chrome_version": "25", "manifest_version": 2, "offline_enabled": false,