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

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

Issue 2721023002: Javascript audio player for the exported HTML file. (Closed)
Patch Set: rebase 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
OLDNEW
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 body{
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 .noise-desc{ 52 .noise-desc{
53 display: inline-block; 53 display: inline-block;
54 margin-right: 0.3em; 54 margin-right: 0.3em;
55 border: 1px solid #555; 55 border: 1px solid #555;
56 color: #555; 56 color: #555;
57 background-color: #EEE; 57 background-color: #EEE;
58 padding: 1px; 58 padding: 1px;
59 font-size: 0.8em; 59 font-size: 0.8em;
60 } 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698