-
Notifications
You must be signed in to change notification settings - Fork 34
/
print.css
75 lines (61 loc) · 1.26 KB
/
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
div.approval {
margin: 2em;
margin-left: auto;
margin-right: auto;
width: 70% !important;
min-height: 40px;
clear: both;
text-align: justify;
vertical-align: middle;
border-collapse: collapse;
padding: 15px 20px 15px 20px;
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
border: solid black 2px;
}
div.approved_yes {
background-color: #dfd;
background-image: url(images/yes.gif);
}
div.approved_no {
background-color: #fdd;
background-image: url(images/no.gif);
}
div.approval em {
font-weight: bold;
}
div.approval span {
display: block;
}
div.approved_revision {
background-color: #dfd;
}
div.unapproved_revision {
background-color: #fdd;
}
p.apr_none { }
/* table.apr_table tr.apr_head th.(apr_page,apr_prev,apr_upd)
* table.apr_table tr.apr_ns td a
* table.apr_table tr.apr_entry [apr_never] td.(apr_page,apr_prev,apr_upd) a
*/
table.apr_table {
width: 100%;
}
table.apr_table tr.apr_head {
border-bottom: solid black 2px;
}
table.apr_table tr.apr_ns {
border-bottom: solid black 1px;
}
table.apr_table tr.apr_ns td {
text-align: center;
font-weight: bold;
}
a.approved_diff_link {
visibility: hidden;
}
div.approval span span.approval_date {
display: inline;
font-size: 80%;
}