blob: 0e1b96f5b0706a0d731a5501b3c8001346791304 (
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
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
|
@mixin liferay-table {
.v-table-body {
border: 1px solid #999;
}
.v-table-body:focus,
.v-table-body-wrapper:focus {
outline: none;
}
.v-table-body.focused {
border-color: #555;
}
.v-table-focus .v-table-cell-content {
border-top: 1px dotted #555;
border-bottom: 1px dotted #555;
}
.v-table-header-wrap,
.v-table-footer-wrap {
border-color: #999;
background: #c0c2c5 url(/html/themes/classic/images/application/panel_header_bg.png) repeat-x 0 0;
height: 26px;
}
.v-table-footer-wrap {
border: 1px solid #999;
border-top: none;
}
.v-table-footer td {
height: 100%;
border-right: 1px solid #999;
padding-bottom: 5px;
padding-top: 5px;
}
.v-table-footer-container {
height: 16px;
float: right;
padding-right: 7px;
overflow: hidden;
white-space: nowrap;
}
.v-table-caption-container {
color: #336699;
font-weight: bold;
font-size: 11px;
padding-left: 0px;
padding-top: 6px;
}
.v-table-caption-container-align-right {
margin-left: 0;
margin-right: 6px;
padding-left: 0;
}
.v-table-caption-container .v-icon {
height: 16px;
margin: -4px 3px 0 0;
}
.v-ie .v-table-caption-container .v-icon {
margin-top: -2px;
}
.v-table-header-cell-asc .v-table-sort-indicator {
background: transparent url(/html/themes/control_panel/images/arrows/05_up.png) no-repeat right 8px;
height: 26px;
}
.v-table-header-cell-desc .v-table-sort-indicator {
background: transparent url(/html/themes/control_panel/images/arrows/05_down.png) no-repeat right 10px;
height: 26px;
}
.v-table-resizer {
height: 26px;
background: #999;
}
.v-table-focus-slot-left {
margin-bottom: -26px;
background: transparent;
}
.v-table-column-selector {
background: transparent url(columnselect.png);
width: 16px;
height: 26px;
margin: -26px 0 0;
}
.v-table-row-odd {
background: #dde1e6;
}
.v-table-row {
background: #eef0f2;
}
.v-table-generated-row {
color: #336699;
font-weight: bold;
font-size: 11px;
padding-left: 0px;
padding-top: 6px;
background: #c0c2c5;
}
.v-table .v-selected {
background-color: #5B677D;
color: #FFF;
text-shadow: -1px -1px #2C2F34;
}
.v-table-cell-wrapper {
padding-top: 3px;
padding-bottom: 3px;
}
.v-table-cell-content {
border-right: 1px solid #999;
padding: 0 6px;
}
.v-table-cell-content:last-child {
border-right-color: transparent;
}
.v-off {
color: #999;
}
}
|