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

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

Issue 2966413002: Show entire URLs instead of horizontal scrollbars in about:media-internals (Closed)
Patch Set: 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 | « no previous file | no next file » | 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 padding: 2px 5px; 183 padding: 2px 5px;
184 margin-bottom: 5px; 184 margin-bottom: 5px;
185 word-break: break-all;
sandersd (OOO until July 31) 2017/07/31 21:23:30 Are you sure that we want this in all selectable b
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: #4AA9E4;
193 color: white; 194 color: white;
194 } 195 }
195 196
196 label.destructed-player { 197 label.destructed-player {
197 background-color: #E4854A; 198 background-color: #E4854A;
198 } 199 }
199 200
200 .no-players-selected #players .property-wrapper, 201 .no-players-selected #players .property-wrapper,
201 .no-players-selected #players #log-wrapper { 202 .no-players-selected #players #log-wrapper {
202 display: none; 203 display: none;
203 } 204 }
204 205
205 .no-components-selected #audio .property-wrapper { 206 .no-components-selected #audio .property-wrapper {
206 display: none; 207 display: none;
207 } 208 }
208 209
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698