Changeset 8232
- Timestamp:
- 07/01/08 21:58:44 (5 months ago)
- Files:
-
- branches/crazyhorse/wp-admin/menu.php (modified) (2 diffs)
- branches/crazyhorse/wp-admin/wp-admin.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/crazyhorse/wp-admin/menu.php
r8231 r8232 13 13 $top_menu = $top_submenu = $menu = $submenu = array(); 14 14 15 $top_menu[5] = array( __('My Account'), 'read', 'profile.php' );15 $top_menu[5] = array( __('My Account'), 'read', 'profile.php' ); 16 16 $top_menu[10] = array( __('My Dashboard'), 'read', 'index.php' ); 17 17 $top_menu[15] = array( __('New Post'), 'edit_posts', 'post-new.php' ); … … 19 19 $top_menu[25] = array( __('Help'), 'read', 'index.php?help' ); // place holder 20 20 21 $top_submenu['profile.php'][5] = array( __('Something'), 'read', 'profile.php?something' ); // place holder 21 $top_submenu['profile.php'][5] = array( __('Profile'), 'read', 'profile.php' ); 22 $top_submenu['profile.php'][10] = array( __('Stats'), 'read', 'inbox.php?page=stats' ); // place holder 22 23 23 24 branches/crazyhorse/wp-admin/wp-admin.css
r8228 r8232 663 663 664 664 #dashmenu li { 665 display: inline; 665 display: block; 666 float: left; 666 667 list-style: none; 667 text-align: center;668 668 white-space: nowrap; 669 margin: 0; 670 padding: 0; 669 margin: 0 5px 0 0; 670 padding: 0; 671 position: relative; 672 } 673 674 /* Temp */ 675 #dashmenu li.wp-has-submenu > a:after { 676 content: " \25BC"; 671 677 } 672 678 … … 674 680 padding: 5px 6px; 675 681 line-height: 31px; 676 margin-right: 8px; 682 } 683 684 #dashmenu ul { 685 position: absolute; 686 top: 31px; 687 left: 0; 688 background-color: #464646; 689 min-width: 100%; 690 } 691 692 #dashmenu ul li { 693 float: none; 694 margin-left: 5px; 677 695 } 678 696
