Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / jsbuilder / src / generators / app / files / lib / sencha-jasmine / sencha-jasmine.css
1 body {
2     font-family:"Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif;
3     margin:0;
4 }
5
6 .jasmine_reporter > * {
7     margin:10px;
8 }
9
10 .run_spec {
11     float:right;
12     font-size:10px;
13 }
14
15 /*banner*/
16 .banner {
17     position:relative;
18     background:#fff;
19     -webkit-box-shadow:0 0 10px #ccc;
20     padding:4px 0 6px 6px;
21     margin:0 0 10px 0;
22 }
23 .banner .logo {
24     width:120px;
25     height:50px;
26
27     background:url(http://www.sencha.com/assets/images/logo-sencha-sm.png) no-repeat;
28 }
29 .banner .options {
30     position:absolute;
31     top:3px;
32     right:3px;
33     color:#666;
34     font-size:10px;
35 }
36 .banner .options .show {
37     text-align:right;
38 }
39 .banner .options .show > * {
40     display:inline-block;
41 }
42 .banner .options .show label {
43     margin-right:3px;
44 }
45
46 /*runner*/
47 .runner,
48 .suite {
49     display:block;
50
51     text-shadow:0 1px 0 #fff;
52
53     border:1px solid #bbb;
54     border-radius:5px;
55     -moz-border-radius:5px;
56     -webkit-border-radius:5px;
57
58     background:-webkit-gradient(linear, left top, left bottom, from(#eee), to(#d1d1d1));
59
60     -webkit-box-shadow:0 0 10px #ccc;
61
62     padding:6px;
63 }
64 .runner a,
65 .suite a {
66     display:inline-block;
67
68     color:#eee;
69     font-size:11px;
70     text-decoration:none;
71     text-shadow:0 -1px 0 #000;
72
73     border:1px solid #111;
74     border-radius:5px;
75     -moz-border-radius:5px;
76     -webkit-border-radius:5px;
77
78     background:-webkit-gradient(linear, left top, left bottom, from(#555), to(#212121));
79
80     -webkit-background-clip: padding-box;
81
82     padding:1px 4px 2px 4px;
83 }
84 .runner .finished-at {
85     font-size:10px;
86
87     padding-top:1px;
88     padding-left:6px;
89 }
90
91 .runner.running {
92     text-shadow:0 1px 0 #EDECCA;
93
94     border-color:#D1CF84;
95
96     background:-webkit-gradient(linear, left top, left bottom, from(#EDE613), to(#DBD61F));
97 }
98 .runner.running a {
99     display:none;
100 }
101
102 .runner.failed a,
103 .suite.failed a {
104     border-color:#660000;
105
106     background:-webkit-gradient(linear, left top, left bottom, from(#dd0000), to(#880000));
107 }
108
109 .runner.passed a,
110 .suite.passed a {
111     border-color:#006600;
112
113     background:-webkit-gradient(linear, left top, left bottom, from(#00aa00), to(#006600));
114 }
115
116 /*suite*/
117 .suite a.run_spec {
118     display:none;
119 }
120 .suite > a.description {
121     color:#000;
122     font-size:18px;
123     text-shadow:0 1px 0 #fff;
124
125     border:0;
126     background:transparent;
127 }
128 .suite .suite > a.description {
129     font-size:14px;
130 }
131 .suite.failed {
132     border-color:#E0C1C5;
133
134     background:-webkit-gradient(linear, left top, left bottom, from(#FFF7F8), to(#F0DADD));
135 }
136 .suite.failed a.description {
137     color:#440000;
138 }
139 .suite .suite {
140     margin:5px;
141 }
142
143 /*spec*/
144 .spec {
145     margin: 5px;
146     padding-left: 1em;
147     clear: both;
148
149     border:1px solid #ccc;
150     border-radius:5px;
151     -moz-border-radius:5px;
152     -webkit-border-radius:5px;
153
154     background:#fff;
155
156     -webkit-box-shadow:inset 0 0 10px #ddd;
157
158     -webkit-background-clip:padding-box;
159
160     padding:10px;
161 }
162 .spec a.description {
163     display:block;
164
165     border:0;
166
167     background:transparent;
168
169     padding:0;
170
171     color:#000 !important;
172     font-size:16px;
173     text-shadow:none;
174 }
175 .spec .messages {
176     border:1px dashed #ccc;
177     border-radius:5px;
178     -moz-border-radius:5px;
179     -webkit-border-radius:5px;
180
181     background:#f1f1f1;
182
183     margin:10px 0 0 0;
184     padding:5px;
185
186     font-size:11px;
187     line-height:15px;
188 }
189
190 .passed,
191 .skipped {
192     display:none;
193 }
194
195 .runner.passed,
196 .runner.skipped {
197     display:block;
198 }
199
200 .suite.passed {
201     border-color:#AEBFA6;
202
203     background:-webkit-gradient(linear, left top, left bottom, from(#ECF2E9), to(#C8DBBF));
204 }
205
206 .show-passed .passed,
207 .show-skipped .skipped {
208     display:block;
209 }
210
211 .stackTrace {
212   white-space: pre;
213   font-size: .8em;
214   margin-left: 10px;
215   max-height: 5em;
216   overflow: auto;
217   border: 1px inset red;
218   padding: 1em;
219   background: #eef;
220 }
221
222
223 #jasmine_content {
224   position:fixed;
225   right: 100%;
226 }