Make WordPress Core

Ticket #19158: 19158.patch

File 19158.patch, 2.1 KB (added by SergeyBiryukov, 14 years ago)
  • wp-admin/css/wp-admin-rtl.dev.css

     
    13231323        margin-left: 10px;
    13241324}
    13251325
     1326.freedoms-php .about-wrap ol li:before {
     1327        left: auto;
     1328        right: -20px;
     1329}
     1330
    13261331/*------------------------------------------------------------------------------
    13271332  23.0 - Misc
    13281333------------------------------------------------------------------------------*/
  • wp-admin/css/wp-admin.dev.css

     
    48904890
    48914891.freedoms-php .about-wrap ol {
    48924892        margin: 40px 60px;
     4893        counter-reset: item -1;
    48934894}
    48944895.freedoms-php .about-wrap ol li {
    4895         list-style-type: decimal;
     4896        list-style-type: none;
    48964897        font-weight: bold;
     4898        position: relative;
    48974899}
     4900.freedoms-php .about-wrap ol li:before {
     4901        content: counter(item) ". ";
     4902        counter-increment: item;
     4903        left: -20px;
     4904        top: 3px;
     4905        position: absolute;
     4906}
    48984907.freedoms-php .about-wrap ol p {
    48994908        font-weight: normal;
    49004909        margin: 0.6em 0;
  • wp-admin/freedoms.php

     
    3737
    3838<p class="about-description"><?php printf( __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 'http://wordpress.org/about/license/' ); ?></p>
    3939
    40 <ol start="0">
     40<ol>
    4141        <li><p><?php _e( 'You have the freedom to run the program, for any purpose.' ); ?></p></li>
    4242        <li><p><?php _e( 'You have access to the source code, the freedom to study how the program works, and the freedom to change it to make it do what you wish.' ); ?></p></li>
    4343        <li><p><?php _e( 'You have the freedom to redistribute copies of the original program so you can help your neighbor.' ); ?></p></li>