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

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

Issue 2467093002: [DevTools] Remove scrollbar from chrome://inspect (Closed)
Patch Set: Created 4 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 * { 5 * {
6 box-sizing: border-box; 6 box-sizing: border-box;
7 } 7 }
8 8
9 body { 9 body {
10 color: rgb(48, 57, 66); 10 color: rgb(48, 57, 66);
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 } 423 }
424 424
425 @media (max-width: 47em) { 425 @media (max-width: 47em) {
426 #navigation, 426 #navigation,
427 #content { 427 #content {
428 overflow: visible; 428 overflow: visible;
429 } 429 }
430 } 430 }
431 @media (min-width: 47em) { 431 @media (min-width: 47em) {
432 #container { 432 #container {
433 height: 100vh; 433 max-height: 100vh;
434 } 434 }
435 #navigation, 435 #navigation,
436 #content { 436 #content {
437 height: 100vh; 437 max-height: 100vh;
438 overflow: auto; 438 overflow: auto;
439 } 439 }
440 } 440 }
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