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

Unified 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, 9 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/results.css
diff --git a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/results.css b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/results.css
new file mode 100644
index 0000000000000000000000000000000000000000..313b7111dcfd58e0a11bc3f3ca0a0460e6bdd3cd
--- /dev/null
+++ b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/results.css
@@ -0,0 +1,60 @@
+/* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+body{
+ font-family: Arial;
+ font-size: 75%;
+}
+
+table{
+ border-top: 1px solid #000;
+ border-right: 1px solid #000;
+ margin: 1em 0 0.2em 0;
+}
+
+table thead tr th{
+ font-size: 0.9em;
+ text-align: center;
+ border-bottom: 1px solid #000;
+ border-left: 1px solid #000;
+ min-width: 8em;
+}
+
+table thead tr th:first-child{
+ text-transform: uppercase;
+}
+
+table tbody tr td{
+ font-size: 0.8em;
+ text-align: center;
+ border-bottom: 1px solid #000;
+ border-left: 1px solid #000;
+}
+
+table tbody tr td:first-child{
+ font-weight: bold;
+}
+
+table tbody tr td .selected{
+ background-color: #EE9;
+}
+
+table tbody tr td .value{
+ display: inline-block;
+}
+
+.noise-desc{
+ display: inline-block;
+ margin-right: 0.3em;
+ border: 1px solid #555;
+ color: #555;
+ background-color: #EEE;
+ padding: 1px;
+ font-size: 0.8em;
+}
« 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