diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-07-07 07:37:32 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-07-07 07:37:32 +0000 |
commit | df11597a982121fd19c1f72656143850de9e62ea (patch) | |
tree | 1bbc573447d1be8a6bc346e0284ce48125474b27 /WebContent/VAADIN | |
parent | 3ef5f2f982519ba6b966bf4c256f4c81331a8cfa (diff) | |
download | vaadin-framework-df11597a982121fd19c1f72656143850de9e62ea.tar.gz vaadin-framework-df11597a982121fd19c1f72656143850de9e62ea.zip |
Added textarea styles to Reindeer.
Fixed notification border radius for Firefox.
svn changeset:8340/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN')
3 files changed, 40 insertions, 12 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/notification/notification.css b/WebContent/VAADIN/themes/reindeer/notification/notification.css index 74df1c1643..a4e17ad86a 100644 --- a/WebContent/VAADIN/themes/reindeer/notification/notification.css +++ b/WebContent/VAADIN/themes/reindeer/notification/notification.css @@ -1,6 +1,6 @@ .v-Notification { color: #fff; - border-radius: 4px + border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; font-size: 100%; diff --git a/WebContent/VAADIN/themes/reindeer/styles.css b/WebContent/VAADIN/themes/reindeer/styles.css index ebb2353edb..5f4b0d2ca6 100644 --- a/WebContent/VAADIN/themes/reindeer/styles.css +++ b/WebContent/VAADIN/themes/reindeer/styles.css @@ -2952,7 +2952,7 @@ td.v-datefield-calendarpanel-nextyear { /* ./WebContent/VAADIN/themes/reindeer/notification/notification.css */ .v-Notification { color: #fff; - border-radius: 4px + border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; font-size: 100%; @@ -4198,7 +4198,8 @@ td.v-datefield-calendarpanel-nextyear { /* Content area font color specified with minimal style (reduces additional selectors) */ /* ./WebContent/VAADIN/themes/reindeer/textfield/textfield.css */ -.v-textfield { +.v-textfield, +.v-textarea { line-height: normal; height: 19px; border: 1px solid #bcbdbe; @@ -4213,25 +4214,35 @@ td.v-datefield-calendarpanel-nextyear { -moz-border-radius: 3px; margin: 0; } +.v-textarea { + background-image: none; + height: auto; +} /* Need more specific selector because of #2384 fixes in base/common/common.css */ -.v-app input.v-textfield { +.v-app input.v-textfield, +.v-app .v-textarea { padding: 3px 3px 0 3px; } /* Textfield on blue background */ -.blue .v-textfield { +.blue .v-textfield, +.blue .v-textarea { border-color: #92a2aa; border-top-color: #7c8a90; border-bottom-color: #a1b3bc; } .v-app .v-textfield-focus, .v-window .v-textfield-focus, -.v-popupview-popup .v-textfield-focus { +.v-popupview-popup .v-textfield-focus, +.v-app .v-textarea-focus, +.v-window .v-textarea-focus, +.v-popupview-popup .v-textarea-focus { border-color: #5b97d0; border-top-color: #4f83b4; border-bottom-color: #5ca0df; outline: none; } -input.v-textfield-prompt { +input.v-textfield-prompt, +textarea.v-textarea-prompt { font-style: normal; color: #999; } @@ -4260,6 +4271,9 @@ input.v-textfield-prompt { font-size: 11px; height: 15px; } +.v-app textarea.v-textarea-small { + font-size: 11px; +} .v-sa input.v-textfield-small, .v-ff35 input.v-textfield-small { height: 16px; diff --git a/WebContent/VAADIN/themes/reindeer/textfield/textfield.css b/WebContent/VAADIN/themes/reindeer/textfield/textfield.css index 60350450d7..cf429eaa84 100644 --- a/WebContent/VAADIN/themes/reindeer/textfield/textfield.css +++ b/WebContent/VAADIN/themes/reindeer/textfield/textfield.css @@ -1,4 +1,5 @@ -.v-textfield { +.v-textfield, +.v-textarea { line-height: normal; height: 19px; border: 1px solid #bcbdbe; @@ -11,25 +12,35 @@ -moz-border-radius: 3px; margin: 0; } +.v-textarea { + background-image: none; + height: auto; +} /* Need more specific selector because of #2384 fixes in base/common/common.css */ -.v-app input.v-textfield { +.v-app input.v-textfield, +.v-app .v-textarea { padding: 3px 3px 0 3px; } /* Textfield on blue background */ -.blue .v-textfield { +.blue .v-textfield, +.blue .v-textarea { border-color: #92a2aa; border-top-color: #7c8a90; border-bottom-color: #a1b3bc; } .v-app .v-textfield-focus, .v-window .v-textfield-focus, -.v-popupview-popup .v-textfield-focus { +.v-popupview-popup .v-textfield-focus, +.v-app .v-textarea-focus, +.v-window .v-textarea-focus, +.v-popupview-popup .v-textarea-focus { border-color: #5b97d0; border-top-color: #4f83b4; border-bottom-color: #5ca0df; outline: none; } -input.v-textfield-prompt { +input.v-textfield-prompt, +textarea.v-textarea-prompt { font-style: normal; color: #999; } @@ -58,6 +69,9 @@ input.v-textfield-prompt { font-size: 11px; height: 15px; } +.v-app textarea.v-textarea-small { + font-size: 11px; +} .v-sa input.v-textfield-small, .v-ff35 input.v-textfield-small { height: 16px; |