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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css

Issue 2744773002: [DevTools] Fix ObjectPopover for objects not staying the same size (Closed)
Patch Set: Created 3 years, 9 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 2017 The Chromium Authors. All rights reserved. 2 * Copyright 2017 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 .object-popover-content { 7 .object-popover-content {
8 display: block; 8 display: block;
9 position: relative; 9 position: relative;
10 overflow: hidden; 10 overflow: hidden;
11 flex: 1 1 auto;
11 } 12 }
12 13
13 .object-popover-title { 14 .object-popover-title {
14 text-overflow: ellipsis; 15 text-overflow: ellipsis;
15 overflow: hidden; 16 overflow: hidden;
16 white-space: nowrap; 17 white-space: nowrap;
17 font-weight: bold; 18 font-weight: bold;
18 padding-left: 18px; 19 padding-left: 18px;
19 padding-bottom: 2px; 20 padding-bottom: 2px;
20 } 21 }
(...skipping 27 matching lines...) Expand all
48 align-items: center; 49 align-items: center;
49 position: relative; 50 position: relative;
50 margin-left: 10px; 51 margin-left: 10px;
51 } 52 }
52 53
53 .function-location-step-into { 54 .function-location-step-into {
54 position: relative; 55 position: relative;
55 height: 14px; 56 height: 14px;
56 transform: rotate(-90deg); 57 transform: rotate(-90deg);
57 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698