diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-05-04 13:17:58 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-05-04 13:17:58 +0000 |
commit | b9d97b16fa108da637443242c35921aa163aa211 (patch) | |
tree | ab59e0f2a6beb6d1e184e101cf9bd87bbdbdceb1 /WebContent/VAADIN/themes/runo/textfield/textfield.css | |
parent | 2924b070b44a3f140dca181204187c31d5ac8739 (diff) | |
download | vaadin-framework-b9d97b16fa108da637443242c35921aa163aa211.tar.gz vaadin-framework-b9d97b16fa108da637443242c35921aa163aa211.zip |
Dozens of enhancements and fixes to Runo theme, containing new sub-styles for several components such as buttons, tables, accordions, windows, layouts, splitpanels and others.
svn changeset:13024/svn branch:6.4
Diffstat (limited to 'WebContent/VAADIN/themes/runo/textfield/textfield.css')
-rw-r--r-- | WebContent/VAADIN/themes/runo/textfield/textfield.css | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/WebContent/VAADIN/themes/runo/textfield/textfield.css b/WebContent/VAADIN/themes/runo/textfield/textfield.css index 2dfcc99d2e..10bac8faeb 100644 --- a/WebContent/VAADIN/themes/runo/textfield/textfield.css +++ b/WebContent/VAADIN/themes/runo/textfield/textfield.css @@ -1,23 +1,23 @@ -.v-textfield { - background: #fff url(img/bg.png) repeat-x; - padding: 2px; - border: 1px solid #b6b6b6; - border-top-color: #9d9d9d; - border-bottom-color: #d6d6d6; - border-right-color: #d6d6d6; - margin: 0; - font-size: 13px; - height: 18px; -} +.v-textfield, .v-textarea { background: #fff url(img/bg.png) repeat-x; - padding: 2px; border: 1px solid #b6b6b6; border-top-color: #9d9d9d; border-bottom-color: #d6d6d6; border-right-color: #d6d6d6; margin: 0; - font-size: 13px; + line-height: 14px; +} +input.v-textfield, +input[type=text].v-textfield, +textarea.v-textarea { + font-size: 12px; + height: 16px; + padding: 4px 2px 0; +} +textarea.v-textarea { + height: auto; + padding-bottom: 2px; } .v-textfield-focus, .v-textarea-focus { @@ -33,4 +33,14 @@ textarea.v-textarea-prompt { } .v-richtextarea .gwt-RichTextArea { background: #fff url(img/bg.png) repeat-x; +} + +/* Small style */ +input.v-textfield-small, +input[type=text].v-textfield-small, +textarea.v-textarea-small { + font-size: 11px; + height: 14px; + line-height: 12px; + padding: 1px 2px; }
\ No newline at end of file |