diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2007-07-17 08:07:40 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2007-07-17 08:07:40 +0000 |
commit | 2b666eb05f7a3faf454c3654168fa3e6f7cf62f3 (patch) | |
tree | 01fb01737a7a80670f7d626ab2fe4e0cad2a0092 /src | |
parent | 19844f47fa2c6b2e06c306cdf20b60daeb18e4e3 (diff) | |
download | vaadin-framework-2b666eb05f7a3faf454c3654168fa3e6f7cf62f3.tar.gz vaadin-framework-2b666eb05f7a3faf454c3654168fa3e6f7cf62f3.zip |
Totally useless decorations modified.
svn changeset:1863/svn branch:trunk
Diffstat (limited to 'src')
4 files changed, 13 insertions, 6 deletions
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 823b14abd4..393b5733d4 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 @@ -1,17 +1,15 @@ body {
- background: #fafafc url(../img/window-bg.png) repeat-x;
+ background: #fafafc url(../img/window-bottom-bg.gif) no-repeat right bottom fixed;
font-family: helvetica, arial, tahoma, verdana, sans-serif;
color: #222;
font-size: 68.75%;
line-height: 1.4em;
- padding: 0;
+ padding: 8px;
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 {
diff --git a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.gif b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.gif Binary files differnew file mode 100644 index 0000000000..150e849d19 --- /dev/null +++ b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.gif 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 Binary files differdeleted file mode 100644 index 8661dbf118..0000000000 --- a/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.png +++ /dev/null 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 66ac0ce4f8..18e547b1e2 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 @@ -37,13 +37,17 @@ border: 0;
}
-.i-table-header table td,
+.i-table-header td,
.i-table-table td {
margin:0;
padding:0;
border:0;
}
+.i-table-header td {
+ cursor: pointer;
+}
+
.i-table-resizer {
display: block;
height: 26px;
@@ -86,6 +90,11 @@ margin: 0;
padding: 0;
height: 20px;
+ cursor: pointer;
+}
+.i-table-row:hover,
+.i-table .i-odd:hover {
+ background-color: #d3dfee;
}
.i-table .i-odd {
background-color: #f1f5f9;
|