Make WordPress Core


Ignore:
Timestamp:
11/09/2012 02:06:59 AM (12 years ago)
Author:
nacin
Message:

Final HiDPI tweaks. Don't use rss-2x.png on a front-end widget. Improve selectors for favicons in the toolbar to avoid breaking existing images. Remove unnecessary RTL styles. FIXES #21019.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-widgets.php

    r22439 r22481  
    779779        $title = apply_filters('widget_title', $title, $instance, $this->id_base);
    780780        $url = esc_url(strip_tags($url));
    781         // Didn't want to have to add additional theme CSS for retina version of rss.png
    782         // Forcing 2x here looks fine on non-retina devices
    783         $icon = includes_url('images/rss-2x.png');
     781        $icon = includes_url('images/rss.png');
    784782        if ( $title )
    785783            $title = "<a class='rsswidget' href='$url' title='" . esc_attr__( 'Syndicate this content' ) ."'><img style='border:0' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$link' title='$desc'>$title</a>";
Note: See TracChangeset for help on using the changeset viewer.