Make WordPress Core

Ticket #10159: rtl-admin-fixes.patch

File rtl-admin-fixes.patch, 1.6 KB (added by sambauers, 15 years ago)
  • wp-content/plugins/hello.php

     
    22/**
    33 * @package Hello_Dolly
    44 * @author Matt Mullenweg
    5  * @version 1.5
     5 * @version 1.5.1
    66 */
    77/*
    88Plugin Name: Hello Dolly
    99Plugin URI: http://wordpress.org/#
    1010Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
    1111Author: Matt Mullenweg
    12 Version: 1.5
     12Version: 1.5.1
    1313Author URI: http://ma.tt/
    1414*/
    1515
     
    6262
    6363// We need some CSS to position the paragraph
    6464function dolly_css() {
     65        // This makes sure that the posinioning is also good for right-to-left languages
     66        global $text_direction;
     67        $x = ( isset( $text_direction ) && 'rtl' == $text_direction ) ? 'left' : 'right';
     68
    6569        echo "
    6670        <style type='text/css'>
    6771        #dolly {
     
    6973                top: 4.5em;
    7074                margin: 0;
    7175                padding: 0;
    72                 right: 215px;
     76                $x: 215px;
    7377                font-size: 11px;
    7478        }
    7579        </style>
  • wp-admin/rtl.css

     
    138138.folded #adminmenu img.wp-menu-image {
    139139        padding: 7px 6px 0 0;
    140140}
     141#adminmenu a.separator {
     142        cursor: e-resize;
     143}
     144.folded #adminmenu a.separator {
     145        cursor: w-resize;
     146}
    141147#adminmenu .wp-submenu .wp-submenu-head {
    142148        padding: 6px 10px 6px 4px;
    143149}