Make WordPress Core

Changeset 17131


Ignore:
Timestamp:
12/24/2010 05:43:01 PM (14 years ago)
Author:
nacin
Message:

Fix some tab CSS in Press This. props dd32. Also adjust menu bits to default to gray, and then add rules to blue. see #15561.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/colors-classic.dev.css

    r16931 r17131  
    502502}
    503503
    504 /* Because we don't want visited on these links */
    505 body.press-this .tabs a,
    506 body.press-this .tabs a:hover {
    507     background-color: #fff;
    508     border-color: #c6d9e9;
    509     border-bottom-color: #fff;
    510     color: #d54e21;
    511 }
    512 
    513504#adminmenu #awaiting-mod,
    514505#adminmenu .update-plugins,
     
    13971388}
    13981389
     1390body.press-this .postbox:hover .handlediv,
     1391body.press-this .stuffbox:hover .handlediv,
    13991392.meta-box-sortables .postbox:hover .handlediv {
    14001393    background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -111px;
     
    14721465}
    14731466
    1474 #post-body ul.category-tabs li.tabs a,
    1475 #post-body ul.add-menu-item-tabs li.tabs a {
     1467#post-body ul.category-tabs li.tabs a,
     1468#post-body ul.add-menu-item-tabs li.tabs a,
     1469body.press-this ul.category-tabs li.tabs a {
    14761470    color: #333;
    14771471}
  • trunk/wp-admin/css/colors-fresh.dev.css

    r16931 r17131  
    502502}
    503503
    504 /* Because we don't want visited on these links */
    505 body.press-this .tabs a,
    506 body.press-this .tabs a:hover {
    507     background-color: #fff;
    508     border-color: #c6d9e9;
    509     border-bottom-color: #fff;
    510     color: #d54e21;
    511 }
    512 
    513504#adminmenu #awaiting-mod,
    514505#adminmenu .update-plugins,
     
    14701461
    14711462#post-body ul.category-tabs li.tabs a,
    1472 #post-body ul.add-menu-item-tabs li.tabs a {
     1463#post-body ul.add-menu-item-tabs li.tabs a,
     1464body.press-this ul.category-tabs li.tabs a {
    14731465    color: #333;
    14741466}
  • trunk/wp-admin/css/press-this.dev.css

    r15858 r17131  
    148148.postbox:hover .handlediv,
    149149.stuffbox:hover .handlediv {
    150     background: transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -111px;
     150    background: transparent url(../images/menu-bits.gif) no-repeat scroll left -111px;
    151151}
    152152
  • trunk/wp-includes/script-loader.php

    r17125 r17131  
    491491
    492492    // all colors stylesheets need to have the same query strings (cache manifest compat)
    493     $colors_version = '20101214';
     493    $colors_version = '20101224';
    494494
    495495    // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
     
    507507    $styles->add( 'install', "/wp-admin/css/install$suffix.css", array(), '20101020' ); // Readme as well
    508508    $styles->add( 'theme-editor', "/wp-admin/css/theme-editor$suffix.css", array(), '20101203' );
    509     $styles->add( 'press-this', "/wp-admin/css/press-this$suffix.css", array(), '20101020' );
     509    $styles->add( 'press-this', "/wp-admin/css/press-this$suffix.css", array(), '20101224' );
    510510    $styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20090514' );
    511511    $styles->add( 'login', "/wp-admin/css/login$suffix.css", array(), '20101020' );
Note: See TracChangeset for help on using the changeset viewer.