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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
.v-select {
text-align: left;
}
.v-select-optiongroup .v-select-option {
display: block;
white-space: nowrap;
}
.v-ie .v-select-optiongroup .v-select-option {
zoom: 1;
}
.v-select-select {
display: block;
}
.v-select-twincol {
white-space: nowrap;
}
.v-select-twincol-options {
float: left;
}
.v-select-twincol-selections {
font-weight: bold;
}
.v-select-twincol-buttons {
float: left;
text-align: center;
}
.v-select-twincol-buttons .v-select-twincol-deco {
clear: both;
}
.v-select-twincol .v-textfield {
display: block;
float: left;
clear: left;
}
.v-select-twincol .v-button {
display: block;
float: left;
}
.v-select-twincol-buttons .v-button {
display: inline;
float: none;
}
.v-filterselect {
white-space: nowrap;
text-align: left;
}
.v-filterselect .v-icon {
float: left;
}
.v-app .v-filterselect-input,
.v-window .v-filterselect-input,
.v-popupview-popup .v-filterselect-input {
float: left;
}
.v-filterselect-prompt .v-filterselect-input {
color: #999;
font-style: italic;
}
.v-filterselect-button {
float: right;
cursor: pointer;
}
.v-filterselect.v-readonly .v-filterselect-button {
display: none;
}
.v-filterselect-suggestpopup {
background: #fff;
border: 1px solid #eee;
}
.v-filterselect-suggestmenu table {
border-collapse: collapse;
border: none;
}
.v-filterselect-suggestmenu .gwt-MenuItem {
white-space: nowrap;
}
.v-filterselect-suggestmenu .gwt-MenuItem .v-icon {
margin-right: 3px;
vertical-align: middle;
}
.v-filterselect-suggestmenu .gwt-MenuItem span {
vertical-align: middle;
}
.v-filterselect-suggestmenu .gwt-MenuItem-selected {
background: #333;
color: #fff;
}
.v-filterselect-nextpage,
.v-filterselect-nextpage-off,
.v-filterselect-prevpage-off,
.v-filterselect-prevpage {
width: 100%;
background: #aaa;
text-align: center;
overflow: hidden;
cursor: pointer;
}
.v-filterselect-nextpage-off,
.v-filterselect-prevpage-off {
color: #666;
opacity: .5;
filter: alpha(opacity=50);
cursor: default;
}
.v-filterselect-nextpage-off span,
.v-filterselect-prevpage-off span {
cursor: default;
}
.v-filterselect-status {
white-space: nowrap;
text-align: center;
}
/* Error styles (disabled by default)
.v-filterselect-error .v-filterselect-input,
.v-select-error .v-select-option,
.v-select-error .v-select-select,
.v-select-error .v-select-twincol-selections,
.v-select-error .v-select-twincol-options {
background: #ffaaaa;
}
*/
/* Required field styles (disabled by default)
.v-filterselect-error .v-filterselect-input,
.v-select-required .v-select-option,
.v-select-required .v-select-select,
.v-select-required .v-select-twincol-selections,
.v-select-required .v-select-twincol-options {
background: #ffaaaa;
}
*/
|