Changeset 27173 in webkit


Ignore:
Timestamp:
Oct 28, 2007, 12:08:56 AM (17 years ago)
Author:
timothy@apple.com
Message:

Reviewed by Adam.

Bug 15728: Selected Resource background image gradient has banding
http://bugs.webkit.org/show_bug.cgi?id=15728

  • Reduced images to 1px wide that are tiled horizontally in CSS.
  • Corrected the -webkit-background-size usage to specify auto for the width.
  • page/inspector/Images/attachedShadow.png:
  • page/inspector/Images/bottomShadow.png:
  • page/inspector/Images/darkShadow.png:
  • page/inspector/Images/gradient.png:
  • page/inspector/Images/gradientHighlight.png:
  • page/inspector/Images/gradientHighlightBottom.png:
  • page/inspector/Images/sidebarSelection.png:
  • page/inspector/Images/sidebarSelectionBlurred.png:
  • page/inspector/Images/sidebarSelectionBlurredTall.png:
  • page/inspector/Images/sidebarSelectionGray.png:
  • page/inspector/Images/sidebarSelectionGrayTall.png:
  • page/inspector/Images/sidebarSelectionTall.png:
  • page/inspector/inspector.css:
Location:
trunk/WebCore
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r27171 r27173  
     12007-10-28  Timothy Hatcher  <timothy@apple.com>
     2
     3        Reviewed by Adam.
     4
     5        Bug 15728: Selected Resource background image gradient has banding
     6        http://bugs.webkit.org/show_bug.cgi?id=15728
     7
     8        - Reduced images to 1px wide that are tiled horizontally in CSS.
     9        - Corrected the -webkit-background-size usage to specify auto for the width.
     10
     11        * page/inspector/Images/attachedShadow.png:
     12        * page/inspector/Images/bottomShadow.png:
     13        * page/inspector/Images/darkShadow.png:
     14        * page/inspector/Images/gradient.png:
     15        * page/inspector/Images/gradientHighlight.png:
     16        * page/inspector/Images/gradientHighlightBottom.png:
     17        * page/inspector/Images/sidebarSelection.png:
     18        * page/inspector/Images/sidebarSelectionBlurred.png:
     19        * page/inspector/Images/sidebarSelectionBlurredTall.png:
     20        * page/inspector/Images/sidebarSelectionGray.png:
     21        * page/inspector/Images/sidebarSelectionGrayTall.png:
     22        * page/inspector/Images/sidebarSelectionTall.png:
     23        * page/inspector/inspector.css:
     24
    1252007-10-27  Timothy Hatcher  <timothy@apple.com>
    226
  • trunk/WebCore/page/inspector/inspector.css

    r27141 r27173  
    596596    text-shadow: none;
    597597    background-image: url(Images/gradientHighlight.png), url(Images/gradient.png);
    598     -webkit-background-size: 100%, 100%;
     598    -webkit-background-size: auto 100%, auto 100%;
    599599    background-position: center;
    600600    padding: 2px 4px;
     
    10261026    background-repeat: repeat-x;
    10271027    background-position: bottom;
    1028     -webkit-background-size: 100%;
     1028    -webkit-background-size: auto 100%;
    10291029    -webkit-border-radius: 8px;
    10301030    text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
     
    11741174    background-repeat: repeat-x;
    11751175    background-position: bottom;
    1176     -webkit-background-size: 100%;
     1176    -webkit-background-size: auto 100%;
    11771177    height: 14px;
    11781178    padding: 0 6px;
     
    12191219    background-repeat: no-repeat, repeat-x;
    12201220    background-position: center center, bottom;
    1221     -webkit-background-size: 100%, 100%;;
     1221    -webkit-background-size: auto 100%, auto 100%;
    12221222    height: 5px;
    12231223}
Note: See TracChangeset for help on using the changeset viewer.