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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
body {
font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
}
h3,
p,
#qunit-userAgent,
#qunit-banner,
ol {
margin: 0;
padding: 0;
}
li {
list-style-position: inside;
}
#qunit-tests {
font-size: smaller;
/* IE6/7 seem to have trouble displaying an OL with no LI children */
#border-bottom: 1px solid #fff;
#margin-bottom: -1px;
}
#qunit-tests li {
padding: 0.4em 2.5em;
border-bottom: 1px solid #fff;
font-size: small;
}
#qunit-tests li ol {
margin-top: 0.5em;
padding: 0.5em;
background-color: #fff;
-moz-box-shadow: inset 0px 1px 8px #ccc;
-webkit-box-shadow: inset 0px 1px 8px #ccc;
box-shadow: inset 0px 1px 8px #ccc;
}
#qunit-tests li ol,
#qunit-header,
#qunit-testresult {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#qunit-tests li li {
border-bottom: none;
margin: 0.5em;
background-color: #fff;
list-style-position: inside;
padding: 0.4em 0.5em;
}
#qunit-tests li li.pass {
border-left: 26px solid #0a0;
background-color: #fff;
color: #0a0;
}
#qunit-tests li li.fail {
border-left: 26px solid #f00;
background-color: #fff;
color: #f00;
}
#qunit-tests li.pass,
h3,
p {
color: #913D00;
background-color: #FDEBDC;
}
h3,
p {
font-size: small;
padding: 0.4em 0.5em 0.4em 2.5em;
border-bottom: 1px solid #fff;
}
h3 a,
p a {
color: #FF7F00;
}
h3 a:hover,
p a:hover {
color: #000;
}
#qunit-tests li.fail {
background-color: #f99;
color: #000;
}
#qunit-tests li strong {
cursor: pointer;
}
#qunit-header {
color: #fff;
background-color: #FF7F00;
margin: 0;
padding: 0.5em 2em;
-moz-border-radius-bottomright: 0;
-moz-border-radius-bottomleft: 0;
-webkit-border-bottom-right-radius: 0;
-webkit-border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
#qunit-header h1 {
float: left;
margin: 0;
padding: 0;
line-height: 2em;
font-size: x-large;
}
#qunit-header small {
float: right;
font-weight: 700;
line-height: 3.5em;
}
#qunit-header a {
color: #fff;
}
#qunit-header a:hover {
color: #000;
}
/* Added span inside #qunit-banner to work around IE6 #id.class bug */
#qunit-banner span {
display: block;
height: 5px;
_overflow: hidden;
}
#qunit-banner.qunit-pass span {
background-color: #0a0;
}
#qunit-banner.qunit-fail span,
#qunit-testrunner-toolbar {
background-color: #f99;
}
#qunit-testrunner-toolbar {
padding: 0;
/*width: 80%;*/
padding: 0em 0 0.5em 2em;
font-size: small;
}
#qunit-userAgent {
background-color: #913D00;
color: #fff;
font-size: small;
padding: 0.5em 0 0.5em 2.5em;
}
#qunit-testresult {
margin: 0;
font-size: small;
color: #913D00;
background-color: #FDEBDC;
padding: 0.5em 0.5em 0.5em 2.5em;
-moz-border-radius-topright: 0;
-moz-border-radius-topleft: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-top-left-radius: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
strong b.fail {
color: #f00;
}
strong b.pass {
color: #0a0;
}
|