Make WordPress Core

Ticket #24797: 24797.4.diff

File 24797.4.diff, 1010 bytes (added by rdall, 13 years ago)

Fixed Menu error and inconsistencies in ul, ol in rtl also indents nested lists

  • wp-content/themes/twentythirteen/rtl.css

    diff --git wp-content/themes/twentythirteen/rtl.css wp-content/themes/twentythirteen/rtl.css
    index 36c6ef7..25a539c 100644
    blockquote blockquote { 
    5353        margin-right: 24px;
    5454}
    5555
    56 menu,
    57 ol,
    58 ul {
     56menu {
    5957        padding: 0 40px 0 0;
    6058}
    6159
     60ol, ul {
     61        padding: 0 20px 0 0;
     62}
     63
     64ul ul {
     65        padding: 0 40px 0 0;
     66}
     67
     68ol ol {
     69        padding: 0 40px 0 0;
     70}
     71
     72
    6273caption,
    6374th,
    6475td {
  • wp-content/themes/twentythirteen/style.css

    diff --git wp-content/themes/twentythirteen/style.css wp-content/themes/twentythirteen/style.css
    index 156ea78..d57f2f7 100644
    dd { 
    306306        margin: 0 0 20px;
    307307}
    308308
    309 menu,
     309menu {
     310        margin: 16px 0;
     311        padding: 0 0 0 40px;
     312}
     313
     314
    310315ol,
    311316ul {
    312317        margin: 16px 0;
     318        padding: 0 0 0 20px;
     319        list-style-position: inside;   
     320}
     321
     322ul ul {
    313323        padding: 0 0 0 40px;
    314324}
    315325
     326ol ol {
     327        padding: 0 0 0 40px;
     328}
     329
     330
    316331ul {
    317332        list-style-type: square;
    318333}