Changeset 6997
- Timestamp:
- 02/24/2008 02:07:51 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/global.css
r6950 r6997 4 4 5 5 a:hover, .subsubsub a:hover, .subsubsub a.current:hover { color: #d54e21; } 6 7 a:focus, a:active {8 border: none;9 -moz-outline: none;10 outline: none;11 }12 6 13 7 body { … … 49 43 50 44 .subsubsub { 51 color: #999 999;45 color: #999; 52 46 list-style: none; 53 47 margin: 15px 0 10px 0; 54 48 padding: 0; 55 49 white-space: nowrap; 50 font-size: 12px; 56 51 } 57 52 58 53 .subsubsub a { line-height: 200%; padding: 3px; } 59 54 60 .subsubsub a.current { color: #000 000; font-weight: bold; }55 .subsubsub a.current { color: #000; font-weight: bold; } 61 56 62 57 .subsubsub li { display: inline; margin: 0; padding: 0; } 63 58 64 59 .widefat { 65 border: 1px solid #ccc ccc;60 border: 1px solid #ccc; 66 61 border-collapse: collapse; 67 62 width: 100%; 63 clear: both; 68 64 } 69 65 70 66 .widefat td, .widefat th { 71 border-bottom: 1px solid #ccc ccc;72 font-size: 1 2px;67 border-bottom: 1px solid #ccc; 68 font-size: 10px; 73 69 padding: 10px 6px 20px 6px; 74 70 } -
trunk/wp-admin/edit-pages.php
r6980 r6997 103 103 </p> 104 104 105 <br style="clear:both;" />106 107 105 <div class="tablenav"> 108 106 -
trunk/wp-admin/edit-post-rows.php
r6995 r6997 69 69 $title = __('(no title)'); 70 70 ?> 71 <td><strong><a href="post.php?action=edit&post=<?php the_ID(); ?>"><?php echo $title ?></a></strong>71 <td><strong><a class="row-title" href="post.php?action=edit&post=<?php the_ID(); ?>"><?php echo $title ?></a></strong> 72 72 <?php if ('private' == $post->post_status) _e(' — <strong>Private</strong>'); ?></td> 73 73 <?php -
trunk/wp-admin/edit.php
r6992 r6997 119 119 <?php do_action('restrict_manage_posts'); ?> 120 120 121 <br style="clear:both;" />122 123 121 <div class="tablenav"> 124 122 -
trunk/wp-admin/export.php
r6943 r6997 22 22 <h3><?php _e('Optional options'); ?></h3> 23 23 24 <table >24 <table class="niceblue"> 25 25 <tr> 26 26 <th><?php _e('Restrict Author:'); ?></th> -
trunk/wp-admin/import.php
r5887 r6997 45 45 echo " 46 46 <tr $style> 47 <td class='import-system '>$action</td>47 <td class='import-system row-title'>$action</td> 48 48 <td class='desc'>{$data[1]}</td> 49 49 </tr>"; -
trunk/wp-admin/includes/media.php
r6980 r6997 146 146 $multimedia_upload_iframe_src = "media-upload.php?type=multimedia&post_id=$uploading_iframe_ID"; 147 147 $multimedia_upload_iframe_src = apply_filters('multimedia_upload_iframe_src', $multimedia_upload_iframe_src); 148 echo "<a href='$multimedia_upload_iframe_src&TB_iframe=true&height=500&width=640' class='button thickbox'>" . __('Add media'). '</a>';148 echo "<a href='$multimedia_upload_iframe_src&TB_iframe=true&height=500&width=640' class='button-secondary thickbox'>" . __('Add media'). '</a>'; 149 149 } 150 150 add_action( 'media_buttons', 'media_buttons' ); -
trunk/wp-admin/includes/template.php
r6995 r6997 43 43 $pad = str_repeat( '— ', $level ); 44 44 if ( current_user_can( 'manage_categories' ) ) { 45 $edit = "<a href='categories.php?action=edit&cat_ID=$category->term_id'>". ( $name_override ? $name_override : $pad . ' ' . $category->name ) ."</a>";45 $edit = "<a class='row-title' href='categories.php?action=edit&cat_ID=$category->term_id'>". ( $name_override ? $name_override : $pad . ' ' . $category->name ) ."</a>"; 46 46 $default_cat_id = (int) get_option( 'default_category' ); 47 47 } else { … … 71 71 72 72 if ( current_user_can( 'manage_categories' ) ) { 73 $edit = "<a href='link-category.php?action=edit&cat_ID=$category->term_id' class='edit'>". ( $name_override ? $name_override : $category->name ) ."</a>";73 $edit = "<a class='row-title' href='link-category.php?action=edit&cat_ID=$category->term_id' class='edit'>". ( $name_override ? $name_override : $category->name ) ."</a>"; 74 74 $default_cat_id = (int) get_option( 'default_link_category' ); 75 75 } else { … … 236 236 $out .= '<tr id="tag-' . $tag->term_id . '"' . $class . '>'; 237 237 $out .= '<th scope="row" class="check-column"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></th>'; 238 $out .= '<td>< ahref="edit-tags.php?action=edit&tag_ID=' . $tag->term_id . '">' .238 $out .= '<td><strong><a class="row-title" href="edit-tags.php?action=edit&tag_ID=' . $tag->term_id . '">' . 239 239 apply_filters( 'term_name', $tag->name ) . '</a></td>'; 240 240 … … 300 300 $posts_columns['tags'] = __('Tags'); 301 301 if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) ) 302 $posts_columns['comments'] = '< div style="text-align: center"><img alt="" src="images/comment-grey-bubble.png" /></div>';302 $posts_columns['comments'] = '<img class="comment-column" alt="Comments" src="images/comment-grey-bubble.png" /></div>'; 303 303 $posts_columns['status'] = __('Status'); 304 304 $posts_columns = apply_filters('manage_posts_columns', $posts_columns); … … 404 404 $title = __('(no title)'); 405 405 ?> 406 <td><strong><a href="page.php?action=edit&post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong>406 <td><strong><a class="row-title" href="page.php?action=edit&post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong> 407 407 <?php if ('private' == $page->post_status) _e(' — <strong>Private</strong>'); ?></td> 408 408 <?php -
trunk/wp-admin/link-manager.php
r6980 r6997 172 172 case 'name': 173 173 174 echo "<td>< a href='link.php?link_id=$link->link_id&action=edit' class='edit'>$link->link_name</a><br />";174 echo "<td><strong><a class='row-title' href='link.php?link_id=$link->link_id&action=edit' class='edit'>$link->link_name</a></strong><br />"; 175 175 echo $link->link_description . "</td>"; 176 176 break; -
trunk/wp-admin/upload.php
r6981 r6997 122 122 <?php do_action('restrict_manage_posts'); ?> 123 123 124 <br style="clear:both;" />125 126 124 <div class="tablenav"> 127 125 -
trunk/wp-admin/wp-admin.css
r6996 r6997 540 540 } 541 541 542 .row-title { 543 font-size: 12px !important; 544 font-weight: bold; 545 } 546 547 .comment-column { 548 margin-left: -5px; 549 } 550 542 551 .tablenav .dots { 543 552 background-color: #e4f2fd; … … 560 569 561 570 .tablenav { 562 background-color: #e 4f2fd;563 padding: 10px ;571 background-color: #eaf3fa; 572 padding: 10px 10px 8px; 564 573 clear: both; 574 margin-bottom: -10px; 565 575 } 566 576 … … 783 793 } 784 794 795 #submenu li { 796 padding: 0 0 8px 17px; 797 } 798 785 799 #adminmenu li a #awaiting-mod { 786 800 position: absolute; … … 870 884 #submenu a { 871 885 font-size: 14px; 872 padding: 0 0 8px 17px;873 886 } 874 887 … … 1011 1024 #poststuff h3 { 1012 1025 background: #eaf3fa; 1013 font-size: 1 5px;1026 font-size: 14px; 1014 1027 font-weight: bold; 1015 padding: 10px 5px;1028 padding: 8px 5px; 1016 1029 margin: 0 0 10px; 1017 1030 } … … 1105 1118 background-color:#b2b2b2; 1106 1119 background-image:url(images/toggle-arrow.gif); 1107 background-position:-10px 1 8px;1120 background-position:-10px 16px; 1108 1121 background-repeat:no-repeat; 1109 1122 display:block; 1110 height: 44px;1123 height:39px; 1111 1124 margin-left:-19px; 1112 margin-top:-1 3px;1125 margin-top:-11px; 1113 1126 overflow:hidden; 1114 1127 position:absolute; … … 1136 1149 background-color:#2583ad; 1137 1150 background-image:url(images/toggle-arrow.gif); 1138 background-position: 4px 1 8px;1151 background-position: 4px 16px; 1139 1152 } 1140 1153
Note: See TracChangeset
for help on using the changeset viewer.