Making WordPress.org

Changeset 1921


Ignore:
Timestamp:
09/28/2015 09:25:01 PM (9 years ago)
Author:
ocean90
Message:

wp4.css: Make styling of #pagebody ol consistent in all browsers and languages.

roman isn't a valid value for list-style. WebKit-based browsers render it as none, Firefox as decimal. Additionally the RTL stylesheet had defined decimal. For the sake of consistency it's now set to none.

Fixes #1252.

Location:
sites/trunk/wordpress.org/public_html/style
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/wp4-rtl.css

    r1920 r1921  
    176176}
    177177
    178 a.rsslink {background-position: top right; padding-right: 14px; padding-left:0;}
     178a.rsslink {
     179    background-position: top right;
     180    padding-left: 0;
     181    padding-right: 14px;
     182}
    179183
    180184#pagebody ol {
    181185    margin-right: 22px;
    182186    margin-left: 0;
    183     list-style: decimal;
    184187}
    185188
  • sites/trunk/wordpress.org/public_html/style/wp4.css

    r1849 r1921  
    12711271}
    12721272
    1273 a.rsslink {background:url(//s.w.org/style/images/feedicon10.png) top left no-repeat; padding-left: 14px;}
     1273a.rsslink {
     1274    background:url(//s.w.org/style/images/feedicon10.png) top left no-repeat;
     1275    padding-left: 14px;
     1276}
     1277
    12741278#pagebody ol {
    12751279    margin-left: 22px;
    1276     list-style: roman;
     1280    list-style: none;
    12771281}
    12781282
Note: See TracChangeset for help on using the changeset viewer.