Localisation updates from http://translatewiki.net.
[mediawiki.git] / resources / jquery / jquery.qunit.css
blob5b1af3341f8c4a1737d7b8fb843df096d1fcdf43
1 /**
2 * QUnit v1.7.0 - A JavaScript Unit Testing Framework
4 * http://docs.jquery.com/QUnit
6 * Copyright (c) 2012 John Resig, Jörn Zaefferer
7 * Dual licensed under the MIT (MIT-LICENSE.txt)
8 * or GPL (GPL-LICENSE.txt) licenses.
9 */
11 /** Font Family and Sizes */
13 #qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
14 font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
17 #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
18 #qunit-tests { font-size: smaller; }
21 /** Resets */
23 #qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult {
24 margin: 0;
25 padding: 0;
29 /** Header */
31 #qunit-header {
32 padding: 0.5em 0 0.5em 1em;
34 color: #8699a4;
35 background-color: #0d3349;
37 font-size: 1.5em;
38 line-height: 1em;
39 font-weight: normal;
41 border-radius: 15px 15px 0 0;
42 -moz-border-radius: 15px 15px 0 0;
43 -webkit-border-top-right-radius: 15px;
44 -webkit-border-top-left-radius: 15px;
47 #qunit-header a {
48 text-decoration: none;
49 color: #c2ccd1;
52 #qunit-header a:hover,
53 #qunit-header a:focus {
54 color: #fff;
57 #qunit-header label {
58 display: inline-block;
59 padding-left: 0.5em;
62 #qunit-banner {
63 height: 5px;
66 #qunit-testrunner-toolbar {
67 padding: 0.5em 0 0.5em 2em;
68 color: #5E740B;
69 background-color: #eee;
72 #qunit-userAgent {
73 padding: 0.5em 0 0.5em 2.5em;
74 background-color: #2b81af;
75 color: #fff;
76 text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
80 /** Tests: Pass/Fail */
82 #qunit-tests {
83 list-style-position: inside;
86 #qunit-tests li {
87 padding: 0.4em 0.5em 0.4em 2.5em;
88 border-bottom: 1px solid #fff;
89 list-style-position: inside;
92 #qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
93 display: none;
96 #qunit-tests li strong {
97 cursor: pointer;
100 #qunit-tests li a {
101 padding: 0.5em;
102 color: #c2ccd1;
103 text-decoration: none;
105 #qunit-tests li a:hover,
106 #qunit-tests li a:focus {
107 color: #000;
110 #qunit-tests ol {
111 margin-top: 0.5em;
112 padding: 0.5em;
114 background-color: #fff;
116 border-radius: 15px;
117 -moz-border-radius: 15px;
118 -webkit-border-radius: 15px;
120 box-shadow: inset 0px 2px 13px #999;
121 -moz-box-shadow: inset 0px 2px 13px #999;
122 -webkit-box-shadow: inset 0px 2px 13px #999;
125 #qunit-tests table {
126 border-collapse: collapse;
127 margin-top: .2em;
130 #qunit-tests th {
131 text-align: right;
132 vertical-align: top;
133 padding: 0 .5em 0 0;
136 #qunit-tests td {
137 vertical-align: top;
140 #qunit-tests pre {
141 margin: 0;
142 white-space: pre-wrap;
143 word-wrap: break-word;
146 #qunit-tests del {
147 background-color: #e0f2be;
148 color: #374e0c;
149 text-decoration: none;
152 #qunit-tests ins {
153 background-color: #ffcaca;
154 color: #500;
155 text-decoration: none;
158 /*** Test Counts */
160 #qunit-tests b.counts { color: black; }
161 #qunit-tests b.passed { color: #5E740B; }
162 #qunit-tests b.failed { color: #710909; }
164 #qunit-tests li li {
165 margin: 0.5em;
166 padding: 0.4em 0.5em 0.4em 0.5em;
167 background-color: #fff;
168 border-bottom: none;
169 list-style-position: inside;
172 /*** Passing Styles */
174 #qunit-tests li li.pass {
175 color: #5E740B;
176 background-color: #fff;
177 border-left: 26px solid #C6E746;
180 #qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; }
181 #qunit-tests .pass .test-name { color: #366097; }
183 #qunit-tests .pass .test-actual,
184 #qunit-tests .pass .test-expected { color: #999999; }
186 #qunit-banner.qunit-pass { background-color: #C6E746; }
188 /*** Failing Styles */
190 #qunit-tests li li.fail {
191 color: #710909;
192 background-color: #fff;
193 border-left: 26px solid #EE5757;
194 white-space: pre;
197 #qunit-tests > li:last-child {
198 border-radius: 0 0 15px 15px;
199 -moz-border-radius: 0 0 15px 15px;
200 -webkit-border-bottom-right-radius: 15px;
201 -webkit-border-bottom-left-radius: 15px;
204 #qunit-tests .fail { color: #000000; background-color: #EE5757; }
205 #qunit-tests .fail .test-name,
206 #qunit-tests .fail .module-name { color: #000000; }
208 #qunit-tests .fail .test-actual { color: #EE5757; }
209 #qunit-tests .fail .test-expected { color: green; }
211 #qunit-banner.qunit-fail { background-color: #EE5757; }
214 /** Result */
216 #qunit-testresult {
217 padding: 0.5em 0.5em 0.5em 2.5em;
219 color: #2b81af;
220 background-color: #D2E0E6;
222 border-bottom: 1px solid white;
224 #qunit-testresult .module-name {
225 font-weight: bold;
228 /** Fixture */
230 #qunit-fixture {
231 position: absolute;
232 top: -10000px;
233 left: -10000px;
234 width: 1000px;
235 height: 1000px;