Title: [222662] trunk/Source/WebInspectorUI
Revision
222662
Author
[email protected]
Date
2017-09-29 12:54:49 -0700 (Fri, 29 Sep 2017)

Log Message

Web Inspector: Open Resource Dialog icons are blurry (24x24 instead of 32x32)
https://bugs.webkit.org/show_bug.cgi?id=177631
<rdar://problem/34729636>

Patch by Joseph Pecoraro <[email protected]> on 2017-09-29
Reviewed by Matt Baker.

* UserInterface/Views/OpenResourceDialog.css:
(.open-resource-dialog > .tree-outline.large .item):
(.open-resource-dialog > .tree-outline.large .item .icon):
(.open-resource-dialog .tree-outline.large .item .titles):
Make the rows large enough to fit the full 32x32 icon instead of a blurry 24x24.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (222661 => 222662)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-09-29 19:47:28 UTC (rev 222661)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-09-29 19:54:49 UTC (rev 222662)
@@ -1,5 +1,19 @@
 2017-09-29  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Open Resource Dialog icons are blurry (24x24 instead of 32x32)
+        https://bugs.webkit.org/show_bug.cgi?id=177631
+        <rdar://problem/34729636>
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/OpenResourceDialog.css:
+        (.open-resource-dialog > .tree-outline.large .item):
+        (.open-resource-dialog > .tree-outline.large .item .icon):
+        (.open-resource-dialog .tree-outline.large .item .titles):
+        Make the rows large enough to fit the full 32x32 icon instead of a blurry 24x24.
+
+2017-09-29  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Uncaught exception with populate find keyboard shortcut
         https://bugs.webkit.org/show_bug.cgi?id=177672
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css (222661 => 222662)


--- trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css	2017-09-29 19:47:28 UTC (rev 222661)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css	2017-09-29 19:54:49 UTC (rev 222662)
@@ -163,6 +163,21 @@
     --open-resource-dialog-tree-outline-item-padding-start: 10px;
 }
 
+.open-resource-dialog > .tree-outline.large .item {
+    height: 44px;
+    line-height: 42px;
+}
+
+.open-resource-dialog > .tree-outline.large .item .icon {
+    width: 32px;
+    height: 32px;
+    margin-top: 6px;
+}
+
+.open-resource-dialog .tree-outline.large .item .titles {
+    top: 14px;
+}
+
 body[dir=ltr] .open-resource-dialog > .tree-outline .item {
     padding-left: var(--open-resource-dialog-tree-outline-item-padding-start);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to