OLD | NEW |
1 /* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 1 /* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
2 * | 2 * |
3 * Use of this source code is governed by a BSD-style license | 3 * Use of this source code is governed by a BSD-style license |
4 * that can be found in the LICENSE file in the root of the source | 4 * that can be found in the LICENSE file in the root of the source |
5 * tree. An additional intellectual property rights grant can be found | 5 * tree. An additional intellectual property rights grant can be found |
6 * in the file PATENTS. All contributing project authors may | 6 * in the file PATENTS. All contributing project authors may |
7 * be found in the AUTHORS file in the root of the source tree. | 7 * be found in the AUTHORS file in the root of the source tree. |
8 */ | 8 */ |
9 | 9 |
10 body{ | 10 td.selected-score { |
11 font-family: Arial; | 11 background-color: #DDD; |
12 font-size: 75%; | |
13 } | 12 } |
14 | 13 |
15 table{ | 14 .audio-inspector { |
16 border-top: 1px solid #000; | 15 text-align: center; |
17 border-right: 1px solid #000; | |
18 margin: 1em 0 0.2em 0; | |
19 } | 16 } |
20 | 17 |
21 table thead tr th{ | 18 .audio-inspector div{ |
22 font-size: 0.9em; | 19 margin-bottom: 0; |
23 text-align: center; | 20 padding-bottom: 0; |
24 border-bottom: 1px solid #000; | 21 padding-top: 0; |
25 border-left: 1px solid #000; | |
26 min-width: 8em; | |
27 } | 22 } |
28 | 23 |
29 table thead tr th:first-child{ | 24 .audio-inspector div div{ |
30 text-transform: uppercase; | 25 margin-bottom: 0; |
| 26 padding-bottom: 0; |
| 27 padding-top: 0; |
31 } | 28 } |
32 | |
33 table tbody tr td{ | |
34 font-size: 0.8em; | |
35 text-align: center; | |
36 border-bottom: 1px solid #000; | |
37 border-left: 1px solid #000; | |
38 } | |
39 | |
40 table tbody tr td:first-child{ | |
41 font-weight: bold; | |
42 } | |
43 | |
44 table tbody tr td .selected{ | |
45 background-color: #EE9; | |
46 } | |
47 | |
48 table tbody tr td .value{ | |
49 display: inline-block; | |
50 } | |
51 | |
52 .test-data-gen-desc{ | |
53 display: inline-block; | |
54 margin-right: 0.3em; | |
55 border: 1px solid #555; | |
56 color: #555; | |
57 background-color: #EEE; | |
58 padding: 1px; | |
59 font-size: 0.8em; | |
60 } | |
61 | |
62 .inspector{ | |
63 background-color: #FFF; | |
64 border: 3px solid #000; | |
65 display: block; | |
66 padding: 0.5em; | |
67 position: fixed; | |
68 right: 1em; | |
69 top: 1em; | |
70 } | |
71 | |
72 .inspector .property{ | |
73 margin-bottom: 1em; | |
74 } | |
75 | |
76 .inspector .property .name{ | |
77 font-weight: bold; | |
78 } | |
79 | |
80 .inspector .property .value{ | |
81 padding-left: 0.5em; | |
82 } | |
83 | |
84 .inspector .buttons{ | |
85 margin-top: 1em; | |
86 } | |
87 | |
88 .inspector .buttons button{ | |
89 margin: 0 0.25em; | |
90 } | |
OLD | NEW |