diff options
4 files changed, 22 insertions, 10 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 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 Binary files differnew file mode 100644 index 0000000000..8661dbf118 --- /dev/null +++ b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/common/img/window-bottom-bg.png 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 Binary files differnew file mode 100644 index 0000000000..7050a00e76 --- /dev/null +++ b/src/com/itmill/toolkit/terminal/gwt/public/component-themes/table/img/selected-bg.png |