diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-25 14:08:23 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-25 14:08:23 +0000 |
commit | 3e6b6f6dcf8736f106c855033c0bd2a109feac50 (patch) | |
tree | f154e1568a3b4850ba92ee5f20bfa27480b65943 /WebContent/VAADIN/themes/base/common/common.css | |
parent | d45fb590e57d55b12635626fb4ca59828e2805d2 (diff) | |
download | vaadin-framework-3e6b6f6dcf8736f106c855033c0bd2a109feac50.tar.gz vaadin-framework-3e6b6f6dcf8736f106c855033c0bd2a109feac50.zip |
Refactored loading indicator to be common for both runo and reindeer themes.
Added progress indicator styles to reindeer (copied from runo).
svn changeset:7997/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN/themes/base/common/common.css')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.css b/WebContent/VAADIN/themes/base/common/common.css index 3ed9b8daad..68052dc36f 100644 --- a/WebContent/VAADIN/themes/base/common/common.css +++ b/WebContent/VAADIN/themes/base/common/common.css @@ -9,9 +9,12 @@ .v-app { height: 100%; } -.v-app-loading { +div.v-app-loading { /* You can use this to provide indication for the user that the application is loading. */ /* It is applied to the same element as .v-app */ + background-image: url(img/loading-indicator.gif); + background-repeat: no-repeat; + background-position: 50%; } .v-view { height: 100%; @@ -145,11 +148,21 @@ .v-loading-indicator, .v-loading-indicator-delay, .v-loading-indicator-wait { - height: 16px; position: absolute; top: 0; right: 0; z-index: 30000; + width: 31px; + height: 31px; + background: transparent url(img/loading-indicator.gif); + margin-right: 5px; + margin-top: 5px; +} +.v-loading-indicator-delay { + background-image: url(img/loading-indicator-delay.gif); +} +.v-loading-indicator-wait { + background-image: url(img/loading-indicator-wait.gif); } /* Debug dialog */ .v-debug-console { |