1
|
/* Element CSS Definitions for (MultiRow-)tables
|
2
|
if theme changes are needed include a table.css in the /themes/yourtheme/ */
|
3
|
.listMR {
|
4
|
background-color: #DDD;
|
5
|
font-size: 11px;
|
6
|
padding-left: 6px;
|
7
|
padding-top: 2px;
|
8
|
padding-bottom: 2px;
|
9
|
}
|
10
|
.listMRlr {
|
11
|
border-right: 1px solid #999999;
|
12
|
border-bottom: 1px solid #999999;
|
13
|
border-left: 1px solid #999999;
|
14
|
font-size: 11px;
|
15
|
padding-right: 6px;
|
16
|
padding-left: 6px;
|
17
|
padding-top: 4px;
|
18
|
padding-bottom: 4px;
|
19
|
}
|
20
|
.listMRr {
|
21
|
border-right: 1px solid #999999;
|
22
|
border-bottom: 1px solid #999999;
|
23
|
font-size: 11px;
|
24
|
padding-right: 6px;
|
25
|
padding-left: 6px;
|
26
|
padding-top: 4px;
|
27
|
padding-bottom: 4px;
|
28
|
}
|
29
|
.listMRodd {
|
30
|
background-color: #FFFFFF;
|
31
|
}
|
32
|
.listMReven {
|
33
|
background-color: #F0F0F0;
|
34
|
}
|
35
|
.listMRDescriptionL {
|
36
|
border-right: none;
|
37
|
border-bottom: 2px solid #999999;
|
38
|
}
|
39
|
.listMRDescriptionR {
|
40
|
border-left: none;
|
41
|
border-bottom: 2px solid #999999;
|
42
|
}
|
43
|
.ellipsis {
|
44
|
overflow: hidden;
|
45
|
text-overflow: ellipsis;
|
46
|
}
|