Ticket #28883: 28883.diff
| File 28883.diff, 2.1 KB (added by , 11 years ago) |
|---|
-
wp-admin/css/common.css
2128 2128 right: 0; 2129 2129 left: 0; 2130 2130 height: 56px; 2131 overflow: hidden; 2132 text-overflow: ellipsis; 2133 white-space: nowrap; 2131 position: relative; 2134 2132 } 2135 2133 2136 2134 #plugin-information-title.with-banner { … … 2152 2150 font-size: 30px; 2153 2151 line-height: 50px; 2154 2152 font-weight: bold; 2155 max-width: 760px;2153 max-width: 100%; 2156 2154 position: absolute; 2157 left: 20px;2158 top: 145px;2155 left: 0; 2156 bottom: 56px; 2159 2157 padding: 0 15px; 2160 margin: 0 ;2158 margin: 0 20px; 2161 2159 color: #fff; 2162 2160 background: rgba( 30, 30, 30, 0.9 ); 2163 2161 text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 ); … … 2165 2163 box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 ); 2166 2164 -webkit-border-radius: 8px; 2167 2165 border-radius: 8px; 2166 box-sizing: content-box; 2168 2167 } 2169 2168 2170 2169 #plugin-information-title div.vignette { … … 2175 2174 display: block; 2176 2175 top: 0; 2177 2176 height: 215px; 2178 width: 830px;2179 2177 margin: 0 -20px; 2180 2178 background: transparent; 2181 2179 -webkit-box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 ); … … 2408 2406 } 2409 2407 2410 2408 #plugin-information-title.with-banner h2 { 2411 top: 12px;2409 bottom: 49px; 2412 2410 font-size: 20px; 2413 2411 line-height: 40px; 2412 overflow: hidden; 2413 text-overflow: ellipsis; 2414 white-space: nowrap; 2415 box-sizing: border-box; 2414 2416 } 2415 2417 2416 2418 #plugin-information-title.with-banner div.vignette { -
wp-admin/includes/plugin-install.php
393 393 <?php 394 394 } 395 395 396 echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div>< h2>{$api->name}</h2></div>";396 echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><div class='{$_tab}-name'><h2>{$api->name}</h2></div></div>"; 397 397 echo "<div id='{$_tab}-tabs' class='{$_with_banner}'>\n"; 398 398 399 399 foreach ( (array) $api->sections as $section_name => $content ) {