d5904cb4a78fd229af4a16cb6316377f118863b7
[frank.git] / report / style.css
1 /*
2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle in the LICENSE file that accompanied this code.
10  *
11  * This code is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14  * version 2 for more details (a copy is included in the LICENSE file that
15  * accompanied this code).
16  *
17  * You should have received a copy of the GNU General Public License version
18  * 2 along with this work; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 body {
26         font-family: verdana, arial, sans-serif
27         font-size: 12px;
28 }
29
30 a {
31         font-size: 12px;
32 }
33
34 table.src {
35         font-size: 12px;
36         border-left: #dcdcdc 1px solid;
37         border-right: #dcdcdc 1px solid;
38         border-bottom: #dcdcdc 1px solid;
39         border-top: #dcdcdc 1px solid;
40 }
41
42 table.report {
43         font-size: 12px !important;
44         border-collapse: collapse;
45         width: 100%;
46 }
47
48 tr.report {
49         border: #dcdcdc 1px solid;
50 }
51
52 table.percentGraph {
53         height: 10px;
54         width: 100px;
55 }
56
57 th.report {
58     background: #F0F0F0;
59         font-size: inherit !important;
60         font-weight: bold;
61         border: #dcdcdc 1px solid;
62         cursor:                 default;
63 }
64
65
66 th.report:hover {
67     background: #dcdcdc;
68 }
69
70 table.report a.sortheader {
71     color: black;
72     text-decoration: none;
73         display: block;
74 }
75 table.report span.sortarrow {
76     color: black;
77     text-decoration: none;
78 }
79
80
81
82
83 td.reportText {
84         font-size: inherit !important;
85         border: #dcdcdc 1px solid;
86 }
87
88 td.reportValue {
89         font-size: inherit !important;
90         border: #dcdcdc 1px solid;
91         text-align: right;
92 }
93
94 td.reportValue_covered {
95         font-size: inherit !important;
96         border: #dcdcdc 1px solid;
97         text-align: right;
98     background: #80ff80;
99 }
100
101 td.reportValue_uncovered {
102         font-size: inherit !important;
103         border: #dcdcdc 1px solid;
104         text-align: right;
105     background: #FF3030;
106 }
107
108 td.spacer {
109         border-left: #FF0000 0px none;
110         border-right: #FF0000 0px none;
111         height: 30px;
112         padding-top: 15px;
113 }
114
115 td.percentCovered {
116     background: #00FF00;
117         empty-cells: show;
118 }
119
120 td.percentUnCovered {
121     background: #FF0000;
122         empty-cells: show;
123 }
124
125 td.numLine {
126     background: #F0F0F0;
127     border-right: #dcdcdc 1px solid;
128     padding-right: 3px;
129     text-align: right;
130 }
131
132 td.numLineCover {
133     background: #80ff80;
134     border-right: #dcdcdc 1px solid;
135     padding-right: 3px;
136     text-align: right;
137 }
138
139 td.numLineUnCover {
140     background: #FF3030;
141     border-right: #dcdcdc 1px solid;
142     padding-right: 3px;
143     text-align: right;
144 }
145
146 td.nbHits {
147     background: #F0F0F0;
148     border-right: #dcdcdc 1px solid;
149     padding-right: 3px;
150     text-align: left;
151 }
152
153 td.nbHitsCovered {
154     background: #80ff80;
155     border-right: #dcdcdc 1px solid;
156     padding-right: 3px;
157     text-align: left;
158 }
159
160 td.nbHitsUncovered {
161     background: #FF3030;
162     border-right: #dcdcdc 1px solid;
163     padding-right: 3px;
164     text-align: left;
165 }
166
167 td.src {
168     width: 100%;
169 }
170
171 pre.src {
172     background: #ffffff;
173     margin-top: 0px;
174     margin-bottom: 0px;
175 }
176
177 span.srcUncovered {
178     background: #FF3030;
179     border-right: #dcdcdc 1px solid;
180     padding-right: 3px;
181     text-align: right;
182 }
183
184 span.keyword {
185     color: #0000ff;
186 }
187
188 span.comment {
189     color: #008080;
190     font-style: italic;
191 }
192
193 span.string {
194     color: #000000;
195 }
196
197 span.title {
198     font-weight: bold;
199     font-size: 16px;
200 }
201
202 span.title2 {
203     font-weight: bold;
204     font-size: 14px;
205 }
206 span.text {
207         font-size: 12px;
208 }
209
210 span.text_italic {
211         font-size: 12px;
212     font-style: italic;
213 }