Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/multitestrunner.css
2868 views
1
/*
2
* Copyright 2008 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/* Author: [email protected] (Daniel Pupius) */
9
10
.goog-testrunner {
11
background-color: #EEE;
12
border: 1px solid #999;
13
padding: 10px;
14
padding-bottom: 25px;
15
}
16
17
.goog-testrunner-progress {
18
width: auto;
19
height: 20px;
20
background-color: #FFF;
21
border: 1px solid #999;
22
}
23
24
.goog-testrunner-progress table {
25
width: 100%;
26
height: 20px;
27
border-collapse: collapse;
28
}
29
30
.goog-testrunner-buttons {
31
margin-top: 7px;
32
}
33
34
.goog-testrunner-buttons button {
35
width: 75px;
36
}
37
38
.goog-testrunner-log,
39
.goog-testrunner-report,
40
.goog-testrunner-stats {
41
margin-top: 7px;
42
width: auto;
43
height: 400px;
44
background-color: #FFF;
45
border: 1px solid #999;
46
font: normal medium monospace;
47
padding: 5px;
48
overflow: auto; /* Opera doesn't support overflow-y. */
49
overflow-y: scroll;
50
overflow-x: auto;
51
}
52
53
.goog-testrunner-report div {
54
margin-bottom: 6px;
55
border-bottom: 1px solid #999;
56
}
57
58
.goog-testrunner-stats table {
59
margin-top: 20px;
60
border-collapse: collapse;
61
border: 1px solid #EEE;
62
}
63
64
.goog-testrunner-stats td,
65
.goog-testrunner-stats th {
66
padding: 2px 6px;
67
border: 1px solid #F0F0F0;
68
}
69
70
.goog-testrunner-stats th {
71
font-weight: bold;
72
}
73
74
.goog-testrunner-stats .center {
75
text-align: center;
76
}
77
78
.goog-testrunner-progress-summary {
79
font: bold small sans-serif;
80
}
81
82
.goog-testrunner iframe {
83
position: absolute;
84
left: -640px;
85
top: -480px;
86
width: 640px;
87
height: 480px;
88
margin: 0;
89
border: 0;
90
padding: 0;
91
}
92
93
.goog-testrunner-report-failure {
94
color: #900;
95
}
96
97
.goog-testrunner-reporttab,
98
.goog-testrunner-logtab,
99
.goog-testrunner-statstab {
100
float: left;
101
width: 50px;
102
height: 16px;
103
text-align: center;
104
font: normal small arial, helvetica, sans-serif;
105
color: #666;
106
background-color: #DDD;
107
border: 1px solid #999;
108
border-top: 0;
109
cursor: pointer;
110
}
111
112
.goog-testrunner-reporttab,
113
.goog-testrunner-logtab {
114
border-right: 0;
115
}
116
117
.goog-testrunner-activetab {
118
font-weight: bold;
119
color: #000;
120
background-color: #CCC;
121
}
122
123