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

Side by Side Diff: content/browser/resources/media/media_internals.css

Issue 68173025: Introduce new interface for MediaInternals updates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix JavaScript test. Use non-exported base. Created 7 years 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 html, 5 html,
6 body, 6 body,
7 #container { 7 #container {
8 margin: 0; 8 margin: 0;
9 padding: 0; 9 padding: 0;
10 width: 100%; 10 width: 100%;
11 height: 100%; 11 height: 100%;
12
13 font-family: 'Lucida Grande', sans-serif;
14 } 12 }
15 13
16 table { 14 table {
17 border-collapse: collapse; 15 font-family: sans-serif;
16 -webkit-font-smoothing: antialiased;
17 font-size: 115%;
18 width: auto;
19 overflow: auto;
20 display: block;
21 }
22 th {
23 background-color: rgb(112, 196, 105);
24 font-weight: normal;
25 color: white;
26 padding: 2px;
27 text-align: center;
28 min-width: 230px;
18 } 29 }
19 td { 30 td {
20 border: 1px solid black; 31 background-color: rgb(238, 238, 238);
32 padding: 2px;
33 color: rgb(111, 111, 111);
21 word-wrap: break-word; 34 word-wrap: break-word;
22 max-width: 200px; 35 min-width: 230px;
23 }
24 thead {
25 color: rgb(50,50,50);
26 font-size: 1.1em;
27 } 36 }
28 37
29 h1, 38 h1,
30 h2, 39 h2,
31 h3 { 40 h3 {
32 color: rgb(50,50,50); 41 color: rgb(50,50,50);
33 } 42 }
34 43
35 #container { 44 #container {
36 display: flex; 45 display: flex;
(...skipping 12 matching lines...) Expand all
49 58
50 #list-wrapper { 59 #list-wrapper {
51 display: flex; 60 display: flex;
52 flex-direction: column; 61 flex-direction: column;
53 justify-content: space-between; 62 justify-content: space-between;
54 align-items: flex-start; 63 align-items: flex-start;
55 align-content: stretch; 64 align-content: stretch;
56 } 65 }
57 66
58 #player-list-wrapper, 67 #player-list-wrapper,
59 #audio-stream-list-wrapper { 68 #audio-component-list-wrapper {
60 flex-grow: 1; 69 flex-grow: 1;
61 align-self: stretch; 70 align-self: stretch;
62 min-width: 200px; 71 min-width: 200px;
63 max-width: 200px;
64 overflow: auto; 72 overflow: auto;
65 } 73 }
66 74
67 #player-list-wrapper ul, 75 #player-list-wrapper ul,
68 #player-list-wrapper li, 76 #player-list-wrapper li,
69 #audio-stream-list-wrapper ul, 77 #audio-component-list-wrapper ul,
70 #audio-stream-list-wrapper li { 78 #audio-component-list-wrapper li {
71 margin: 0; 79 padding: 0px;
72 padding: 0;
73 list-style-type: none; 80 list-style-type: none;
74 } 81 }
75 #list-wrapper button { 82 #list-wrapper button {
76 margin: 0; 83 padding: 0px;
77 padding: 0;
78 width: 170px;
79 } 84 }
80 85
81 #property-wrapper, 86 #property-wrapper,
82 #log-wrapper { 87 #log-wrapper {
83 display:block; 88 display:block;
84 flex-grow: 0.5; 89 flex-grow: 0.5;
85 align-self: stretch; 90 align-self: stretch;
86 overflow: auto; 91 overflow: auto;
87 } 92 }
88 93
89 #log-wrapper > thead { 94 #log-wrapper > thead {
90 position: fixed; 95 position: fixed;
91 } 96 }
92 97
93 #graphs li { 98 #graphs li {
94 list-style-type: none; 99 list-style-type: none;
95 } 100 }
96 101
97 #clipboard-textarea { 102 #clipboard-textarea {
98 position: absolute; 103 position: absolute;
99 width: 50%; 104 width: 50%;
100 height: 50%; 105 height: 50%;
101 106
102 left: 25%; 107 left: 25%;
103 top: 25%; 108 top: 25%;
104 } 109 }
105 110
106 .hidden { 111 .hiddenClipboard {
107 display: none; 112 display: none;
108 } 113 }
114
115 .timestamp {
116 min-width: 115px;
117 }
OLDNEW
« no previous file with comments | « content/browser/resources/media/manager.js ('k') | content/browser/resources/media/media_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698