OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2011 Apple Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * 1. Redistributions of source code must retain the above copyright | |
8 * notice, this list of conditions and the following disclaimer. | |
9 * 2. Redistributions in binary form must reproduce the above copyright | |
10 * notice, this list of conditions and the following disclaimer in the | |
11 * documentation and/or other materials provided with the distribution. | |
12 * | |
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | |
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | |
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | |
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | |
23 * THE POSSIBILITY OF SUCH DAMAGE. | |
24 */ | |
25 | |
26 aside { | |
27 position: absolute; | |
28 top: 3px; | |
29 right: 5px; | |
30 color: #888; | |
31 font-size: 0.9em; | |
32 } | |
33 | |
34 code { | |
35 font-size: 0.9em; | |
36 } | |
37 | |
38 ol { | |
39 list-style-type: none; | |
40 } | |
41 | |
42 dt { | |
43 float: left; | |
44 font-weight: bold; | |
45 margin-right: 3px; | |
46 } | |
47 | |
48 dt::after { | |
49 content: ':'; | |
50 } | |
51 | |
52 #failure-history, #possibly-flaky-tests { | |
53 margin: 0; | |
54 padding: 0 0 0 15px; | |
55 } | |
56 | |
57 #failure-history > li { | |
58 margin-bottom: 10px; | |
59 padding: 10px; | |
60 } | |
61 | |
62 #possibly-flaky-tests > li { | |
63 padding: 1px 0px; | |
64 } | |
65 | |
66 #failure-history > li, #possibly-flaky-tests > li { | |
67 background-color: #f0f0f0; | |
68 padding-left: 50px; | |
69 } | |
70 | |
71 #possibly-flaky-tests > li > :first-child { | |
72 margin-left: -50px; | |
73 } | |
74 | |
75 .flakiness-examples-list { | |
76 padding: 0; | |
77 } | |
78 | |
79 .test-list { | |
80 margin: 0 0 0 -40px; | |
81 padding: 0; | |
82 } | |
83 | |
84 .info { | |
85 font-style: italic; | |
86 } | |
87 | |
88 .existing-and-new-bugs { | |
89 margin-bottom: 0; | |
90 } | |
91 | |
92 .existing-bugs-list, .suspect-revisions-list, .flakiness-examples-list { | |
93 font-size: smaller; | |
94 } | |
95 | |
96 .new-bug-form { | |
97 display: none; | |
98 } | |
99 | |
100 .disclosure-triangle { | |
101 -webkit-transition: -webkit-transform 0.1s; | |
102 -webkit-user-select: none; | |
103 cursor: default; | |
104 display: inline-block; | |
105 padding: 0px 3px; | |
106 } | |
107 | |
108 .expanded > .disclosure-triangle { | |
109 -webkit-transform: rotateZ(90deg); | |
110 } | |
111 | |
112 .expandable { | |
113 height: 0px; | |
114 overflow: hidden; | |
115 } | |
116 | |
117 .expanded > .expandable { | |
118 height: auto; | |
119 } | |
OLD | NEW |