Home | History | Annotate | Download | only in code_coverage
      1 /*
      2  * Copyright (c) 2012 The Chromium Authors. All rights reserved.
      3  * Use of this source code is governed by a BSD-style license that can be
      4  * found in the LICENSE file.
      5  */
      6 
      7 /*
      8  * croc.css - styles for croc HTML output
      9  */
     10 
     11 body {
     12 	font-family:arial;
     13 }
     14 
     15 table {
     16 	border-collapse:collapse;
     17 	border-width:0px;
     18 	border-style:solid;
     19 }
     20 
     21 thead {
     22 	background-color:#C0C0E0;
     23 	text-align:center;
     24 }
     25 
     26 td {
     27 	padding-right:10px;
     28 	padding-left:10px;
     29 	font-size:small;
     30 	border-width:1px;
     31 	border-style:solid;
     32 	border-color:black;
     33 }
     34 
     35 td.secdesc {
     36 	text-align:center;
     37 	font-size:medium;
     38 	font-weight:bold;
     39 	border-width:0px;
     40 	border-style:none;
     41 	padding-top:10px;
     42 	padding-bottom:5px;
     43 }
     44 
     45 td.section {
     46 	background-color:#D0D0F0;
     47 	text-align:center;
     48 }
     49 
     50 td.stat {
     51 	text-align:center;
     52 }
     53 
     54 td.number {
     55 	text-align:right;
     56 }
     57 
     58 td.graph {
     59 	/* Hide the dummy character */
     60 	color:#FFFFFF;
     61 	padding-left:6px;
     62 }
     63 
     64 td.high_pct {
     65 	text-align:right;
     66 	background-color:#B0FFB0;
     67 }
     68 td.mid_pct {
     69 	text-align:right;
     70 	background-color:#FFFF90;
     71 }
     72 td.low_pct {
     73 	text-align:right;
     74 	background-color:#FFB0B0;
     75 }
     76 
     77 
     78 span.missing {
     79 	background-color:#FFB0B0;
     80 }
     81 span.instr {
     82 	background-color:#FFFF90;
     83 }
     84 span.covered {
     85 	background-color:#B0FFB0;
     86 }
     87 
     88 span.g_missing {
     89 	background-color:#FF4040;
     90 }
     91 span.g_instr {
     92 	background-color:#FFFF00;
     93 }
     94 span.g_covered {
     95 	background-color:#40FF40;
     96 }
     97 
     98 p.time {
     99 	padding-top:10px;
    100 	font-size:small;
    101 	font-style:italic;
    102 }
    103