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

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

Issue 2964713004: media: Add more player details in chrome://media-internals player list (Closed)
Patch Set: Bikeshed. Created 3 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
« no previous file with comments | « content/browser/resources/media/client_renderer.js ('k') | media/base/pipeline_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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%;
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 #video-capture-capabilities-table .video-capture-formats-table td { 171 #video-capture-capabilities-table .video-capture-formats-table td {
172 padding:2px; 172 padding:2px;
173 } 173 }
174 174
175 .show-none-if-empty:empty:after { 175 .show-none-if-empty:empty:after {
176 content: "none"; 176 content: "none";
177 color: rgba(0, 0, 0, .5); 177 color: rgba(0, 0, 0, .5);
178 } 178 }
179 179
180 label.selectable-button { 180 label.selectable-button {
181 -webkit-appearance: button;
182 -webkit-user-select: none; 181 -webkit-user-select: none;
183 padding: 2px 5px; 182 display: inline-block;
184 margin-bottom: 5px; 183 background: #BDF;
184 cursor: pointer;
185 border: solid 1px #999;
186 border-radius: 3px;
187 padding: 6px;
188 margin: 4px 0;
189 line-height: 1.4;
185 } 190 }
186 191
187 input.selectable-button { 192 input.selectable-button {
188 display: none; 193 display: none;
189 } 194 }
190 195
191 input.selectable-button:checked + label.selectable-button { 196 input.selectable-button:checked + label.selectable-button {
192 background-color: #4AA9E4; 197 background-color: #2196F3;
193 color: white; 198 border-color: #666;
199 color: #FFF;
200 }
201
202 input.selectable-button:hover + label.selectable-button {
203 border-color: #666;
194 } 204 }
195 205
196 label.destructed-player { 206 label.destructed-player {
197 background-color: #E4854A; 207 background-color: #EEE;
208 }
209
210 .player-name {
211 font-weight: bold;
212 }
213
214 .player-frame {
215 font-style: italic;
198 } 216 }
199 217
200 .no-players-selected #players .property-wrapper, 218 .no-players-selected #players .property-wrapper,
201 .no-players-selected #players #log-wrapper { 219 .no-players-selected #players #log-wrapper {
202 display: none; 220 display: none;
203 } 221 }
204 222
205 .no-components-selected #audio .property-wrapper { 223 .no-components-selected #audio .property-wrapper {
206 display: none; 224 display: none;
207 } 225 }
208 226
OLDNEW
« no previous file with comments | « content/browser/resources/media/client_renderer.js ('k') | media/base/pipeline_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698