Ticket #28883: 28883.5.diff
| File 28883.5.diff, 1.6 KB (added by , 11 years ago) |
|---|
-
wp-admin/css/common.css
1846 1846 font-size: 30px; 1847 1847 line-height: 50px; 1848 1848 font-weight: bold; 1849 max-width: 7 60px;1849 max-width: 730px; 1850 1850 position: absolute; 1851 1851 left: 20px; 1852 1852 top: 145px; 1853 padding: 0 15px;1854 1853 margin: 0; 1855 1854 color: #fff; 1856 1855 background: rgba( 30, 30, 30, 0.9 ); … … 1857 1856 text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 ); 1858 1857 -webkit-box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 ); 1859 1858 box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 ); 1860 -webkit-border-radius: 8px;1861 border-radius: 8px;1859 -webkit-border-radius: 3px; 1860 border-radius: 3px; 1862 1861 } 1863 1862 1863 #plugin-information-title.with-banner h2 span { 1864 display: block; 1865 margin: 0 15px; 1866 overflow: hidden; 1867 text-overflow: ellipsis; 1868 width: 700px; 1869 } 1870 1864 1871 #plugin-information-title div.vignette { 1865 1872 display: none; 1866 1873 } -
wp-admin/includes/plugin-install.php
384 384 <?php 385 385 } 386 386 387 echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><h2> {$api->name}</h2></div>";387 echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><h2><span title='{$api->name}'>{$api->name}</span></h2></div>"; 388 388 echo "<div id='{$_tab}-tabs' class='{$_with_banner}'>\n"; 389 389 390 390 foreach ( (array) $api->sections as $section_name => $content ) {