blob: 3382fbee910482a0d43e9d8b7232e1c0b32968d1 (
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
|
@mixin runo-textfield {
.v-textfield,
.v-textarea {
background: #fff url(img/bg.png) repeat-x;
border: 1px solid #b6b6b6;
border-top-color: #9d9d9d;
border-bottom-color: #d6d6d6;
border-right-color: #d6d6d6;
margin: 0;
line-height: 14px;
}
input.v-textfield,
input[type=text].v-textfield,
textarea.v-textarea {
font-size: 12px;
height: 22px;
padding: 2px;
}
textarea.v-textarea {
height: auto;
}
.v-textfield-focus,
.v-textarea-focus {
border-color: #5daee8;
}
input.v-textfield-prompt,
textarea.v-textarea-prompt {
color: #999;
font-style: normal;
}
.v-richtextarea {
border: 1px solid #b6b6b6;
}
.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: 18px;
line-height: 12px;
padding: 1px 2px;
}
}
|