Ticket #19346: 19346.styles.2.patch
| File 19346.styles.2.patch, 3.7 KB (added by , 14 years ago) |
|---|
-
wp-admin/css/wp-admin.dev.css
4893 4893 padding: 2px; 4894 4894 } 4895 4895 4896 /* Point Releases */ 4897 4898 .about-wrap .point-releases { 4899 margin-top: 5px; 4900 } 4901 .about-wrap .point-releases div { 4902 padding-bottom: 3px; 4903 } 4904 .about-wrap .changelog.point-releases div h3 { 4905 padding-top: 5px; 4906 } 4907 4896 4908 /* WordPress Version Badge */ 4897 4909 4898 4910 .wp-badge { -
wp-admin/css/colors-classic.dev.css
2168 2168 color: #464646; 2169 2169 } 2170 2170 2171 .about-wrap .feature-section img, 2172 .about-wrap .feature-section .image-mask { 2171 .about-wrap .feature-section img { 2173 2172 background: #fff; 2174 2173 border-color: #dfdfdf; 2175 2174 … … 2178 2177 box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 ); 2179 2178 } 2180 2179 2180 .about-wrap .point-releases { 2181 border-bottom: 1px solid #dfdfdf; 2182 } 2183 2181 2184 .about-wrap h4.wp-people-group { 2182 2185 text-shadow: 1px 1px 1px white; 2183 2186 } -
wp-admin/css/colors-fresh.dev.css
1795 1795 color: #464646; 1796 1796 } 1797 1797 1798 .about-wrap .feature-section img, 1799 .about-wrap .feature-section .image-mask { 1798 .about-wrap .feature-section img { 1800 1799 background: #fff; 1801 1800 border-color: #dfdfdf; 1802 1801 … … 1809 1808 text-shadow: 1px 1px 1px white; 1810 1809 } 1811 1810 1811 .about-wrap .point-releases { 1812 border-bottom: 1px solid #dfdfdf; 1813 } 1814 1812 1815 .about-wrap li.wp-person img.gravatar { 1813 1816 -moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); 1814 1817 -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); -
wp-admin/about.php
25 25 26 26 <h2 class="nav-tab-wrapper"> 27 27 <a href="about.php" class="nav-tab nav-tab-active"> 28 <?php printf( __( 'What’s New in %s' ), $display_version); ?>28 <?php _e( 'What’s New' ); ?> 29 29 </a><a href="credits.php" class="nav-tab"> 30 30 <?php _e( 'Credits' ); ?> 31 31 </a><a href="freedoms.php" class="nav-tab"> … … 172 172 <?php 173 173 174 174 include( './admin-footer.php' ); 175 176 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings. 177 return; 178 179 _n_noop( 'Maintenance Release', 'Maintenance Releases' ); 180 _n_noop( 'Security Release', 'Security Releases' ); 181 _n_noop( 'Maintenance and Security Release', 'Maintenance and Security Releases' ); 182 183 /* translators: 1: WordPress version number, 2: number of security issues. */ 184 _n_noop( '<strong>Version %1$s</strong> addressed a security issue.', '<strong>Version %1$s</strong> addressed some security issues.' ); 185 186 /* translators: 1: WordPress version number, 2: plural number of bugs (singular not used). */ 187 _n_noop( '<strong>Version %1$s</strong> addressed %2$s bugs.', '<strong>Version %1$s</strong> addressed %2$s bugs.' ); 188 189 /* translators: 1: WordPress version number, 2: plural number of bugs (singular not used). Singular security issue. */ 190 _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.', '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' ); 191 192 /* translators: 1: WordPress version number, 2: plural number of bugs (singular not used). More than one security issue. */ 193 _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' ); 194 195 __( 'For more information, see <a href="%s">the release post</a>.' ); 196 197 ?> 198 No newline at end of file