diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-03-30 07:00:49 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-03-30 07:00:49 +0000 |
commit | ef03ef8032df8be5f63af0549b7bf92b5074301f (patch) | |
tree | 1d1ca836db3b50d52cec0fce747842c37ad95a7c /WebContent/VAADIN/themes/reindeer/textfield/textfield.css | |
parent | 0f07db8312ab6ff9b4c4d49f8b99fe5d46ee4422 (diff) | |
download | vaadin-framework-ef03ef8032df8be5f63af0549b7bf92b5074301f.tar.gz vaadin-framework-ef03ef8032df8be5f63af0549b7bf92b5074301f.zip |
Fixes #4435: Readonly textareas are not rendered as readonly
svn changeset:12211/svn branch:6.3
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/textfield/textfield.css')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/textfield/textfield.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/textfield/textfield.css b/WebContent/VAADIN/themes/reindeer/textfield/textfield.css index f050fa43c2..3f9052cb61 100644 --- a/WebContent/VAADIN/themes/reindeer/textfield/textfield.css +++ b/WebContent/VAADIN/themes/reindeer/textfield/textfield.css @@ -75,7 +75,8 @@ textarea.v-textarea-prompt { margin-bottom: 0; } /* Textfield on black background */ -.black .v-textfield { +.black .v-textfield, +.black .v-textarea { border-color: #38393a; border-top-color: #2c2d2e; border-bottom-color: #3e3f3f; @@ -84,10 +85,17 @@ textarea.v-textarea-prompt { color: #c9ccce; text-shadow: #000 0 0 1px; } +.black .v-textarea { + background-image: none; +} .v-app .black .v-textfield-focus, .v-window-black .v-textfield-focus, .v-window .black .v-textfield-focus, -.v-popupview-popup .black .v-textfield-focus { +.v-popupview-popup .black .v-textfield-focus, +.v-app .black .v-textarea-focus, +.v-window-black .v-textarea-focus, +.v-window .black .v-textarea-focus, +.v-popupview-popup .black .v-textarea-focus { border-color: #4b7192; border-top-color: #3b5a75; border-bottom-color: #507596; @@ -97,7 +105,9 @@ textarea.v-textarea-prompt { } /* Readonly */ input.v-textfield-readonly, -.black input.v-textfield-readonly { +.black input.v-textfield-readonly, +textarea.v-textarea-readonly, +.black textarea.v-textarea-readonly { border: none; background: transparent; }
\ No newline at end of file |