Changeset 8271

Show
Ignore:
Timestamp:
07/07/08 21:16:15 (5 months ago)
Author:
mdawaffe
Message:

crazyhorse: brighten dashmenu colors and highlight new post

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/crazyhorse/wp-admin/css/colors-fresh.css

    r8270 r8271  
    485485} 
    486486 
    487 .login #backtoblog a, .curtime, #user_info a
     487.login #backtoblog a, .curtime, #user_info a, #dashmenu a
    488488    color: #ccc; 
    489489} 
  • branches/crazyhorse/wp-admin/menu-header.php

    r8124 r8271  
    1111 
    1212    $first = true; 
    13     // 0 = name, 1 = capability, 2 = file 
     13    // 0 = name, 1 = capability, 2 = file, 3 = class 
    1414    foreach ( $menu as $key => $item ) { 
    1515        $class = array(); 
     
    2727                $class[] = 'current'; 
    2828        } 
     29 
     30        if ( isset($item[3]) ) 
     31            $class[] = $item[3]; 
     32 
    2933        $class = $class ? ' class="' . join( ' ', $class ) . '"' : ''; 
    3034 
  • branches/crazyhorse/wp-admin/menu.php

    r8232 r8271  
    1515$top_menu[5]  = array( __('My Account'), 'read', 'profile.php' ); 
    1616$top_menu[10] = array( __('My Dashboard'), 'read', 'index.php' ); 
    17 $top_menu[15] = array( __('New Post'), 'edit_posts', 'post-new.php' ); 
     17$top_menu[15] = array( __('New Post'), 'edit_posts', 'post-new.php', 'highlighted' ); 
    1818$top_menu[20] = array( sprintf( __('Inbox (%s)'), "<span id='inbox-num' class='count-$inbox_num'><span class='inbox-count'>" . number_format_i18n($inbox_num) . "</span></span>" ), 'edit_posts', 'inbox.php' ); 
    1919$top_menu[25] = array( __('Help'), 'read', 'index.php?help' ); // place holder 
  • branches/crazyhorse/wp-admin/wp-admin.css

    r8244 r8271  
    670670    padding: 0; 
    671671    position: relative; 
     672} 
     673 
     674#dashmenu li.highlighted { 
     675    font-weight: bold; 
    672676} 
    673677