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

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: camelCase. 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
« no previous file with comments | « chrome/browser/resources/media_internals/disjoint_range_set_test.html ('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
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-controls {
35 font-size: smaller;
36 }
37
38 .cache-entry summary {
39 text-indent: -1em;
40 }
41
42 .cache-table {
43 table-layout: fixed;
44 width: 500px;
45 }
46
47 .cache-table thead {
48 text-align: left;
49 }
50
51 .cache-table tfoot {
52 text-align: right;
53 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/media_internals/disjoint_range_set_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698