Ticket #28883: 28883.6.diff
| File 28883.6.diff, 1.9 KB (added by , 11 years ago) |
|---|
-
src/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 h2 span, 1864 #plugin-information-title.with-banner h2 span { 1865 display: block; 1866 margin: 0 15px; 1867 overflow: hidden; 1868 text-overflow: ellipsis; 1869 max-width: 100%; 1870 } 1871 #plugin-information-title h2 span { 1872 margin: 0; 1873 } 1874 1864 1875 #plugin-information-title div.vignette { 1865 1876 display: none; 1866 1877 } … … 2786 2797 padding-top: 46px; 2787 2798 } 2788 2799 2800 #plugin-information-title h2 { 2801 max-width: 210px; 2802 } 2803 2789 2804 /* Keep full-width boxes on Edit Post page from causing horizontal scroll */ 2790 2805 div#post-body.metabox-holder.columns-1 { 2791 2806 overflow-x: hidden; -
src/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 ) {