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

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: Do not style non-player buttons. 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
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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
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; 181 -webkit-appearance: button;
182 -webkit-user-select: none; 182 -webkit-user-select: none;
183 line-height: 1.5;
183 padding: 2px 5px; 184 padding: 2px 5px;
184 margin-bottom: 5px; 185 margin-bottom: 5px;
185 } 186 }
186 187
187 input.selectable-button { 188 input.selectable-button {
188 display: none; 189 display: none;
189 } 190 }
190 191
191 input.selectable-button:checked + label.selectable-button { 192 input.selectable-button:checked + label.selectable-button {
192 background-color: #4AA9E4; 193 background-color: #9CF;
193 color: white; 194 }
195
196 label.living-player {
197 background-color: #CFD;
194 } 198 }
195 199
196 label.destructed-player { 200 label.destructed-player {
197 background-color: #E4854A; 201 background-color: #DDD;
202 }
203
204 .player-name {
205 font-weight: bold;
206 }
207
208 .player-frame {
209 font-style: italic;
198 } 210 }
199 211
200 .no-players-selected #players .property-wrapper, 212 .no-players-selected #players .property-wrapper,
201 .no-players-selected #players #log-wrapper { 213 .no-players-selected #players #log-wrapper {
202 display: none; 214 display: none;
203 } 215 }
204 216
205 .no-components-selected #audio .property-wrapper { 217 .no-components-selected #audio .property-wrapper {
206 display: none; 218 display: none;
207 } 219 }
208 220
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698