summaryrefslogtreecommitdiffstats
path: root/WebContent/ITMILL/themes/default/textfield/textfield.css
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2008-04-24 13:36:45 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2008-04-24 13:36:45 +0000
commit14410f2a048409af75014597717ba5fc32a83674 (patch)
tree47f9c8a49519be456ef4f7d8c8a24fa2693afe70 /WebContent/ITMILL/themes/default/textfield/textfield.css
parentd59f916e26d2a9eb89c8d5c326b48f38216115dc (diff)
downloadvaadin-framework-14410f2a048409af75014597717ba5fc32a83674.tar.gz
vaadin-framework-14410f2a048409af75014597717ba5fc32a83674.zip
refactored default css rules to be in themes/default, added helperapplication to combine multiple css files, changed app init process again
svn changeset:4226/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes/default/textfield/textfield.css')
-rw-r--r--WebContent/ITMILL/themes/default/textfield/textfield.css52
1 files changed, 52 insertions, 0 deletions
diff --git a/WebContent/ITMILL/themes/default/textfield/textfield.css b/WebContent/ITMILL/themes/default/textfield/textfield.css
new file mode 100644
index 0000000000..10aa9811f4
--- /dev/null
+++ b/WebContent/ITMILL/themes/default/textfield/textfield.css
@@ -0,0 +1,52 @@
+.i-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;
+ text-align: left /* Force default alignment */
+}
+
+.i-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;
+}
+
+.i-textfield-focus,
+.i-textarea-focus {
+ border-color: #5daee8;
+}
+
+.i-textfield-error,
+.i-textarea-error {
+ background: #ff9999;
+}
+
+.i-textfield.i-readonly,
+.i-textarea.i-readonly {
+ background: transparent;
+ color: #222;
+ border: none;
+}
+
+
+.i-richtextarea {
+ border: 1px solid #b6b6b6;
+ overflow: hidden;
+}
+.i-richtextarea .gwt-RichTextArea {
+ background: #fff url(img/bg.png) repeat-x;
+}
+.i-richtextarea iframe {
+ border: 0;
+} \ No newline at end of file