diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-08-31 09:30:25 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-08-31 09:30:25 +0000 |
commit | 2d5bee93cc8756a1461701d605b7b327d56260a4 (patch) | |
tree | e25c3662a5a430ef3d1adf09d73686d74f52017f | |
parent | 08168c61a7f55b5f5948dcd855c3edd5f1c25462 (diff) | |
download | vaadin-framework-2d5bee93cc8756a1461701d605b7b327d56260a4.tar.gz vaadin-framework-2d5bee93cc8756a1461701d605b7b327d56260a4.zip |
Additional fix for #3247: VPopupView contains hard coded text "Loading..."
-CSS files, forgot to commit
svn changeset:8595/svn branch:6.1
-rw-r--r-- | WebContent/VAADIN/themes/base/popupview/popupview.css | 5 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/base/styles.css | 5 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/styles.css | 5 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/runo/styles.css | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/popupview/popupview.css b/WebContent/VAADIN/themes/base/popupview/popupview.css index f418e1bdc1..14c308a84c 100644 --- a/WebContent/VAADIN/themes/base/popupview/popupview.css +++ b/WebContent/VAADIN/themes/base/popupview/popupview.css @@ -4,4 +4,9 @@ } .v-popupview-popup { overflow: auto; +} +.v-popupview-loading { + width: 30px; + height: 30px; + background: transparent url(../common/img/ajax-loader-medium.gif) no-repeat 50%; }
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/base/styles.css b/WebContent/VAADIN/themes/base/styles.css index 9bdd99a852..b1c32ae254 100644 --- a/WebContent/VAADIN/themes/base/styles.css +++ b/WebContent/VAADIN/themes/base/styles.css @@ -783,6 +783,11 @@ div.v-app-loading { .v-popupview-popup { overflow: auto; } +.v-popupview-loading { + width: 30px; + height: 30px; + background: transparent url(common/img/ajax-loader-medium.gif) no-repeat 50%; +} .v-progressindicator { overflow: hidden; /* for IE6 */ diff --git a/WebContent/VAADIN/themes/reindeer/styles.css b/WebContent/VAADIN/themes/reindeer/styles.css index e67c11f3b2..9ad2888aa1 100644 --- a/WebContent/VAADIN/themes/reindeer/styles.css +++ b/WebContent/VAADIN/themes/reindeer/styles.css @@ -783,6 +783,11 @@ div.v-app-loading { .v-popupview-popup { overflow: auto; } +.v-popupview-loading { + width: 30px; + height: 30px; + background: transparent url(../base/common/img/ajax-loader-medium.gif) no-repeat 50%; +} .v-progressindicator { overflow: hidden; /* for IE6 */ diff --git a/WebContent/VAADIN/themes/runo/styles.css b/WebContent/VAADIN/themes/runo/styles.css index 79dab019b1..e716b4f29d 100644 --- a/WebContent/VAADIN/themes/runo/styles.css +++ b/WebContent/VAADIN/themes/runo/styles.css @@ -783,6 +783,11 @@ div.v-app-loading { .v-popupview-popup { overflow: auto; } +.v-popupview-loading { + width: 30px; + height: 30px; + background: transparent url(../base/common/img/ajax-loader-medium.gif) no-repeat 50%; +} .v-progressindicator { overflow: hidden; /* for IE6 */ |