File: multitestrunner.css

package info (click to toggle)
chromium 142.0.7444.134-1~deb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,295,436 kB
  • sloc: cpp: 35,487,404; ansic: 7,479,680; javascript: 4,259,373; python: 1,466,839; xml: 757,424; asm: 710,716; pascal: 187,980; sh: 89,247; perl: 88,690; objc: 79,984; sql: 56,984; cs: 42,192; fortran: 24,137; makefile: 22,913; tcl: 15,277; php: 14,018; yacc: 9,005; ruby: 7,553; awk: 3,720; lisp: 3,096; lex: 1,330; ada: 727; jsp: 228; sed: 36
file content (121 lines) | stat: -rw-r--r-- 2,150 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * Copyright 2008 The Closure Library Authors. All Rights Reserved.
 *
 * Use of this source code is governed by the Apache License, Version 2.0.
 * See the COPYING file for details.
 */

@provide 'goog.css.multitestrunner';

.goog-testrunner {
  background-color: #EEE;
  border: 1px solid #999;
  padding: 10px;
  padding-bottom: 25px;
}

.goog-testrunner-progress {
  width: auto;
  height: 20px;
  background-color: #FFF;
  border: 1px solid #999;
}

.goog-testrunner-progress table {
  width: 100%;
  height: 20px;
  border-collapse: collapse;
}

.goog-testrunner-buttons {
  margin-top: 7px;
}

.goog-testrunner-buttons button {
  width: 75px;
}

.goog-testrunner-log,
.goog-testrunner-report,
.goog-testrunner-stats {
  margin-top: 7px;
  width: auto;
  height: 400px;
  background-color: #FFF;
  border: 1px solid #999;
  font: normal medium monospace;
  padding: 5px;
  overflow: auto;  /* Opera doesn't support overflow-y. */
  overflow-y: scroll;
  overflow-x: auto;
}

.goog-testrunner-report div {
  margin-bottom: 6px;
  border-bottom: 1px solid #999;
}

.goog-testrunner-stats table {
  margin-top: 20px;
  border-collapse: collapse;
  border: 1px solid #EEE;
}

.goog-testrunner-stats td,
.goog-testrunner-stats th {
  padding: 2px 6px;
  border: 1px solid #F0F0F0;
}

.goog-testrunner-stats th {
  font-weight: bold;
}

.goog-testrunner-stats .center {
  text-align: center;
}

.goog-testrunner-progress-summary {
  font: bold small sans-serif;
}

.goog-testrunner iframe {
  position: absolute;
  left: -640px;
  top: -480px;
  width: 640px;
  height: 480px;
  margin: 0;
  border: 0;
  padding: 0;
}

.goog-testrunner-report-failure {
  color: #900;
}

.goog-testrunner-reporttab,
.goog-testrunner-logtab,
.goog-testrunner-statstab {
  float: left;
  width: 50px;
  height: 16px;
  text-align: center;
  font: normal small arial, helvetica, sans-serif;
  color: #666;
  background-color: #DDD;
  border: 1px solid #999;
  border-top: 0;
  cursor: pointer;
}

.goog-testrunner-reporttab,
.goog-testrunner-logtab {
  border-right: 0;
}

.goog-testrunner-activetab {
  font-weight: bold;
  color: #000;
  background-color: #CCC;
}