Ticket #27440: 27440-scrolling-content.diff
File 27440-scrolling-content.diff, 2.4 KB (added by , 10 years ago) |
---|
-
wp-admin/css/common.css
2116 2116 right: 0; 2117 2117 bottom: 0; 2118 2118 left: 0; 2119 height: auto;2119 height: 100%; 2120 2120 padding: 0; 2121 2121 } 2122 2122 2123 #plugin-information-scrollable { 2124 display: block; 2125 overflow: auto; 2126 height: 100%; 2127 padding-bottom: 58px; 2128 } 2129 2130 2131 2123 2132 #plugin-information-title { 2124 2133 margin-right: 56px; /* avoid collisions with the close icon */ 2125 2134 padding: 0 20px; … … 2235 2244 background: #fff; 2236 2245 border-top: 1px solid #ddd; 2237 2246 border-bottom: 1px solid #ddd; 2238 position: absolute;2239 top: 91px;2247 position: relative; 2248 top: 0; 2240 2249 right: 0; 2241 2250 bottom: 58px; 2242 2251 left: 0; 2243 overflow: auto;2244 2252 } 2245 2253 2246 2254 #plugin-information-content.with-banner { 2247 2255 border-top: none; 2248 top: 250px;2249 2256 } 2250 2257 2251 2258 #section-holder { 2252 margin: 0 ;2259 margin: 0 250px 0 0; 2253 2260 padding: 10px 26px; 2254 position: absolute;2261 position: relative; 2255 2262 top: 0; 2256 2263 right: 250px; 2257 2264 bottom: 0; 2258 2265 left: 0; 2259 overflow: auto;2260 2266 } 2261 2267 2262 2268 #section-holder .updated { … … 2269 2275 border-left: 1px solid #ddd; 2270 2276 color: #666; 2271 2277 padding: 16px; 2272 position: absolute;2278 position: relative; 2273 2279 top: 0; 2274 2280 right: 0; 2275 2281 bottom: 0; 2276 2282 width: 217px; 2277 overflow: auto;2283 float: right; 2278 2284 } 2279 2285 2280 2286 #plugin-information .fyi strong { … … 2359 2365 bottom: 0; 2360 2366 left: 0; 2361 2367 height: 28px; 2368 background: rgba( 255, 255, 255, 0.85 ); 2362 2369 } 2363 2370 2364 2371 #plugin-information .section ul, -
wp-admin/includes/plugin-install.php
372 372 } 373 373 374 374 iframe_header( __( 'Plugin Install' ) ); 375 375 376 376 $_with_banner = ''; 377 377 378 378 if ( ! empty( $api->banners ) && ( ! empty( $api->banners['low'] ) || ! empty( $api->banners['high'] ) ) ) { … … 415 415 } 416 416 417 417 echo "</div>\n"; 418 echo '<div id="plugin-information-scrollable">'; 418 419 419 420 ?> 420 421 <div id="<?php echo $_tab; ?>-content" class='<?php echo $_with_banner; ?>'> … … 513 514 } 514 515 echo "</div>\n"; 515 516 echo "</div>\n"; 517 echo "</div>\n"; // #plugin-information-scrollable 516 518 echo "<div id='$tab-footer'>\n"; 517 519 if ( ! empty( $api->download_link ) && ( current_user_can( 'install_plugins' ) || current_user_can( 'update_plugins' ) ) ) { 518 520 $status = install_plugin_install_status( $api );