Changeset 190640 in webkit


Ignore:
Timestamp:
Oct 6, 2015, 1:28:25 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Fix spacing of FindBanner prev/next buttons
https://bugs.webkit.org/show_bug.cgi?id=149717

Patch by Devin Rousso <Devin Rousso> on 2015-10-06
Reviewed by Darin Adler.

The sizing and spacing of the previous and next buttons in the FindBanner
is slightly off and should be readjusted to ensure that both buttons are
the same size and have the same spacing.

  • UserInterface/Views/FindBanner.css:

(.find-banner > button.segmented.right > .glyph):
(.find-banner > button.segmented):
(.find-banner > button.segmented > .glyph):
(.find-banner > button.segmented.left): Deleted.
(.find-banner > button.segmented.left > .glyph): Deleted.
(.find-banner > button.segmented.right): Deleted.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r190632 r190640  
     12015-10-06  Devin Rousso  <dcrousso+webkit@gmail.com>
     2
     3        Web Inspector: Fix spacing of FindBanner prev/next buttons
     4        https://bugs.webkit.org/show_bug.cgi?id=149717
     5
     6        Reviewed by Darin Adler.
     7
     8        The sizing and spacing of the previous and next buttons in the FindBanner
     9        is slightly off and should be readjusted to ensure that both buttons are
     10        the same size and have the same spacing.
     11
     12        * UserInterface/Views/FindBanner.css:
     13        (.find-banner > button.segmented.right > .glyph):
     14        (.find-banner > button.segmented):
     15        (.find-banner > button.segmented > .glyph):
     16        (.find-banner > button.segmented.left): Deleted.
     17        (.find-banner > button.segmented.left > .glyph): Deleted.
     18        (.find-banner > button.segmented.right): Deleted.
     19
    1202015-10-06  Joseph Pecoraro  <pecoraro@apple.com>
    221
  • trunk/Source/WebInspectorUI/UserInterface/Views/FindBanner.css

    r187105 r190640  
    144144    border-top-right-radius: 0;
    145145    border-bottom-right-radius: 0;
    146 
    147146    margin-right: 0;
    148 
    149     padding-left: 6px;
    150     padding-right: 6px;
    151147}
    152148
    153149.find-banner > button.segmented.left > .glyph {
    154150    background-image: -webkit-canvas(find-banner-previous-arrow-normal);
    155     background-size: 7px 11px;
    156     background-repeat: no-repeat;
    157151}
    158152
     
    164158    border-top-left-radius: 0;
    165159    border-bottom-left-radius: 0;
    166 
    167160    margin-left: -1px;
    168 
    169     padding-left: 5px;
    170     padding-right: 7px;
    171161}
    172162
    173163.find-banner > button.segmented.right > .glyph {
    174164    background-image: -webkit-canvas(find-banner-next-arrow-normal);
    175     background-size: 7px 11px;
    176     background-repeat: no-repeat;
     165    margin-left: 1px;
    177166}
    178167
     
    183172.find-banner > button.segmented {
    184173    min-width: 22px;
    185     padding-top: 3px;
    186     padding-bottom: 2px;
     174    padding: 3px 6px 2px;
     175}
     176
     177.find-banner > button.segmented > .glyph {
     178    background-size: 7px 11px;
     179    background-repeat: no-repeat;
    187180}
    188181
Note: See TracChangeset for help on using the changeset viewer.