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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
@mixin runo-table {
.v-table-header-wrap {
height: 36px;
border: 1px solid #b6bbbc;
border-bottom: none;
background: #e7e9ea url(img/header-bg.png) repeat-x;
}
.v-table-header {
height: 36px;
}
.v-table-footer-wrap {
border-color: #b6bbbc;
background: #e7e9ea url(img/header-bg.png) repeat-x;
}
.v-table-footer td {
border-right-color: #e8eaec;
padding-top: 3px;
padding-bottom: 3px;
}
.v-table-resizer {
height: 36px;
width: 4px;
background: transparent url(img/resizer-bg.png) repeat-y 100% 50%;
}
.v-table-caption-container {
color: #393a3c;
font-size: 15px;
padding: 9px 2px 9px 0;
text-shadow: #ffffff 0 1px 0;
margin-left: 4px;
}
.v-table-sort-indicator {
width: 0;
height: 36px;
}
.v-table-header-cell-asc .v-table-sort-indicator {
background: transparent url(img/sort-asc.png) no-repeat right 50%;
width: 20px;
height: 36px;
}
.v-table-header-cell-desc .v-table-sort-indicator {
background: transparent url(img/sort-desc.png) no-repeat right 50%;
width: 20px;
height: 36px;
}
.v-table-header-cell:hover,
.v-table-header-cell-asc:hover,
.v-table-header-cell-desc:hover {
background: transparent url(img/header-bg-over.png) repeat-x;
}
.v-table-body {
background: #fff;
border: 1px solid #b6bbbc;
}
tr.v-table-row:hover,
tr.v-table-row-odd:hover {
background-color: #edeeee;
}
.v-table-row,
.v-table-body-noselection .v-table-row:hover {
background-color: #fff;
}
.v-table-row-odd,
.v-table-body-noselection .v-table-row-odd:hover {
background-color: #f6f7f7;
}
.v-table-generated-row {
color: #393a3c;
font-size: 15px;
padding: 9px 2px 9px 0;
text-shadow: #ffffff 0 1px 0;
background: #e7e9ea;
}
.v-table tr.v-selected {
background: #57a7ed;
color: #fff;
}
.v-table-cell-content {
padding: 0 6px 0 4px;
border-right: none;
}
.v-table-cell-wrapper {
white-space: nowrap;
overflow: hidden;
line-height: 23px;
/* Do not specify horizontal padding here */
padding: 3px 0 0 0;
}
/* Fix textfield size to correspond label size inside table */
.v-table-cell-content .v-textfield,
.v-table-cell-content .v-button {
margin: -3px 0 0 0;
}
.v-table-cell-content .v-textfield,
.v-table-cell-content .v-datefield {
width: 97%; /* approximate */
}
/* ...but not for datefield textarea */
.v-table-cell-content .v-datefield .v-textfield {
width: auto;
}
/* datefield button is too high for table cell */
.v-table-cell-content .v-datefield-button {
height: 25px;
margin: -3px 0 0 0;
}
.v-table-column-selector {
background: transparent url(img/colsel.png) no-repeat;
margin: -36px 0 0 0;
height: 36px;
width: 15px;
}
.v-table-focus-slot-left {
border-color: #b6bbbc;
margin-bottom: -36px;
width: auto;
border-right: none;
}
.v-table-focus-slot-right {
border-color: #b6bbbc;
}
.v-table-header-drag {
background: #e7edf3 url(img/header-bg.png) repeat-x;
border: 1px solid #b6bbbc;
padding: 4px;
font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
color: #464f52;
font-size: 15px;
margin-top: 20px;
}
.v-table-scrollposition {
width: 160px;
height: 39px;
background: transparent url(img/scroll-position-bg.png);
border: none;
}
.v-table-scrollposition span {
display: block;
margin-top: 8px;
text-align: center;
font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
color: #464f52;
font-size: 15px;
text-shadow: #ffffff 2px 2px 0;
}
/* row in column selector */
.v-on div {
background: transparent url(img/check.gif) no-repeat 2px 50%;
text-indent: 6px;
}
.v-off div {
text-indent: 6px;
}
.v-table .v-link {
display: inline;
}
/* Borderless style */
.v-table-borderless .v-table-header-wrap,
.v-table-borderless .v-table-body {
border: none;
}
.v-table-borderless .v-table-header-wrap {
border-bottom: 1px solid #b6bbbc;
}
.v-table-borderless .v-table-body {
background: transparent;
}
.v-table-borderless .v-table-row,
.v-table-borderless .v-table-row-odd,
.v-table-borderless .v-table-body-noselection .v-table-row:hover,
.v-table-borderless .v-table-body-noselection .v-table-row-odd:hover {
background-color: transparent;
}
/* Small style */
.v-table-small .v-table-header-wrap,
.v-table-small .v-table-header {
height: 22px;
}
.v-table-small .v-table-sort-indicator,
.v-table-small .v-table-header-cell-asc .v-table-sort-indicator,
.v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
height: 22px;
}
.v-table-small .v-table-caption-container {
font-size: 13px;
padding-top: 3px;
padding-bottom: 3px;
}
.v-table-small .v-table-column-selector {
margin-top: -21px;
height: 21px;
}
.v-table-small .v-table-body {
font-size: 12px;
}
.v-table-small .v-table-cell-wrapper {
line-height: 18px;
padding: 2px 0;
}
}
|