File: bug-list.css

package info (click to toggle)
apt-listbugs 0.1.16
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,088 kB
  • ctags: 108
  • sloc: ruby: 2,280; sh: 210; makefile: 49
file content (124 lines) | stat: -rw-r--r-- 2,701 bytes parent folder | download | duplicates (4)
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
124
/*

Copyright (C) 2013  Francesco Poli <invernomuto@paranoici.org>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License with
the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL-2;
if not, write to the Free Software Foundation, Inc., 51 Franklin St,
Fifth Floor, Boston, MA 02110-1301, USA.

*/

.nocss { display: none; }

body
{
    color: black;
    background-color: white;
    padding: 0.1em;
}

/* links */
body a
{
    text-decoration: none;
}

body a:link
{
    color: blue;
    border-bottom: 1px blue solid;
}

body a:visited
{
    color: black;
    border-bottom: 1px black solid;
}

body a:hover
{
    color: blue;
    border-bottom: 1px blue dashed;
}

/* title */
div#page_title h1.title
{
    color: black;
    background-color: white;
    font-size: 180%;
    text-align: center;
    width: 80%;
    margin: 0.6em auto 0.1em;
    padding: 0.1em 0.1em 0.1em;
    border-top: 1px black solid;
    border-bottom: 1px black solid;
}

div#page_title h5.generated
{
    color: black;
    background-color: white;
    font-size: 80%;
    text-align: right;
    margin: 1.2em 0.1em 1.2em;
    padding: 0.1em 0.1em 0.1em;
}

/* tables */
div#page_body table.bug_table
{
    text-align: center;
    vertical-align: middle;
    margin: 1.5em auto 0.5em;
    border: 0px;
}

div#page_body table.bug_table .pkg
{
    text-align: right;
}

div#page_body table.bug_table .desc
{
    text-align: left;
}

div#page_body table.bug_table caption
{
    font-size: 110%;
    margin: 0.5em auto 0.5em;
}

div#page_body table.bug_table th
{
    margin: 1px;
    border: 0px;
    padding: 0.1em 0.5em;
}

div#page_body table.bug_table tr.critical  { background-color: #f99; }
div#page_body table.bug_table tr.grave     { background-color: #fc9; }
div#page_body table.bug_table tr.serious   { background-color: #fe9; }
div#page_body table.bug_table tr.important { background-color: #ccf; }
div#page_body table.bug_table tr.normal    { background-color: #cef; }
div#page_body table.bug_table tr.minor     { background-color: #af9; }
div#page_body table.bug_table tr.wishlist  { background-color: #eee; }

div#page_body table.bug_table td
{
    margin: 1px;
    border: 0px;
    padding: 0.1em 0.5em;
}