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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css

Issue 2356423002: [DevTools] Turn WebInspector.Panel into a web component.
Patch Set: partial fixes Created 4 years, 2 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 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 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 * { 7 * {
8 /* This is required for correct sizing of flex items because we rely 8 /* This is required for correct sizing of flex items because we rely
9 * on an old version of the flexbox spec. 9 * on an old version of the flexbox spec.
10 * Longer-term we should remove this, see crbug.com/473625 */ 10 * Longer-term we should remove this, see crbug.com/473625 */
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 left: 0; 65 left: 0;
66 right: 0; 66 right: 0;
67 bottom: 0; 67 bottom: 0;
68 } 68 }
69 69
70 iframe.fill { 70 iframe.fill {
71 width: 100%; 71 width: 100%;
72 height: 100%; 72 height: 100%;
73 } 73 }
74 74
75 iframe.extension {
76 flex: auto;
77 width: 100%;
78 height: 100%;
79 }
80
81 iframe.panel.extension {
82 display: block;
83 height: 100%;
84 }
85
75 .widget { 86 .widget {
76 position: relative; 87 position: relative;
77 flex: auto; 88 flex: auto;
78 } 89 }
79 90
80 .hbox { 91 .hbox {
81 display: flex; 92 display: flex;
82 flex-direction: row !important; 93 flex-direction: row !important;
83 position: relative; 94 position: relative;
84 } 95 }
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 padding: 20px; 318 padding: 20px;
308 position: absolute; 319 position: absolute;
309 top: 0; 320 top: 0;
310 right: 0; 321 right: 0;
311 bottom: 0; 322 bottom: 0;
312 left: 0; 323 left: 0;
313 font-size: 13px; 324 font-size: 13px;
314 overflow: auto; 325 overflow: auto;
315 z-index: 500; 326 z-index: 500;
316 } 327 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698