blob: fbbd4fce4b5f68ae90884956ef41eaff064d21c7 (
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
|
/* APPS TABLE */
table td.date
{
width: 5em;
padding: 0.5em 1em;
text-align: right;
}
table td.version, table td.enabled, table td.disabled
{
padding: 0.5em 1em;
text-align: center;
}
table td.enabled
{
color: #006600;
font-weight: bold;
}
table td.disabled
{
color: #660000;
font-weight: bold;
}
.preview
{
padding: 3px;
text-align: left;
}
table td.date
{
width: 11em;
color: #555555;
}
table td.selection, table th.selection, table td.fileaction
{
width: 2em;
text-align: center;
}
table td.name a
{
padding: 6px;
text-decoration: none;
color: #555555;
}
.type
{
text-decoration: none;
color: #888888;
font-size: 0.8em;
}
.description
{
text-decoration: none;
color: #666666;
font-size: 0.9em;
}
|