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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css
diff --git a/third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css b/third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css
new file mode 100644
index 0000000000000000000000000000000000000000..37f4c0e3ff9e155bd957233c872032c6c44f1680
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css
@@ -0,0 +1,54 @@
+/*
+ * Copyright 2017 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.object-popover-title {
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+ font-weight: bold;
+ padding-left: 18px;
+}
+
+.object-popover-tree {
+ border-top: 1px solid rgb(184, 184, 184);
+ overflow: auto;
+ position: absolute;
+ top: 21px;
+ bottom: 5px;
+ left: 5px;
+ right: 5px;
+ margin-top: 1px;
+}
+
+.object-popover-container {
+ display: inline-block;
+}
+
+.function-popover-title {
+ border-bottom: 1px solid #AAA;
+ margin-bottom: 3px;
+ padding-bottom: 2px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.function-popover-title .function-name {
+ font-weight: bold;
+}
+
+.function-title-link-container {
+ display: flex;
+ align-items: center;
+ position: relative;
+ margin-left: 10px;
+}
+
+.function-location-step-into {
+ position: relative;
+ height: 14px;
+ transform: rotate(-90deg);
+}

Powered by Google App Engine
This is Rietveld 408576698