From: Jouni Koivuviita Date: Wed, 11 Jul 2007 07:23:21 +0000 (+0000) Subject: Fixes Safari tabsheet render bug (additional one pixel table offset). X-Git-Tag: 6.7.0.beta1~6187 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bf22602607bc28cfb665855b2a707a44c2cc4470;p=vaadin-framework.git Fixes Safari tabsheet render bug (additional one pixel table offset). svn changeset:1838/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/tabsheet/css/tabsheet.css b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/tabsheet/css/tabsheet.css index 582039d79c..fb8750b028 100644 --- a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/tabsheet/css/tabsheet.css +++ b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/tabsheet/css/tabsheet.css @@ -81,12 +81,20 @@ - - - .i-tabsheet-content { background-color: #fff; border: solid 1px #29528a; border-top: none; padding: 5px; +} + +/* Fix Safari bug (one pixel table offset) */ +.i-tabsheet-content { + margin-left: 1px; +} +.i-tabsheet-tabs .gwt-TabBarFirst { + display: block; + width: 1px; + height: 1px; + overflow: hidden; } \ No newline at end of file