Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: tools/code_coverage/croc.css

Issue 118034: Forgot the CSS file. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * croc.css - styles for croc HTML output
3 * Copyright 2009, Google Inc.
4 * All rights reserved.
Steve Block 2011/12/30 17:12:57 Is there a reason why this file doesn't use the re
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 body {
34 font-family:arial;
35 }
36
37 table {
38 border-collapse:collapse;
39 border-width:0px;
40 border-style:solid;
41 }
42
43 thead {
44 background-color:#C0C0E0;
45 text-align:center;
46 }
47
48 td {
49 padding-right:10px;
50 padding-left:10px;
51 font-size:small;
52 border-width:1px;
53 border-style:solid;
54 border-color:black;
55 }
56
57 td.secdesc {
58 text-align:center;
59 font-size:medium;
60 font-weight:bold;
61 border-width:0px;
62 border-style:none;
63 padding-top:10px;
64 padding-bottom:5px;
65 }
66
67 td.section {
68 background-color:#D0D0F0;
69 text-align:center;
70 }
71
72 td.stat {
73 text-align:center;
74 }
75
76 td.number {
77 text-align:right;
78 }
79
80 td.graph {
81 /* Hide the dummy character */
82 color:#FFFFFF;
83 padding-left:6px;
84 }
85
86 td.high_pct {
87 text-align:right;
88 background-color:#B0FFB0;
89 }
90 td.mid_pct {
91 text-align:right;
92 background-color:#FFFF90;
93 }
94 td.low_pct {
95 text-align:right;
96 background-color:#FFB0B0;
97 }
98
99
100 span.missing {
101 background-color:#FFB0B0;
102 }
103 span.instr {
104 background-color:#FFFF90;
105 }
106 span.covered {
107 background-color:#B0FFB0;
108 }
109
110 span.g_missing {
111 background-color:#FF4040;
112 }
113 span.g_instr {
114 background-color:#FFFF00;
115 }
116 span.g_covered {
117 background-color:#40FF40;
118 }
119
120 p.time {
121 padding-top:10px;
122 font-size:small;
123 font-style:italic;
124 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698