Changeset 117938 in webkit


Ignore:
Timestamp:
May 22, 2012 2:22:54 AM (12 years ago)
Author:
yurys@chromium.org
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):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r117933 r117938  
     12012-05-22  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Web Inspector: show more button node should have height multiple of row height
     4        https://bugs.webkit.org/show_bug.cgi?id=87104
     5
     6        Reviewed by Vsevolod Vlasov.
     7
     8        Made "show more" button height multiple of the data grid row height.
     9
     10        * inspector/front-end/ShowMoreDataGridNode.js:
     11        (WebInspector.ShowMoreDataGridNode.prototype.nodeHeight):
     12        * inspector/front-end/dataGrid.css:
     13        (.data-grid button):
     14
    1152012-05-22  Kentaro Hara  <haraken@chromium.org>
    216
  • trunk/Source/WebCore/inspector/front-end/ShowMoreDataGridNode.js

    r117562 r117938  
    136136    nodeHeight: function()
    137137    {
    138         return 33;
     138        return 32;
    139139    }
    140140};
  • trunk/Source/WebCore/inspector/front-end/dataGrid.css

    r112419 r117938  
    159159
    160160.data-grid button {
    161     line-height: 19px;
     161    line-height: 18px;
    162162}
    163163
Note: See TracChangeset for help on using the changeset viewer.