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

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

Issue 278953002: DevTools: allow inspecting browsers using custom front-ends. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Manually tested end-to-end. Created 6 years, 7 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
1 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 font-family: Arial, sans-serif; 9 font-family: Arial, sans-serif;
10 font-size: 13px; 10 font-size: 13px;
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 .action { 210 .action {
211 color: rgb(17, 85, 204); 211 color: rgb(17, 85, 204);
212 cursor: pointer; 212 cursor: pointer;
213 margin-right: 15px; 213 margin-right: 15px;
214 } 214 }
215 215
216 .action:hover { 216 .action:hover {
217 text-decoration: underline; 217 text-decoration: underline;
218 } 218 }
219 219
220 .browser-header .action {
221 margin-left: 10px;
222 }
223
220 .list:not(.pages) .subrow { 224 .list:not(.pages) .subrow {
221 min-height: 19px; 225 min-height: 19px;
222 } 226 }
223 227
224 .action.disabled { 228 .action.disabled {
225 opacity: 0.5; 229 opacity: 0.5;
226 pointer-events: none; 230 pointer-events: none;
227 } 231 }
228 232
229 .open > input { 233 .open > input {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 } 383 }
380 384
381 #port-forwarding-config-buttons { 385 #port-forwarding-config-buttons {
382 align-items: center; 386 align-items: center;
383 display: flex; 387 display: flex;
384 } 388 }
385 389
386 #port-forwarding-config-buttons > label { 390 #port-forwarding-config-buttons > label {
387 flex-grow: 1 391 flex-grow: 1
388 } 392 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698