-
Notifications
You must be signed in to change notification settings - Fork 4
/
print.css
86 lines (66 loc) · 1015 Bytes
/
print.css
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
table.database2 input.icon-cmd
{
display: none;
}
table.database2 tr.filter .commands
{
text-align: center;
}
table.database2 tr.filter .commands
{
display: none;
}
table.database2 tr.filter .filter-component
{
padding: 2px;
border: 1px solid black;
}
table.database2 tr.filter .unused
{
display: none;
}
table.database2 tr.filter select
{
border: none;
}
table.database2 tr.filter input
{
border: none;
}
table.database2 th.label input
{
display: none;
}
/*
* style specific to database2 internal print version
*/
body.print table
{
border-collapse: collapse;
color: black;
}
body.print table thead th
{
background: #dddddd;
border-top: 1px solid #666666;
border-bottom: 1px solid #666666;
}
body.print table tbody td
{
padding: 1px 2px;
border-left: 1px solid #cccccc;
}
body.print table tbody td.counter
{
border-left: none;
text-align: right;
}
body.print table tbody td.integer
{
text-align: right;
}
body.print table tbody a
{
text-decoration: none;
color: black;
}