- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / extensions / buildbot / popup.css
1 /**
2  * Copyright 2013 The Chromium Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 body {
8   font-family: sans-serif;
9   font-size: 0.8em;
10   overflow: hidden;
11 }
12
13 a {
14   text-decoration: underline;
15   color: #444;
16 }
17
18 a:hover {
19   color: black;
20   cursor: pointer;
21 }
22
23 .status-label {
24   text-align: right;
25   font-size: 12px;
26   font-weight: bold;
27   min-width: 85px;
28   padding: 0px;
29 }
30
31 .trunk-status-cell {
32   padding: 0px;
33 }
34
35 .trunk-status-cell > iframe {
36   height: 10px;
37   border: none;
38 }
39
40 [data-issue] + .trunk-status-row > td,
41 .closer-status-row + .other-status-row > td {
42   padding-top: 5px;
43 }
44
45 div.issue-status {
46   display: table;
47   border-spacing: 1px 1px;
48   width: 284px;
49   margin: 1px 0px 1px 9px;
50 }
51
52 .issue-status-build {
53   display: table-cell;
54   width: 1px;
55   height: 10px;
56 }
57
58 /* build statuses */
59 .success {
60   color: #FFFFFF;
61   background-color: #8fdf5f;
62   border-color: #4F8530;
63 }
64
65 .failure {
66   color: #FFFFFF;
67   background-color: #e98080;
68   border-color: #A77272;
69 }
70
71 .warnings {
72   color: #FFFFFF;
73   background-color: #ffc343;
74   border-color: #C29D46;
75 }
76
77 .never {
78   color: #FFFFFF;
79   background-color: #f0f0e0;
80   border-color: #A77272;
81 }
82
83 .exception, .retry {
84   color: #FFFFFF;
85   background-color: #e0b0ff;
86   border-color: #ACA0B3;
87 }
88
89 .running {
90   color: #666666;
91   background-color: #fffc6c;
92   border-color: #C5C56D;
93 }