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

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

Issue 2703143002: [DevTools] Prepare to move Popover to shadow DOM. (Closed)
Patch Set: fix 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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .object-popover-title {
8 text-overflow: ellipsis;
9 overflow: hidden;
10 white-space: nowrap;
11 font-weight: bold;
12 padding-left: 18px;
13 }
14
15 .object-popover-tree {
16 border-top: 1px solid rgb(184, 184, 184);
17 overflow: auto;
18 position: absolute;
19 top: 21px;
20 bottom: 5px;
21 left: 5px;
22 right: 5px;
23 margin-top: 1px;
24 }
25
26 .object-popover-container {
27 display: inline-block;
28 }
29
30 .function-popover-title {
31 border-bottom: 1px solid #AAA;
32 margin-bottom: 3px;
33 padding-bottom: 2px;
34 display: flex;
35 justify-content: space-between;
36 align-items: center;
37 }
38
39 .function-popover-title .function-name {
40 font-weight: bold;
41 }
42
43 .function-title-link-container {
44 display: flex;
45 align-items: center;
46 position: relative;
47 margin-left: 10px;
48 }
49
50 .function-location-step-into {
51 position: relative;
52 height: 14px;
53 transform: rotate(-90deg);
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698