Ticket #19158: 19158.patch
| File 19158.patch, 2.1 KB (added by , 14 years ago) |
|---|
-
wp-admin/css/wp-admin-rtl.dev.css
1323 1323 margin-left: 10px; 1324 1324 } 1325 1325 1326 .freedoms-php .about-wrap ol li:before { 1327 left: auto; 1328 right: -20px; 1329 } 1330 1326 1331 /*------------------------------------------------------------------------------ 1327 1332 23.0 - Misc 1328 1333 ------------------------------------------------------------------------------*/ -
wp-admin/css/wp-admin.dev.css
4890 4890 4891 4891 .freedoms-php .about-wrap ol { 4892 4892 margin: 40px 60px; 4893 counter-reset: item -1; 4893 4894 } 4894 4895 .freedoms-php .about-wrap ol li { 4895 list-style-type: decimal;4896 list-style-type: none; 4896 4897 font-weight: bold; 4898 position: relative; 4897 4899 } 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 } 4898 4907 .freedoms-php .about-wrap ol p { 4899 4908 font-weight: normal; 4900 4909 margin: 0.6em 0; -
wp-admin/freedoms.php
37 37 38 38 <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> 39 39 40 <ol start="0">40 <ol> 41 41 <li><p><?php _e( 'You have the freedom to run the program, for any purpose.' ); ?></p></li> 42 42 <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> 43 43 <li><p><?php _e( 'You have the freedom to redistribute copies of the original program so you can help your neighbor.' ); ?></p></li>