Projet

Général

Profil

Paste
Télécharger (4,56 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / jquery_update / replace / ui / external / qunit.css @ 503b3f7b

1 503b3f7b Assos Assos
/**
2
 * QUnit v1.11.0 - A JavaScript Unit Testing Framework
3
 *
4
 * http://qunitjs.com
5
 *
6
 * Copyright 2012 jQuery Foundation and other contributors
7
 * Released under the MIT license.
8
 * http://jquery.org/license
9
 */
10
11 85ad3d82 Assos Assos
/** Font Family and Sizes */
12
13
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
14 503b3f7b Assos Assos
        font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
15 85ad3d82 Assos Assos
}
16
17
#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
18
#qunit-tests { font-size: smaller; }
19
20
21
/** Resets */
22
23 503b3f7b Assos Assos
#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
24 85ad3d82 Assos Assos
        margin: 0;
25
        padding: 0;
26
}
27
28
29
/** Header */
30
31
#qunit-header {
32
        padding: 0.5em 0 0.5em 1em;
33 503b3f7b Assos Assos
34
        color: #8699a4;
35 85ad3d82 Assos Assos
        background-color: #0d3349;
36 503b3f7b Assos Assos
37
        font-size: 1.5em;
38
        line-height: 1em;
39
        font-weight: normal;
40
41
        border-radius: 5px 5px 0 0;
42
        -moz-border-radius: 5px 5px 0 0;
43
        -webkit-border-top-right-radius: 5px;
44
        -webkit-border-top-left-radius: 5px;
45 85ad3d82 Assos Assos
}
46
47
#qunit-header a {
48
        text-decoration: none;
49 503b3f7b Assos Assos
        color: #c2ccd1;
50
}
51
52
#qunit-header a:hover,
53
#qunit-header a:focus {
54
        color: #fff;
55
}
56
57
#qunit-testrunner-toolbar label {
58
        display: inline-block;
59
        padding: 0 .5em 0 .1em;
60 85ad3d82 Assos Assos
}
61
62
#qunit-banner {
63
        height: 5px;
64
}
65
66
#qunit-testrunner-toolbar {
67 503b3f7b Assos Assos
        padding: 0.5em 0 0.5em 2em;
68
        color: #5E740B;
69
        background-color: #eee;
70
        overflow: hidden;
71 85ad3d82 Assos Assos
}
72
73
#qunit-userAgent {
74
        padding: 0.5em 0 0.5em 2.5em;
75
        background-color: #2b81af;
76
        color: #fff;
77
        text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
78
}
79
80 503b3f7b Assos Assos
#qunit-modulefilter-container {
81
        float: right;
82
}
83 85ad3d82 Assos Assos
84
/** Tests: Pass/Fail */
85
86
#qunit-tests {
87
        list-style-position: inside;
88
}
89
90
#qunit-tests li {
91
        padding: 0.4em 0.5em 0.4em 2.5em;
92
        border-bottom: 1px solid #fff;
93
        list-style-position: inside;
94
}
95
96 503b3f7b Assos Assos
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {
97
        display: none;
98
}
99
100 85ad3d82 Assos Assos
#qunit-tests li strong {
101
        cursor: pointer;
102
}
103
104 503b3f7b Assos Assos
#qunit-tests li a {
105
        padding: 0.5em;
106
        color: #c2ccd1;
107
        text-decoration: none;
108
}
109
#qunit-tests li a:hover,
110
#qunit-tests li a:focus {
111
        color: #000;
112
}
113
114
#qunit-tests li .runtime {
115
        float: right;
116
        font-size: smaller;
117
}
118
119
.qunit-assert-list {
120 85ad3d82 Assos Assos
        margin-top: 0.5em;
121
        padding: 0.5em;
122 503b3f7b Assos Assos
123 85ad3d82 Assos Assos
        background-color: #fff;
124 503b3f7b Assos Assos
125
        border-radius: 5px;
126
        -moz-border-radius: 5px;
127
        -webkit-border-radius: 5px;
128 85ad3d82 Assos Assos
}
129
130 503b3f7b Assos Assos
.qunit-collapsed {
131
        display: none;
132
}
133
134
#qunit-tests table {
135
        border-collapse: collapse;
136
        margin-top: .2em;
137
}
138
139
#qunit-tests th {
140
        text-align: right;
141
        vertical-align: top;
142
        padding: 0 .5em 0 0;
143
}
144
145
#qunit-tests td {
146
        vertical-align: top;
147
}
148
149
#qunit-tests pre {
150
        margin: 0;
151
        white-space: pre-wrap;
152
        word-wrap: break-word;
153
}
154
155
#qunit-tests del {
156
        background-color: #e0f2be;
157
        color: #374e0c;
158
        text-decoration: none;
159
}
160
161
#qunit-tests ins {
162
        background-color: #ffcaca;
163
        color: #500;
164
        text-decoration: none;
165
}
166
167
/*** Test Counts */
168
169
#qunit-tests b.counts                       { color: black; }
170
#qunit-tests b.passed                       { color: #5E740B; }
171
#qunit-tests b.failed                       { color: #710909; }
172
173 85ad3d82 Assos Assos
#qunit-tests li li {
174 503b3f7b Assos Assos
        padding: 5px;
175 85ad3d82 Assos Assos
        background-color: #fff;
176
        border-bottom: none;
177
        list-style-position: inside;
178
}
179
180
/*** Passing Styles */
181
182
#qunit-tests li li.pass {
183 503b3f7b Assos Assos
        color: #3c510c;
184 85ad3d82 Assos Assos
        background-color: #fff;
185 503b3f7b Assos Assos
        border-left: 10px solid #C6E746;
186 85ad3d82 Assos Assos
}
187
188 503b3f7b Assos Assos
#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }
189
#qunit-tests .pass .test-name               { color: #366097; }
190 85ad3d82 Assos Assos
191 503b3f7b Assos Assos
#qunit-tests .pass .test-actual,
192
#qunit-tests .pass .test-expected           { color: #999999; }
193 85ad3d82 Assos Assos
194
#qunit-banner.qunit-pass                    { background-color: #C6E746; }
195
196
/*** Failing Styles */
197
198
#qunit-tests li li.fail {
199
        color: #710909;
200
        background-color: #fff;
201 503b3f7b Assos Assos
        border-left: 10px solid #EE5757;
202
        white-space: pre;
203 85ad3d82 Assos Assos
}
204
205 503b3f7b Assos Assos
#qunit-tests > li:last-child {
206
        border-radius: 0 0 5px 5px;
207
        -moz-border-radius: 0 0 5px 5px;
208
        -webkit-border-bottom-right-radius: 5px;
209
        -webkit-border-bottom-left-radius: 5px;
210
}
211 85ad3d82 Assos Assos
212 503b3f7b Assos Assos
#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }
213
#qunit-tests .fail .test-name,
214
#qunit-tests .fail .module-name             { color: #000000; }
215 85ad3d82 Assos Assos
216 503b3f7b Assos Assos
#qunit-tests .fail .test-actual             { color: #EE5757; }
217
#qunit-tests .fail .test-expected           { color: green;   }
218 85ad3d82 Assos Assos
219 503b3f7b Assos Assos
#qunit-banner.qunit-fail                    { background-color: #EE5757; }
220 85ad3d82 Assos Assos
221
222 503b3f7b Assos Assos
/** Result */
223 85ad3d82 Assos Assos
224
#qunit-testresult {
225
        padding: 0.5em 0.5em 0.5em 2.5em;
226 503b3f7b Assos Assos
227 85ad3d82 Assos Assos
        color: #2b81af;
228
        background-color: #D2E0E6;
229
230 503b3f7b Assos Assos
        border-bottom: 1px solid white;
231
}
232
#qunit-testresult .module-name {
233
        font-weight: bold;
234 85ad3d82 Assos Assos
}
235
236
/** Fixture */
237
238
#qunit-fixture {
239
        position: absolute;
240
        top: -10000px;
241
        left: -10000px;
242 503b3f7b Assos Assos
        width: 1000px;
243
        height: 1000px;
244 85ad3d82 Assos Assos
}