www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

testTranslators.css (1298B)


      1 body {
      2 	font-family: Helvetica, sans;
      3 	font-size: 12px;
      4 }
      5 
      6 table {
      7 	border-color: black;
      8 	border-width: 0 0 1px 1px;
      9 	border-style: solid;
     10 	border-collapse: collapse;
     11 	width: 100%;
     12 }
     13 
     14 td, th {
     15 	border-color: black;
     16 	border-width: 1px 1px 0 0;
     17 	border-style: solid;
     18 	padding: 2px;
     19 }
     20 
     21 .th-translator {
     22 }
     23 
     24 .th-status {
     25 	width: 100px;
     26 	max-width: 100px;
     27 }
     28 
     29 .th-pending, .th-supported, .th-succeeded, .th-failed, .th-mismatch {
     30 	width: 75px;
     31 	max-width: 75px;
     32 }
     33 
     34 .th-issues {
     35 }
     36 
     37 .status-succeeded, .supported-yes {
     38 	background-color: #90ff90;
     39 }
     40 
     41 .status-failed, .supported-no {
     42 	background-color: #ff9090;
     43 }
     44 
     45 .status-mismatch {
     46 	background-color: #FFB;
     47 }
     48 
     49 .status-untested {
     50 	background-color: #ececec;
     51 }
     52 
     53 .status-pending, .status-running {
     54 	background-color: #9FF;
     55 }
     56 
     57 .status-partial-failure {
     58 	background-color: rgb(249, 180, 98);
     59 }
     60 
     61 tr.output-displayed > td {
     62 	background-color: #b4d5ff !important;
     63 }
     64 
     65 #translator-box {
     66 	position: absolute;
     67 	top: 0;
     68 	bottom: 25%;
     69 	left: 0;
     70 	right: 0;
     71 	padding: 5px;
     72 	overflow: scroll;
     73 }
     74 
     75 #output-box {
     76 	position: absolute;
     77 	top: 75%;
     78 	bottom: 0;
     79 	left: 0;
     80 	right: 0;
     81 	padding: 5px;
     82 	white-space: pre;
     83 	overflow: scroll;
     84 	font-family: Monaco, Courier, monospace;
     85 	font-size: 10px;
     86 }