diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-01-07 10:05:00 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-01-07 10:05:00 +0000 |
commit | 66aead8f0763223c8cc949169419febc2e4df453 (patch) | |
tree | c8b09fcb1e38ffb1e6afc97ead9ee00c85009182 /WebContent/ITMILL/themes/default | |
parent | 08d39e620ae57723728e1deffb4e7dff15ee79b4 (diff) | |
download | vaadin-framework-66aead8f0763223c8cc949169419febc2e4df453.tar.gz vaadin-framework-66aead8f0763223c8cc949169419febc2e4df453.zip |
fixes #2415
svn changeset:6427/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes/default')
-rw-r--r-- | WebContent/ITMILL/themes/default/progressindicator/progressindicator.css | 11 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 11 |
2 files changed, 20 insertions, 2 deletions
diff --git a/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css b/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css index ff53ff33b4..360a17db07 100644 --- a/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css +++ b/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css @@ -27,7 +27,16 @@ width: 16px; overflow: hidden; /* for IE6 */ } -.i-progressindicator-disabled-indeterminate { + +/* Hide obsolete elements in indeterminate mode */ +.i-progressindicator-indeterminate .i-progressindicator-wrapper, +.i-progressindicator-indeterminate .i-progressindicator-indicator, +.i-progressindicator-indeterminate-disabled .i-progressindicator-wrapper, +.i-progressindicator-indeterminate-disabled .i-progressindicator-indicator { + display: none; +} + +.i-progressindicator-indeterminate-disabled { background: #dfe2e4 url(../common/img/blank.gif); height: 16px; width: 16px; diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index b7bb7e658e..cb20c81a5c 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -1190,7 +1190,16 @@ input.i-modified, width: 16px; overflow: hidden; /* for IE6 */ } -.i-progressindicator-disabled-indeterminate { + +/* Hide obsolete elements in indeterminate mode */ +.i-progressindicator-indeterminate .i-progressindicator-wrapper, +.i-progressindicator-indeterminate .i-progressindicator-indicator, +.i-progressindicator-indeterminate-disabled .i-progressindicator-wrapper, +.i-progressindicator-indeterminate-disabled .i-progressindicator-indicator { + display: none; +} + +.i-progressindicator-indeterminate-disabled { background: #dfe2e4 url(common/img/blank.gif); height: 16px; width: 16px; |