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

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

Issue 2712063002: [DevTools] Migrate Popover to GlassPane (Closed)
Patch Set: nit 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 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
index 37f4c0e3ff9e155bd957233c872032c6c44f1680..255f22f0a9774ee2b852c838be8da1b90bc7d3ab 100644
--- a/third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css
+++ b/third_party/WebKit/Source/devtools/front_end/object_ui/objectPopover.css
@@ -4,23 +4,26 @@
* found in the LICENSE file.
*/
+.object-popover-content {
+ display: block;
+ position: relative;
+ overflow: hidden;
+}
+
.object-popover-title {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-weight: bold;
padding-left: 18px;
+ padding-bottom: 2px;
}
.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;
+ width: 100%;
+ height: calc(100% - 13px);
}
.object-popover-container {

Powered by Google App Engine
This is Rietveld 408576698