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

Side by Side Diff: chrome/browser/resources/media_internals/media_internals.css

Issue 7479005: Add charts to the resource data section of chrome://media-internals. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Variable name cleanup. Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 h2 {
7 margin: 15px 0px 5px 0px;
8 }
9
10 ul, p {
11 margin: 0px;
12 }
13
6 .audio-stream[status='created'] { 14 .audio-stream[status='created'] {
7 color: blue; 15 color: blue;
8 } 16 }
9 17
10 .audio-stream[status='closed'] { 18 .audio-stream[status='closed'] {
11 text-decoration: line-through; 19 text-decoration: line-through;
12 } 20 }
13 21
14 .audio-stream[status='error'] { 22 .audio-stream[status='error'] {
15 color: red; 23 color: red;
16 } 24 }
25
26 #cache-entries ul {
27 list-style-type: none;
28 }
29
30 .cache-entry {
31 margin: 0px 0px 5px 0px;
32 }
33
34 .cache-entry footer {
35 font-size: smaller;
36 margin: 0px 0px 10px 0px;
37 }
38
39 .cache-entry summary {
40 text-indent: -1em;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698