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 122 123 124 125 126 127
|
body {
font-family: Verdana, Helvetica, sans-serif;
width: 600px;
padding: 0px;
color: #444;
}
h1 {
background-color: #EEE;
color: #444;
font-size: 14pt;
font-style: italic;
margin: 0px;
padding: 5px;
}
h2 {
background-color: #AAA;
color: white;
font-weight: bold;
font-size: 9pt;
margin: 0px;
padding: 5px;
}
ul {
margin: 0px;
padding: 0px;
list-style: none;
}
li {
padding: 5px;
}
table {
border-spacing: 0px;
}
th {
background-color: #AAA;
color: white;
padding: 5px;
width: 100px;
font-size: 9pt;
}
td {
text-align: center;
}
tr:hover, li:hover {
background-color: #EEE;
}
.status-group {
font-size: 90%;
}
.status-bug {
font-weight: bold;
}
.status-group ul {
font-size: 90%;
}
.status-group ul li {
padding: 2px 0 2px 7px;
overflow: hidden;
}
.status-group ul li:hover {
background: #ddd;
}
.status-date {
color: #AAA;
float: right;
font-size: 8pt;
}
.status-cell {
margin: 1px;
padding: 1px 2px;
font-size: 9pt;
border: 1px solid transparent;
}
.status-cell:hover {
border: 1px solid black;
}
.status-cell.pass {
background-color: #8FDF5F;
cursor: pointer;
/* border: 1px solid #4F8530; */
}
.status-cell.fail {
background-color: #E98080;
cursor: pointer;
/* border: 1px solid #A77272; */
}
.status-cell.pending {
background-color: #FFFC6C;
cursor: pointer;
/* border: 1px solid #C5C56D; */
}
.status-cell.error {
background-color: #E0B0FF;
cursor: pointer;
/* border: 1px solid #ACA0B3; */
}
.queue_bubble {
border: 1px solid black;
margin-bottom: 10px;
border-radius: 10px;
padding: 5px;
}
.queue_name {
float:left;
}
.last_heard_from {
float: right;
}
.status_text {
clear: both;
}
.alive {
background-color: #8FDF5F;
}
.behind {
background-color: #FFFC6C;
}
.dead {
background-color: #E98080;
}
|