Make WordPress Core

Changeset 24309


Ignore:
Timestamp:
05/20/2013 10:35:08 PM (13 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: first pass to add RTL for editor styles, see #24298. Props obenland for starter patch. Adds table of contents to this file and fixes spelling in style.css ToC.

Location:
trunk/wp-content/themes/twentythirteen
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentythirteen/css/editor-style.css

    r24308 r24309  
    33Description: Used to style the TinyMCE editor.
    44*/
     5
     6
     7/**
     8 * Table of Contents:
     9 *
     10 * 1.0 - Body
     11 * 2.0 - Headings
     12 * 3.0 - Text Elements
     13 * 4.0 - Links
     14 * 5.0 - Alignment
     15 * 6.0 - Tables
     16 * 7.0 - Images
     17 * 8.0 - Post Formats
     18 * 9.0 - RTL
     19 * ----------------------------------------------------------------------------
     20 */
     21
     22
     23/**
     24 * 1.0 Body
     25 * ----------------------------------------------------------------------------
     26 */
    527
    628html .mceContentBody {
     
    1941
    2042/**
    21  * Headings
     43 * 2.0 Headings
    2244 * ----------------------------------------------------------------------------
    2345 */
     
    7496
    7597/**
    76  * Text elements
     98 * 3.0 Text Elements
    7799 * ----------------------------------------------------------------------------
    78100 */
     
    211233
    212234/**
    213  * Links
     235 * 4.0 Links
    214236 * ----------------------------------------------------------------------------
    215237 */
     
    240262
    241263/**
    242  * Alignment
     264 * 5.0 Alignment
    243265 * ----------------------------------------------------------------------------
    244266 */
     
    265287
    266288/**
    267  * Tables
     289 * 6.0 Tables
    268290 * ----------------------------------------------------------------------------
    269291 */
     
    303325
    304326/**
    305  * Images
     327 * 7.0 Images
    306328 * ----------------------------------------------------------------------------
    307329 */
     
    345367
    346368/**
    347  * Post Formats
     369 * 8.0 Post Formats
    348370 * ----------------------------------------------------------------------------
    349371 */
     
    490512    color: #fbfaf3;
    491513}
     514
     515
     516/**
     517 * 9.0 RTL
     518 * ----------------------------------------------------------------------------
     519 */
     520
     521html .mceContentBody.rtl {
     522    direction: rtl;
     523    unicode-bidi: embed;
     524}
     525
     526.rtl ol,
     527.rtl ul {
     528    padding: 0 40px 0 0;
     529}
     530
     531.rtl .wp-caption,
     532.rtl tr th {
     533    text-align: right;
     534}
     535
     536.rtl td {
     537    padding: 6px 0 6px 10px;
     538    text-align: right;
     539}
  • trunk/wp-content/themes/twentythirteen/style.css

    r24286 r24309  
    2121 * 1.0 - Reset
    2222 * 2.0 - Repeatable Patterns
    23  * 3.0 - Site Structure
     23 * 3.0 - Basic Structure
    2424 * 4.0 - Header
    2525 *   4.1 - Site Header
     
    454454
    455455/**
    456  * 2.0 Repeatable patterns
     456 * 2.0 Repeatable Patterns
    457457 * ----------------------------------------------------------------------------
    458458 */
Note: See TracChangeset for help on using the changeset viewer.