From: Jouni Koivuviita Date: Tue, 17 Jul 2007 07:27:06 +0000 (+0000) Subject: Totally useless decoration added to theme. X-Git-Tag: 6.7.0.beta1~6170 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=19844f47fa2c6b2e06c306cdf20b60daeb18e4e3;p=vaadin-framework.git Totally useless decoration added to theme. svn changeset:1862/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/css/common.css b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/css/common.css index 2674cf6134..823b14abd4 100644 --- a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/css/common.css +++ b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/css/common.css @@ -4,6 +4,14 @@ body { color: #222; font-size: 68.75%; line-height: 1.4em; + padding: 0; + margin: 0; +} + +#itmtk-ajax-window { + background: transparent url(../img/window-bottom-bg.png) no-repeat right bottom; + height: 100%; + padding: 0 8px; } input, select, textarea, button { @@ -19,9 +27,9 @@ select { .i-disabled { opacity: 0.3; filter: alpha(opacity:30); -} - -.i-contextmenu { - background: #fff; - border: #000; +} + +.i-contextmenu { + background: #fff; + border: #000; } \ No newline at end of file diff --git a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.png b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.png new file mode 100644 index 0000000000..8661dbf118 Binary files /dev/null and b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.png differ diff --git a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/css/table.css b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/css/table.css index 0e8dde9cd6..66ac0ce4f8 100644 --- a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/css/table.css +++ b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/css/table.css @@ -85,12 +85,13 @@ border: 0; margin: 0; padding: 0; + height: 20px; } .i-table .i-odd { background-color: #f1f5f9; } .i-table .i-selected { - background: #466fa7; + background: #375f98 url(../img/selected-bg.png) repeat-x; color: #fff; } @@ -116,18 +117,21 @@ } .i-table-focus-slot-left { - border-left: 2px solid blue; + border-left: 2px solid #375f98; margin-right: -2px; } .i-table-focus-slot-right { - border-right: 2px solid blue; + border-right: 2px solid #375f98; margin-left: -2px; } .i-table-header-drag { position: absolute; - background: #000; - color: #fff; + background: #e7edf3 url(../img/header-bg.png) repeat-x; + border: 1px solid #375f98; + padding: 4px; + color: #1c3e6e; + font-weight: bold; opacity: 0.5; filter: alpha(opacity=50); } diff --git a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/img/selected-bg.png b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/img/selected-bg.png new file mode 100644 index 0000000000..7050a00e76 Binary files /dev/null and b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/img/selected-bg.png differ