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

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

Issue 2740803002: [DevTools] Simplify Popover API (Closed)
Patch Set: addressed comments 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;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 font-weight: bold; 44 font-weight: bold;
45 } 45 }
46 46
47 .function-title-link-container { 47 .function-title-link-container {
48 display: flex; 48 display: flex;
49 align-items: center; 49 align-items: center;
50 position: relative; 50 position: relative;
51 margin-left: 10px; 51 margin-left: 10px;
52 } 52 }
53 53
54 .function-title-link-container .devtools-link {
55 white-space: nowrap;
56 overflow: hidden;
57 }
58
54 .function-location-step-into { 59 .function-location-step-into {
55 position: relative; 60 position: relative;
56 height: 14px; 61 height: 14px;
57 transform: rotate(-90deg); 62 transform: rotate(-90deg);
58 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698