summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/reindeer/textfield
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2009-07-07 07:37:32 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2009-07-07 07:37:32 +0000
commitdf11597a982121fd19c1f72656143850de9e62ea (patch)
tree1bbc573447d1be8a6bc346e0284ce48125474b27 /WebContent/VAADIN/themes/reindeer/textfield
parent3ef5f2f982519ba6b966bf4c256f4c81331a8cfa (diff)
downloadvaadin-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/themes/reindeer/textfield')
-rw-r--r--WebContent/VAADIN/themes/reindeer/textfield/textfield.css24
1 files changed, 19 insertions, 5 deletions
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;