Index: Source/devtools/front_end/sources/sourcesPanel.css |
diff --git a/Source/devtools/front_end/sources/sourcesPanel.css b/Source/devtools/front_end/sources/sourcesPanel.css |
index 177cf73ef5e596263cd177dc3de7292503232527..91a75e462d225c28d3656d7a11ab2077a6667fd7 100644 |
--- a/Source/devtools/front_end/sources/sourcesPanel.css |
+++ b/Source/devtools/front_end/sources/sourcesPanel.css |
@@ -136,52 +136,20 @@ |
pointer-events: none; |
} |
-ol.watch-expressions > li.hovered { |
+.watch-expressions div.hovered { |
background-color: #F0F0F0; |
} |
.sidebar-tabbed-pane .watch-expressions { |
- margin-top: 17px; |
-} |
- |
-.properties-tree.watch-expressions { |
- padding-left: 0 !important; |
-} |
- |
-.properties-tree.watch-expressions > li { |
- padding-left: 4px; |
-} |
- |
-.properties-tree.watch-expressions > li > .value { |
- display: inline; |
- position: static; |
-} |
- |
-.properties-tree.watch-expressions > li:not(.parent) { |
- margin-left: 1px; |
- padding-left: 15px; |
-} |
- |
-.properties-tree.watch-expressions > li.hovered { |
- padding-right: 14px; |
-} |
- |
-.watch-expressions > li.editing-sub-part .text-prompt { |
- display: block; |
- width: 100%; |
- overflow: hidden; |
-} |
- |
-.watch-expressions > li.editing-sub-part .value, |
-.watch-expressions > li.editing-sub-part .separator { |
- display: none; |
+ margin-top: 14px; |
+ padding-top: 3px; |
} |
-li.editing-sub-part .delete-button { |
+.watch-expression.watch-expression-editing .delete-button { |
display: none !important; |
} |
-.section .properties .delete-button { |
+.watch-expression .delete-button { |
width: 10px; |
height: 10px; |
background-image: url(Images/deleteIcon.png); |
@@ -194,7 +162,7 @@ li.editing-sub-part .delete-button { |
display: none; |
} |
-.section .properties li.hovered .delete-button { |
+.watch-expression.hovered .delete-button { |
display: inline; |
} |
@@ -249,3 +217,77 @@ li.editing-sub-part .delete-button { |
border-top: 1px solid rgb(189, 189, 189); |
background-color: rgb(255, 255, 194); |
} |
+ |
+.watch-expressions { |
+ overflow-x: hidden; |
+ padding-right: 6px; |
+ padding-bottom: 6px; |
+ padding-top: 2px; |
+} |
+ |
+.watch-expressions .separator { |
+ flex-shrink: 0; |
+} |
+ |
+.watch-expressions .dimmed { |
+ opacity: 0.6; |
+} |
+ |
+.watch-expression-title { |
+ white-space: nowrap; |
+ text-overflow: ellipsis; |
+ overflow: hidden; |
+ line-height: 12px; |
+ padding-top: 1px; |
+ padding-bottom: 1px; |
+ margin-left: 16px; |
+} |
+ |
+.watch-expression .section .header { |
+ min-height: 14px; |
+} |
+ |
+.watch-expressions .name { |
+ color: rgb(136, 19, 145); |
+ flex-shrink: 0; |
+ white-space: nowrap; |
+ text-overflow: ellipsis ; |
+ overflow: hidden; |
+} |
+ |
+.watch-expressions .separator { |
+ flex-shrink: 0; |
+} |
+ |
+.watch-expressions .value { |
+ white-space: nowrap; |
+ display: inline; |
+} |
+ |
+.watch-expression .text-prompt { |
+ text-overflow: clip; |
+ overflow: hidden; |
+ white-space: nowrap; |
+ padding-left: 4px; |
+ -webkit-user-select: text; |
+} |
+ |
+.watch-expression .section > .header::before { |
+ margin-top: 0px; |
+} |
+ |
+.watch-expression.hovered { |
+ padding-right: 14px; |
+} |
+ |
+.watch-expression.watch-expression-editing.hovered { |
+ padding-right: 0px; |
+} |
+ |
+.section .watch-expression-title { |
+ margin-left: 11px; |
+} |
+ |
+.watch-expression-text-prompt-proxy { |
+ margin-left: 12px; |
+} |