diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-14 11:13:44 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-14 11:13:44 +0000 |
commit | b1097e1f345a4c8fe2e166cd1da7a4760c90c146 (patch) | |
tree | d150b9edecc2d51a4139774181678b9cb9a720ca /WebContent/VAADIN/themes/reindeer/button | |
parent | 13f2032ee97138ad555ac5792cb3fada68c5c12d (diff) | |
download | vaadin-framework-b1097e1f345a4c8fe2e166cd1da7a4760c90c146.tar.gz vaadin-framework-b1097e1f345a4c8fe2e166cd1da7a4760c90c146.zip |
"poro" theme update:
* slider theme added
* table theme fixes
* error indicator fixes in many components
svn changeset:7800/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/button')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/button/button.css | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/button/button.css b/WebContent/VAADIN/themes/reindeer/button/button.css index 4a9dd18832..119c7bf89b 100644 --- a/WebContent/VAADIN/themes/reindeer/button/button.css +++ b/WebContent/VAADIN/themes/reindeer/button/button.css @@ -102,20 +102,29 @@ div > .v-button .v-icon, /* Buttons with error indicator */ div > .v-button .v-errorindicator, .v-ie7 .v-button .v-errorindicator { - display: inline; position: absolute; - width: 5px; - height: 26px; - background: transparent url(../../default/icons/16/error.png) no-repeat 50%; - overflow: hidden; + display: inline-block; + width: 9px; + height: 16px; + background: transparent url(../common/icons/error.png) no-repeat 50%; + padding: 0; + margin: 0; } .v-ie6 .v-button .v-errorindicator { position: absolute; - width: 5px; - height: 18px; - background: transparent url(../../default/icons/16/error.gif) no-repeat 50%; - overflow: hidden; - margin-left: -10px; + display: inline; + width: 9px; + height: 16px; + background: transparent url(../common/icons/error-ie6.png) no-repeat 50%; +} +.v-ff .v-button, +.v-sa .v-button { + position: relative; +} +.v-ff .v-button .v-errorindicator, +.v-sa .v-button .v-errorindicator { + top: 2px; + left: 10px; } /* Link style buttons */ .v-button.v-button-link, |