Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(981)

Side by Side Diff: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/results.css

Issue 2723703002: Evaluation scores export library and CSS file for the exported HTML file (Closed)
Patch Set: merge Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/noise_generation.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
2 *
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
5 * tree. An additional intellectual property rights grant can be found
6 * in the file PATENTS. All contributing project authors may
7 * be found in the AUTHORS file in the root of the source tree.
8 */
9
10 body{
11 font-family: Arial;
12 font-size: 75%;
13 }
14
15 table{
16 border-top: 1px solid #000;
17 border-right: 1px solid #000;
18 margin: 1em 0 0.2em 0;
19 }
20
21 table thead tr th{
22 font-size: 0.9em;
23 text-align: center;
24 border-bottom: 1px solid #000;
25 border-left: 1px solid #000;
26 min-width: 8em;
27 }
28
29 table thead tr th:first-child{
30 text-transform: uppercase;
31 }
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 .noise-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 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/noise_generation.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698