Changeset 11520
- Timestamp:
- 06/04/2009 08:21:17 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r11519 r11520 444 444 445 445 .widefat td, 446 .widefat th { 446 .widefat th, 447 #install-plugins .plugins td, 448 #install-plugins .plugins th { 447 449 border-color: #dfdfdf; 448 450 } -
trunk/wp-admin/css/colors-fresh.css
r11519 r11520 440 440 441 441 .widefat td, 442 .widefat th { 442 .widefat th, 443 #install-plugins .plugins td, 444 #install-plugins .plugins th { 443 445 border-color: #dfdfdf; 444 446 } -
trunk/wp-admin/wp-admin.css
r11511 r11520 75 75 .widefat .plugins th { 76 76 border-bottom: 0 none; 77 } 78 79 #install-plugins .plugins td, 80 #install-plugins .plugins th { 81 border-bottom-style: solid; 82 border-bottom-width: 1px; 77 83 } 78 84 -
trunk/wp-includes/script-loader.php
r11517 r11520 422 422 423 423 // all colors stylesheets need to have the same query strings (cache manifest compat) 424 $colors_version = '20090603 ';425 426 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090 522' );424 $colors_version = '20090603a'; 425 426 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090603' ); 427 427 $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' ); 428 428 … … 432 432 // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string. 433 433 $styles->add( 'colors', true, array(), $colors_version ); 434 $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), $colors_version); // for login.php. Is there a better way? 434 435 // do not refer to these directly, the right one is queued by the above "meta" colors handle 436 $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), $colors_version); 435 437 $styles->add_data( 'colors-fresh', 'rtl', true ); 436 438 $styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), $colors_version);
Note: See TracChangeset
for help on using the changeset viewer.