Make WordPress Core

Ticket #23550: 23550.diff

File 23550.diff, 1.5 KB (added by DrewAPicture, 13 years ago)
  • wp-content/themes/twentythirteen/rtl.css

     
    77See http://codex.wordpress.org/Right_to_Left_Language_Support
    88*/
    99
    10 /* TODO */
    11  No newline at end of file
     10/**
     11 * Table of Contents:
     12 *
     13 * 4.0 - Header
     14 *   4.2 - Navigation
     15 * 5.0 - Content
     16 *   5.7 - Post/Paging Navigation
     17 *   5.8 - Author Bio
     18 * ----------------------------------------------------------------------------
     19 */
     20
     21/**
     22 * 4.0 Header
     23 * ----------------------------------------------------------------------------
     24 */
     25
     26
     27/**
     28 * 4.2 Navigation
     29 * ----------------------------------------------------------------------------
     30 */
     31
     32/* Navbar */
     33.main-navigation .searchform {
     34        left: 0;
     35        right: auto;
     36}
     37
     38
     39/**
     40 * 5.0 Content
     41 * ----------------------------------------------------------------------------
     42 */
     43
     44
     45/**
     46 * 5.7 Post/Paging Navigation
     47 * ----------------------------------------------------------------------------
     48 */
     49
     50.navigation .nav-previous {
     51        float: right;
     52}
     53
     54.navigation .nav-next {
     55        float: left;
     56}
     57
     58
     59/**
     60 * 5.8 Author Bio
     61 * ----------------------------------------------------------------------------
     62 */
     63
     64.author-info {
     65        text-align: right; /* gallery & video post formats */
     66}
     67
     68.author-avatar {
     69        float: right;
     70        margin: 0 0 30px 30px;
     71}
     72