diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2011-08-26 07:08:36 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2011-08-26 07:08:36 +0000 |
commit | 736820c8297656e6d0bcc6b8c56a3621ebfe32b2 (patch) | |
tree | afae7fd36d6a636f943db01e9ae44c8b3bcc0037 /WebContent/VAADIN/themes/chameleon/components/textfield | |
parent | 2999c18cab6bd7324667cd419dedb36c211f8507 (diff) | |
download | vaadin-framework-736820c8297656e6d0bcc6b8c56a3621ebfe32b2.tar.gz vaadin-framework-736820c8297656e6d0bcc6b8c56a3621ebfe32b2.zip |
Chameleon theme fixes
* Button with explicit width now behaves similarly across browsers, either clipping the text or ellipticizing it
* DateField popup button now same height as the input field
* Minor stylistic changes
svn changeset:20673/svn branch:6.7
Diffstat (limited to 'WebContent/VAADIN/themes/chameleon/components/textfield')
-rw-r--r-- | WebContent/VAADIN/themes/chameleon/components/textfield/textfield.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/chameleon/components/textfield/textfield.css b/WebContent/VAADIN/themes/chameleon/components/textfield/textfield.css index 6b5558789a..9fa38dd73f 100644 --- a/WebContent/VAADIN/themes/chameleon/components/textfield/textfield.css +++ b/WebContent/VAADIN/themes/chameleon/components/textfield/textfield.css @@ -12,10 +12,16 @@ textarea.v-textarea, -moz-border-radius: 2px; -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.2); -moz-box-shadow: 0 1px 0 rgba(255,255,255,.2); - padding: .1em .2em; margin: 0; } +input.v-textfield[type="text"], +textarea.v-textarea, +.v-filterselect { + padding: .2em; + height: 1.2em; + } + body input.v-textfield, body textarea.v-textarea, body input.v-filterselect-input { |