Title: [117938] trunk/Source/WebCore
Revision
117938
Author
[email protected]
Date
2012-05-22 02:22:54 -0700 (Tue, 22 May 2012)

Log Message

Web Inspector: show more button node should have height multiple of row height
https://bugs.webkit.org/show_bug.cgi?id=87104

Reviewed by Vsevolod Vlasov.

Made "show more" button height multiple of the data grid row height.

* inspector/front-end/ShowMoreDataGridNode.js:
(WebInspector.ShowMoreDataGridNode.prototype.nodeHeight):
* inspector/front-end/dataGrid.css:
(.data-grid button):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (117937 => 117938)


--- trunk/Source/WebCore/ChangeLog	2012-05-22 09:04:39 UTC (rev 117937)
+++ trunk/Source/WebCore/ChangeLog	2012-05-22 09:22:54 UTC (rev 117938)
@@ -1,3 +1,17 @@
+2012-05-22  Yury Semikhatsky  <[email protected]>
+
+        Web Inspector: show more button node should have height multiple of row height
+        https://bugs.webkit.org/show_bug.cgi?id=87104
+
+        Reviewed by Vsevolod Vlasov.
+
+        Made "show more" button height multiple of the data grid row height.
+
+        * inspector/front-end/ShowMoreDataGridNode.js:
+        (WebInspector.ShowMoreDataGridNode.prototype.nodeHeight):
+        * inspector/front-end/dataGrid.css:
+        (.data-grid button):
+
 2012-05-22  Kentaro Hara  <[email protected]>
 
         [V8] Add an optional 'isolate' argument to throwTypeError()

Modified: trunk/Source/WebCore/inspector/front-end/ShowMoreDataGridNode.js (117937 => 117938)


--- trunk/Source/WebCore/inspector/front-end/ShowMoreDataGridNode.js	2012-05-22 09:04:39 UTC (rev 117937)
+++ trunk/Source/WebCore/inspector/front-end/ShowMoreDataGridNode.js	2012-05-22 09:22:54 UTC (rev 117938)
@@ -135,7 +135,7 @@
      */
     nodeHeight: function()
     {
-        return 33;
+        return 32;
     }
 };
 

Modified: trunk/Source/WebCore/inspector/front-end/dataGrid.css (117937 => 117938)


--- trunk/Source/WebCore/inspector/front-end/dataGrid.css	2012-05-22 09:04:39 UTC (rev 117937)
+++ trunk/Source/WebCore/inspector/front-end/dataGrid.css	2012-05-22 09:22:54 UTC (rev 117938)
@@ -158,7 +158,7 @@
 }
 
 .data-grid button {
-    line-height: 19px;
+    line-height: 18px;
 }
 
 body.inactive .data-grid th.sort-ascending, body.inactive .data-grid th.sort-descending {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to