blob: 94e17ad4770327f974ca0d378e42459249bec9d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
.v-textfield {
text-align: left /* Force default alignment */
}
.v-textarea {
}
.v-textfield-focus,
.v-textarea-focus {
}
input.v-textfield-prompt,
textarea.v-textarea-prompt {
color: #999;
font-style: italic;
}
.v-textfield.v-readonly,
.v-textarea.v-readonly {
background: transparent;
color: #222;
border: none;
}
.v-richtextarea {
border: 1px solid #aaa;
overflow: hidden;
}
.v-richtextarea .gwt-RichTextToolbar .gwt-ToggleButton,
.v-richtextarea .gwt-RichTextToolbar .gwt-PushButton {
float: left;
}
.v-richtextarea .gwt-RichTextToolbar {
white-space: nowrap;
}
.v-richtextarea iframe {
border: 0;
}
/* Disabled by default
.v-textarea-error,
.v-textfield-error,
.v-richtextarea-error iframe.gwt-RichTextArea {
background: #FFE0E0;
}
*/
/* Disabled by default
.v-textarea-required,
.v-textfield-required,
.v-richtextarea-required iframe.gwt-RichTextArea {
background: #FFE0E0;
}
*/
/* Safari focus glow fix */
.v-sa input:focus,
.v-sa textarea:focus {
outline-width: medium;
}
|