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

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

Issue 7972028: Display active media players on chrome://media-internals. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: fixes Created 9 years, 3 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 { 6 body {
7 margin: 15px 0px 5px 0px; 7 font-family: sans-serif;
8 } 8 }
9 9
10 ul, p { 10 h2 {
11 margin: 0px; 11 margin: 15px 0 5px 0;
12 }
13
14 ul, p, canvas {
15 margin: 0;
16 }
17
18 #media-players td, #media-players th {
arv (Not doing code reviews) 2011/09/23 15:59:01 #media-players td, #media-players th {
scherkus (not reviewing) 2011/09/23 17:43:23 Done.
19 padding: 0 10px;
12 } 20 }
13 21
14 .audio-stream[status='created'] { 22 .audio-stream[status='created'] {
15 color: blue; 23 color: blue;
16 } 24 }
17 25
18 .audio-stream[status='closed'] { 26 .audio-stream[status='closed'] {
19 text-decoration: line-through; 27 text-decoration: line-through;
20 } 28 }
21 29
22 .audio-stream[status='error'] { 30 .audio-stream[status='error'] {
23 color: red; 31 color: red;
24 } 32 }
25 33
26 #cache-entries ul { 34 #cache-entries ul, #media-players ul {
27 list-style-type: none; 35 list-style-type: none;
28 } 36 }
29 37
30 .cache-entry { 38 .cache-entry {
31 margin: 0px 0px 5px 0px; 39 margin: 0 0 5px 0;
32 } 40 }
33 41
34 .cache-entry-controls { 42 .cache-entry-controls {
35 font-size: smaller; 43 font-size: smaller;
36 } 44 }
37 45
38 .cache-entry summary { 46 summary {
39 text-indent: -1em; 47 text-indent: -1em;
40 } 48 }
41 49
42 .cache-table { 50 .cache-table {
43 table-layout: fixed; 51 table-layout: fixed;
44 width: 500px; 52 width: 500px;
45 } 53 }
46 54
47 .cache-table thead { 55 thead {
48 text-align: left; 56 text-align: left;
49 } 57 }
50 58
51 .cache-table tfoot { 59 tfoot {
52 text-align: right; 60 text-align: right;
53 } 61 }
62
63 .buffer-canvas {
64 margin-bottom: -3px;
65 }
66
67 .ellipsis {
68 overflow: hidden;
69 text-overflow: ellipsis;
70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698