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

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

Issue 2523823003: [DevTools] Do not collapse toolbars (Closed)
Patch Set: Right aligned the "show all" checkbox Created 4 years 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 (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);
11 font-size: 13px; 11 font-size: 13px;
12 margin: 0; 12 margin: 0;
13 min-width: 47em; 13 min-width: 47em;
14 overflow: hidden;
14 } 15 }
15 16
16 .hidden { 17 .hidden {
17 display: none !important; 18 display: none !important;
18 } 19 }
19 20
20 img { 21 img {
21 flex-shrink: 0; 22 flex-shrink: 0;
22 height: 16px; 23 height: 16px;
23 padding-left: 2px; 24 padding-left: 2px;
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 @media (min-width: 47em) { 432 @media (min-width: 47em) {
432 #container { 433 #container {
433 max-height: 100vh; 434 max-height: 100vh;
434 } 435 }
435 #navigation, 436 #navigation,
436 #content { 437 #content {
437 max-height: 100vh; 438 max-height: 100vh;
438 overflow: auto; 439 overflow: auto;
439 } 440 }
440 } 441 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698