Make WordPress Core

Ticket #21441: 21441.1.diff

File 21441.1.diff, 3.1 KB (added by obenland, 12 years ago)
  • wp-content/themes/twentytwelve/rtl.css

     
    88http://codex.wordpress.org/Right_to_Left_Language_Support
    99*/
    1010
     11body {
     12        direction: rtl;
     13        unicode-bidi: embed;
     14}
    1115caption,
    1216th,
    1317td {
     
    1923
    2024/* Images */
    2125.alignright {
    22         float: right;
     26        float: left;
    2327}
    2428.alignleft {
    25         float: left;
     29        float: right;
    2630}
    2731.site-content .gallery-columns-4 .gallery-item {
    2832        padding-left: 2%;
     
    7983-------------------------------------------------------------- */
    8084
    8185img.alignright {
     86        float: left;
     87        margin: 12px 24px 12px 0;
     88        margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
     89}
     90img.alignleft {
    8291        float: right;
    83         margin: 0 0 0 24px;
     92        margin: 12px 0 12px 24px;
     93        margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
    8494}
     95.comment-content li,
    8596.entry-content li {
    8697        margin: 0 24px 0 0;
    87 }
    88 img.alignright {
    89         margin: 12px 0 12px 24px;
    90 }
    91 img.alignleft {
    92         margin: 12px 24px 12px 0;
     98        margin: 0 1.714285714rem 0 0;
    9399}
     100.comment-content td,
    94101.entry-content td {
    95102        padding: 6px 0 6px 10px;
    96103}
     
    135142        margin-right: 0.357142857rem;
    136143        margin-left: auto;
    137144}
     145.commentlist .children {
     146        margin-right: 48px;
     147        margin-right: 3.428571429rem;
     148}
    138149
    139150/* Comment form */
    140151#respond h3#reply-title #cancel-comment-reply-link {
     
    145156label ~ span.required {
    146157        float: right;
    147158        margin: -18px -16px 0 0;
     159        margin: -1.285714286rem -1.142857143rem 0 0;
    148160}
    149161
    150162
     
    154166.page-template-homepage-php .widget-area .widget_text img {
    155167        float: right;
    156168        margin: 8px 0 8px 24px;
     169        margin: 0.571428571rem 0 0.571428571rem 1.714285714rem;
    157170}
    158171
    159172
     
    187200
    188201/* Minimum width of 600 pixels. */
    189202@media screen and (min-width: 600px) {
     203        .site-content {
     204                float: right;
     205        }
     206        .widget-area {
     207                float: left;
     208        }
     209        .site-header h1,
     210        .site-header h2 {
     211                text-align: right;
     212        }
     213        .page-template-homepage-php.has-post-thumbnail article {
     214                float: right;
     215        }
     216        .entry-page-image {
     217                float: left;
     218        }
    190219        .page-template-homepage-php .widget-area .widget_text img {
    191220                float: right;
    192221                margin: 8px 0 8px 24px;
  • wp-content/themes/twentytwelve/editor-style-rtl.css

     
     1/**
     2 * Theme Name: Twenty Twelve
     3 *
     4 * Used to style the TinyMCE editor for RTL languages.
     5 */
     6
     7html .mceContentBody {
     8        direction: rtl;
     9        unicode-bidi: embed;
     10        float: right;
     11}
     12
     13li {
     14        margin: 0 24px 0 0;
     15        margin: 0 1.714285714rem 0 0;
     16}
     17
     18td {
     19        text-align: right;
     20}
     21
     22.wp-caption-dd {
     23        padding-right: 10px;
     24        text-align: right;
     25}
     26
     27.alignleft {
     28        float: right;
     29        margin: 12px 0 12px 24px;
     30        margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
     31}
     32
     33.alignright {
     34        float: left;
     35        margin: 12px 24px 12px 0;
     36        margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
     37}
     38 No newline at end of file