blob: 35a322d56b3d29fef8be892c2a865f133a87b7e2 (
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
|
body {
background: white;
line-height: 1.5;
margin: 3em auto;
padding: 0 3em; /* Fix for Dillo */
font-family: sans-serif;
max-width: 80ch;
}
h1 {
margin-top: 0.25em;
margin-bottom: 0.25em;
font-size: 22px;
}
img {
border: 0;
max-width: 100%;
margin-top: 1em;
margin-bottom: 1em;
}
figure {
text-align: center;
margin: 1em;
}
footer {
text-align: center;
margin-top: 2em;
clear: both;
}
pre {
padding: 0.25em;
background: #f7f7f7;
border-left: solid 2px #ccc;
}
.date {
font-style: italic;
float: right;
}
/* Issue state label */
span.issue-state {
display: inline-block;
text-align: center;
color: #000;
padding: 0px 0.25em;
border: solid 1px #777;
}
span.state-open {
background-color: #8f8;
}
span.state-closed {
background-color: #eee;
}
/* Issue index view */
table.issue-index {
width: 100%;
border-spacing: 0;
}
table.issue-index td {
border-collapse: collapse;
border-bottom: solid 1px #ddd;
border-top: solid 1px #ddd;
padding: 0.25em;
}
table.issue-index th {
text-align: left;
background-color: #eee;
padding: 0.25em;
}
/* Issue view */
table.issue-meta {
width: 100%;
padding: 0.25em;
border: solid 1px #777;
margin-bottom: 1em;
}
table.issue-meta th {
padding: 0.1em 0.25em;
text-align: left;
vertical-align: top;
}
table.issue-meta td {
width: 100%;
padding: 0.1em 0.25em;
}
div.comment {
margin: 0.5em 0;
padding: 0.5em;
border: solid 1px #777;
}
|