Title: [198667] trunk/Source/WebInspectorUI
Revision
198667
Author
[email protected]
Date
2016-03-25 08:23:42 -0700 (Fri, 25 Mar 2016)

Log Message

Web Inspector: Scrolling/selection is broken in Quick Open dialog resource tree
https://bugs.webkit.org/show_bug.cgi?id=155877
<rdar://problem/25356149>

Reviewed by Timothy Hatcher.

Dialog and tree outline now use "display: flex", causing the height of the
tree outline to be based on the height of the dialog. Overflow scrolling
in the tree outline now has the expected behavior.

* UserInterface/Views/OpenResourceDialog.css:
(.open-resource-dialog):
(.open-resource-dialog > .tree-outline):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (198666 => 198667)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-03-25 14:47:49 UTC (rev 198666)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-03-25 15:23:42 UTC (rev 198667)
@@ -1,3 +1,19 @@
+2016-03-25  Matt Baker  <[email protected]>
+
+        Web Inspector: Scrolling/selection is broken in Quick Open dialog resource tree
+        https://bugs.webkit.org/show_bug.cgi?id=155877
+        <rdar://problem/25356149>
+
+        Reviewed by Timothy Hatcher.
+
+        Dialog and tree outline now use "display: flex", causing the height of the
+        tree outline to be based on the height of the dialog. Overflow scrolling
+        in the tree outline now has the expected behavior.
+
+        * UserInterface/Views/OpenResourceDialog.css:
+        (.open-resource-dialog):
+        (.open-resource-dialog > .tree-outline):
+
 2016-03-24  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Reduce forced layouts

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css (198666 => 198667)


--- trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css	2016-03-25 14:47:49 UTC (rev 198666)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css	2016-03-25 15:23:42 UTC (rev 198667)
@@ -24,6 +24,8 @@
  */
 
 .open-resource-dialog {
+    display: flex;
+    flex-direction: column;
     position: absolute;
     left: 50%;
     top: 50px;
@@ -85,6 +87,8 @@
 }
 
 .open-resource-dialog > .tree-outline {
+    display: flex;
+    flex-direction: column;
     overflow-y: scroll;
 
     border-bottom-left-radius: 4px;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to