blob: 945ab7bf4a635f773f4af62446ca9494b0006c2c (
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
|
/*
* SPDX-FileCopyrightText: 2022 2021 Marek Saloň
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
body {
padding: 1em;
margin: 1em;
min-width: 38em;
font-family: "Segoe UI", Tahoma, sans-serif;
font-size: 75%;
}
header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
font-size: large;
margin-bottom: 0.5em;
border-bottom: 2px solid #aaa;
}
header > div {
min-width: 0;
}
h4 {
color: var(--text-color);
}
#logo {
width: 48px;
padding-left: 50px;
}
#titletext {
display: block;
font-size: large;
text-align: center;
margin: 0.2em 0px;
text-align: left;
color: var(--title-color);
}
.fpd-group .fpd-group {
padding-left: 2em;
border-left: 2px solid #aaa;
}
.fpd-group > h2 {
display: inline-block;
color: var(--title-color);
margin: 0px 0px;
-webkit-transition: color 0.5s;
-moz-transition: color 0.5s;
-ms-transition: color 0.5s;
-o-transition: color 0.5s;
transition: color 0.5s;
}
.fpd-group > h2.clickable:hover {
cursor: pointer;
color: var(--text-color);
}
.dot {
color: var(--title-color);
}
.hidden {
display: none;
}
.no-access {
display: none;
}
#pageFavicon {
height: 18px;
margin-right: 2px;
}
#pageFavicon:not([src^="data:"]) {
display: none
}
#page-container {
white-space: nowrap;
}
#report-url {
display: inline-block;
height: 20px;
max-width: 99%;
white-space: nowrap;
overflow: hidden !important;
text-overflow: ellipsis;
margin: 0px;
color: var(--text-color);
}
.sticky-button {
float: right;
position: sticky;
top: 10px;
cursor: pointer;
margin-left: 0.5em;
}
.description {
font-size: x-small;
}
#unhideAll {
cursor: pointer;
color: var(--title-color);
text-decoration: underline;
}
|