blob: 5ef180b99dbcdbf29618a10d957e3fc002112e73 (
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
#topbar {
padding: 5px 10px;
background: #E0EBF5;
}
#topbar a {
color: #375EAB;
text-decoration: none;
}
h1, h2, h3, h4 {
margin: 0;
padding: 0;
color: #375EAB;
font-weight: bold;
}
table {
border: 1px solid #ccc;
margin: 20px 5px;
border-collapse: collapse;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
table caption {
font-weight: bold;
}
table td, table th {
vertical-align: top;
padding: 2px 8px;
text-overflow: ellipsis;
overflow: hidden;
}
.position_table {
border: 0px;
margin: 0px;
width: 100%;
border-collapse: collapse;
}
.position_table td, .position_table tr {
vertical-align: center;
padding: 0px;
}
.position_table .search {
text-align: right;
}
.list_table td, .list_table th {
border-left: 1px solid #ccc;
}
.list_table th {
background: #F4F4F4;
}
.list_table tr:nth-child(2n+1) {
background: #F4F4F4;
}
.list_table tr:hover {
background: #ffff99;
}
.list_table .namespace {
width: 100pt;
max-width: 100pt;
}
.list_table .title {
width: 400pt;
max-width: 400pt;
}
.list_table .tag {
font-family: monospace;
font-size: 8pt;
width: 200pt;
max-width: 200pt;
}
.list_table .opts {
width: 40pt;
max-width: 40pt;
}
.list_table .status {
width: 300pt;
max-width: 300pt;
}
.list_table .patched {
text-align: center;
}
.list_table .kernel {
width: 200pt;
max-width: 200pt;
}
.list_table .maintainers {
width: 300pt;
max-width: 300pt;
}
.list_table .stat {
font-family: monospace;
text-align: right;
}
.bad {
color: #f00;
font-weight: bold;
}
textarea {
width:100%;
}
|