From 2587ef9511fe524eccea27f3f05f6b10f40b714d Mon Sep 17 00:00:00 2001 From: Jack Allnutt Date: Wed, 16 Nov 2011 14:43:54 +0000 Subject: [PATCH] Fix for Firefox 8 bug; add wrapper around the input msgbox --- client/css/default.css | 15 ++++++++++++--- client/index.html.jade | 3 ++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/client/css/default.css b/client/css/default.css index e724cd0..d244069 100644 --- a/client/css/default.css +++ b/client/css/default.css @@ -242,12 +242,21 @@ background-image: -moz-linear-gradient( } #kiwi .control .nick { text-align: right; width:11em; position:absolute; padding:2px; } #kiwi .control .nick a { text-decoration:none; } -#kiwi .control input { +#kiwi .control #kiwi_msginput_wrapper { border:none; - position:absolute; right:5px; left: 14.2em; - padding: 2px 0px; height:1.7em; + position:absolute; + right:5px; + left: 12.2em; + /*padding: 2px 0px;*/ + height:1.7em; outline:none; } +#kiwi .control input { + width: 100%; + height: 100%; + position: relative; + border: medium none; +} #kiwi .control .plugins { margin:3px; margin-top:7px; } #kiwi .control .plugins ul li { display:inline; font-size:0.8em; margin-left:1em; diff --git a/client/index.html.jade b/client/index.html.jade index b351a84..5025728 100644 --- a/client/index.html.jade +++ b/client/index.html.jade @@ -102,7 +102,8 @@ html(lang="en-gb") div.nick a | : - input(type="text", name="kiwi_msginput", id="kiwi_msginput") + div#kiwi_msginput_wrapper + input#kiwi_msginput(type="text", name="kiwi_msginput") div.plugins ul li -- 2.25.1