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

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

Issue 2654483004: [DevTools] Provide a way to delete Indexed DBs (Closed)
Patch Set: Better use of UI.ReportView Created 3 years, 11 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 .hbox { 81 .hbox {
82 display: flex; 82 display: flex;
83 flex-direction: row !important; 83 flex-direction: row !important;
84 position: relative; 84 position: relative;
85 } 85 }
86 86
87 .vbox { 87 .vbox {
88 display: flex; 88 display: flex;
89 flex-direction: column !important; 89 flex-direction: column !important;
90 position: relative; 90 /* position: relative; */
pfeldman 2017/01/25 20:02:45 don't land commented code. Also, this is a big cha
eostroukhov 2017/01/25 20:20:03 Nice catch! I did this for testing and absolutely
91 } 91 }
92 92
93 .view-container > .toolbar { 93 .view-container > .toolbar {
94 border-bottom: 1px solid #eee; 94 border-bottom: 1px solid #eee;
95 } 95 }
96 96
97 .flex-auto { 97 .flex-auto {
98 flex: auto; 98 flex: auto;
99 } 99 }
100 100
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 } 361 }
362 362
363 .force-white-icons [is=ui-icon].spritesheet-largeicons, [is=ui-icon].force-white -icons.spritesheet-largeicons { 363 .force-white-icons [is=ui-icon].spritesheet-largeicons, [is=ui-icon].force-white -icons.spritesheet-largeicons {
364 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x , url(Images/toolbarButtonGlyphs_2x.png) 2x); 364 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x , url(Images/toolbarButtonGlyphs_2x.png) 2x);
365 -webkit-mask-size: 352px 168px; 365 -webkit-mask-size: 352px 168px;
366 background-image: unset; 366 background-image: unset;
367 background-size: unset; 367 background-size: unset;
368 background: unset; 368 background: unset;
369 background-color: white; 369 background-color: white;
370 } 370 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698