From cefda46a44d7b7a0fee10ca8b208e1e17e0918ff Mon Sep 17 00:00:00 2001 From: 0ip Date: Wed, 29 Feb 2012 12:54:44 +0100 Subject: [PATCH 1/2] fixes #520, sideeffect: looks bad now using Chrome --- static/css/pad.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/static/css/pad.css b/static/css/pad.css index fe188e47..24421069 100644 --- a/static/css/pad.css +++ b/static/css/pad.css @@ -1118,12 +1118,6 @@ width:33px !important; word-wrap: break-word; } -/* fix for misaligned labels */ -label { - position: relative; - bottom: 1px; -} - .right { float:right; } From 43e90c7470f3133cb7f6b4093bfd47f1624a2622 Mon Sep 17 00:00:00 2001 From: 0ip Date: Wed, 29 Feb 2012 13:17:35 +0100 Subject: [PATCH 2/2] cross-browser compatible solution + removed some resizing stuff --- static/css/pad.css | 39 +++++---------------------------------- 1 file changed, 5 insertions(+), 34 deletions(-) diff --git a/static/css/pad.css b/static/css/pad.css index 24421069..969d0027 100644 --- a/static/css/pad.css +++ b/static/css/pad.css @@ -878,40 +878,6 @@ ul#colorpickerswatches li:hover margin-left: 3px; margin-right: 3px; margin-top:2px; -} - - -/* resizable stuff for chat */ -.ui-resizable { -position: relative; -} -.ui-resizable-handle { - position: absolute; - font-size: 0.1px; - z-index: 99999; - display: block; - -} - -.ui-resizable-nw { - background-image: url("../../static/img/etherpad_lite_icons.png"); - background-position: 0 -416px; - background-repeat: no-repeat; - background-size: 100% auto; - cursor: nw-resize; - height: 17px; - left: 3px; - top: 3px; - width: 17px; -} - -.ui-resizable-ne -{ - cursor: ne-resize; - width: 9px; - height: 9px; - right: -5px; - top: -5px; } .exporttype{ @@ -1118,6 +1084,11 @@ width:33px !important; word-wrap: break-word; } +/* fix for misaligned checkboxes */ +input[type=checkbox] { + vertical-align: -1px; +} + .right { float:right; }