diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-02-05 10:25:43 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-02-05 10:25:43 +0000 |
commit | a3fc110d4bbe7e1ece5a1516cc3453704c760d78 (patch) | |
tree | 597388af7ccf594484c20f6b5ab234dba6fa63c8 /WebContent/ITMILL/themes | |
parent | 645b03853a656b49d1d49f4081a3ef98851baf7c (diff) | |
download | vaadin-framework-a3fc110d4bbe7e1ece5a1516cc3453704c760d78.tar.gz vaadin-framework-a3fc110d4bbe7e1ece5a1516cc3453704c760d78.zip |
fixes #2482, moved loading indicator to right side. Other fixes not too easy with IE and css only
svn changeset:6737/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes')
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 4 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/tabsheet/tabsheet.css | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 0a429ee348..01afcc290a 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -2186,9 +2186,11 @@ input.i-modified, /* Progress indication */ .i-tabsheet-loading .i-tabsheet-tabitem-selected .i-captiontext { - background: transparent url(common/img/ajax-loader.gif) no-repeat; + background: transparent url(common/img/ajax-loader.gif) no-repeat top right; margin-left: -10px; padding-left: 10px; + margin-right: -10px; + padding-right: 10px; margin-top: -12px; padding-top: 12px; } diff --git a/WebContent/ITMILL/themes/default/tabsheet/tabsheet.css b/WebContent/ITMILL/themes/default/tabsheet/tabsheet.css index 54e5be2933..2c0b5032b1 100644 --- a/WebContent/ITMILL/themes/default/tabsheet/tabsheet.css +++ b/WebContent/ITMILL/themes/default/tabsheet/tabsheet.css @@ -166,9 +166,11 @@ /* Progress indication */ .i-tabsheet-loading .i-tabsheet-tabitem-selected .i-captiontext { - background: transparent url(../common/img/ajax-loader.gif) no-repeat; + background: transparent url(../common/img/ajax-loader.gif) no-repeat top right; margin-left: -10px; padding-left: 10px; + margin-right: -10px; + padding-right: 10px; margin-top: -12px; padding-top: 12px; } |