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

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

Issue 12153002: Move chrome://media-internals to content. This allows us to hide implementation details from the pu… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 body {
6 font-family: sans-serif;
7 }
8
9 h2 {
10 margin: 15px 0 5px 0;
11 }
12
13 ul,
14 p,
15 canvas {
16 margin: 0;
17 }
18
19 [hidden] {
20 display: none !important;
21 }
22
23 #media-players td,
24 #media-players th {
25 padding: 0 10px;
26 }
27
28 .audio-stream[status='created'] {
29 color: blue;
30 }
31
32 .audio-stream[status='closed'] {
33 text-decoration: line-through;
34 }
35
36 .audio-stream[status='error'] {
37 color: red;
38 }
39
40 #cache-entries ul,
41 #media-players ul,
42 #media-players {
43 list-style-type: none;
44 }
45
46 .cache-entry {
47 margin: 0 0 5px 0;
48 }
49
50 .cache-entry-controls {
51 font-size: smaller;
52 }
53
54 .cache-table {
55 table-layout: fixed;
56 width: 500px;
57 }
58
59 thead {
60 text-align: left;
61 }
62
63 tfoot {
64 text-align: right;
65 }
66
67 .buffered {
68 display: table;
69 }
70
71 .buffered > div {
72 display: table-row;
73 }
74
75 .buffered > div > div {
76 display: table-cell;
77 vertical-align: bottom;
78 }
79
80 .buffered > div > div:first-child {
81 font-weight: bold;
82 padding-right: 2px;
83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698