Make WordPress Core

Changeset 19860


Ignore:
Timestamp:
02/08/2012 05:55:54 AM (12 years ago)
Author:
nacin
Message:

Add some RTL misses for setup-config. props SergeyBiryukov, fixes #18180.

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/install.dev.css

    r19789 r19860  
    240240
    241241.rtl ul,
    242 .rtl  ol {
     242.rtl ol {
    243243    padding: 5px 22px 5px 5px;
    244244}
     
    260260.rtl #pwd,
    261261.rtl #dbhost,
    262 .rtl prefix,
     262.rtl #prefix,
    263263.rtl #user_login,
    264264.rtl #admin_email,
  • trunk/wp-admin/setup-config.php

    r19791 r19860  
    8282?>
    8383<!DOCTYPE html>
    84 <html xmlns="http://www.w3.org/1999/xhtml">
     84<html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
    8585<head>
    8686<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     
    8989
    9090</head>
    91 <body>
     91<body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>>
    9292<h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
    9393<?php
Note: See TracChangeset for help on using the changeset viewer.