Changeset 9746
- Timestamp:
- 11/18/2008 12:59:57 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r9735 r9746 166 166 'base' => add_query_arg( 'pagenum', '%#%' ), 167 167 'format' => '', 168 'prev_text' => __('&la quo;'),169 'next_text' => __('&ra quo;'),168 'prev_text' => __('←'), 169 'next_text' => __('→'), 170 170 'total' => ceil(wp_count_terms('category') / $catsperpage), 171 171 'current' => $pagenum -
trunk/wp-admin/css/colors-fresh.css
r9733 r9746 540 540 } 541 541 542 #edit-slug-box strong, .login #nav a {542 #edit-slug-box strong, .login #nav a, .tablenav .displaying-num { 543 543 color: #777; 544 544 } … … 1310 1310 background: #eaf2fa; 1311 1311 } 1312 1313 .tablenav .tablenav-pages, { 1314 color: #555; 1315 } 1316 1317 .tablenav .tablenav-pages a { 1318 border-color: #efefef; 1319 background: #eee; 1320 } 1321 1322 .tablenav .tablenav-pages a:hover { 1323 color: #fff; 1324 background-color: #d54e21; 1325 border-color: #d54321; 1326 } 1327 1328 .tablenav .tablenav-pages a:active { 1329 color: #fff !important; 1330 } 1331 1332 .tablenav .tablenav-pages .current { 1333 background: #dfdfdf; 1334 border-color: #dfdfdf; 1335 } -
trunk/wp-admin/edit-comments.php
r9735 r9746 173 173 'base' => add_query_arg( 'apage', '%#%' ), 174 174 'format' => '', 175 'prev_text' => __('&la quo;'),176 'next_text' => __('&ra quo;'),175 'prev_text' => __('←'), 176 'next_text' => __('→'), 177 177 'total' => ceil($total / $comments_per_page), 178 178 'current' => $page -
trunk/wp-admin/edit-link-categories.php
r9735 r9746 94 94 'base' => add_query_arg( 'pagenum', '%#%' ), 95 95 'format' => '', 96 'prev_text' => __('&la quo;'),97 'next_text' => __('&ra quo;'),96 'prev_text' => __('←'), 97 'next_text' => __('→'), 98 98 'total' => ceil(wp_count_terms('link_category') / $catsperpage), 99 99 'current' => $pagenum -
trunk/wp-admin/edit-pages.php
r9735 r9746 180 180 'base' => add_query_arg( 'pagenum', '%#%' ), 181 181 'format' => '', 182 'prev_text' => __('&la quo;'),183 'next_text' => __('&ra quo;'),182 'prev_text' => __('←'), 183 'next_text' => __('→'), 184 184 'total' => $num_pages, 185 185 'current' => $pagenum -
trunk/wp-admin/edit-tags.php
r9735 r9746 162 162 'base' => add_query_arg( 'pagenum', '%#%' ), 163 163 'format' => '', 164 'prev_text' => __('&la quo;'),165 'next_text' => __('&ra quo;'),164 'prev_text' => __('←'), 165 'next_text' => __('→'), 166 166 'total' => ceil(wp_count_terms('post_tag') / $tagsperpage), 167 167 'current' => $pagenum -
trunk/wp-admin/edit.php
r9735 r9746 163 163 'base' => add_query_arg( 'paged', '%#%' ), 164 164 'format' => '', 165 'prev_text' => __('&la quo;'),166 'next_text' => __('&ra quo;'),165 'prev_text' => __('←'), 166 'next_text' => __('→'), 167 167 'total' => $wp_query->max_num_pages, 168 168 'current' => $_GET['paged'] -
trunk/wp-admin/includes/media.php
r9733 r9746 1551 1551 'base' => add_query_arg( 'paged', '%#%' ), 1552 1552 'format' => '', 1553 'prev_text' => __('&la quo;'),1554 'next_text' => __('&ra quo;'),1553 'prev_text' => __('←'), 1554 'next_text' => __('→'), 1555 1555 'total' => ceil($wp_query->found_posts / 10), 1556 1556 'current' => $_GET['paged'] -
trunk/wp-admin/includes/plugin-install.php
r9733 r9746 269 269 'base' => add_query_arg('paged', '%#%', $url), 270 270 'format' => '', 271 'prev_text' => __('&la quo;'),272 'next_text' => __('&ra quo;'),271 'prev_text' => __('←'), 272 'next_text' => __('→'), 273 273 'total' => $totalpages, 274 274 'current' => $page -
trunk/wp-admin/themes.php
r9589 r9746 54 54 'base' => add_query_arg( 'pagenum', '%#%' ) . '#themenav', 55 55 'format' => '', 56 'prev_text' => __('&la quo;'),57 'next_text' => __('&ra quo;'),56 'prev_text' => __('←'), 57 'next_text' => __('→'), 58 58 'total' => ceil($theme_total / $per_page), 59 59 'current' => $page -
trunk/wp-admin/upload.php
r9735 r9746 226 226 'base' => add_query_arg( 'paged', '%#%' ), 227 227 'format' => '', 228 'prev_text' => __('&la quo;'),229 'next_text' => __('&ra quo;'),228 'prev_text' => __('←'), 229 'next_text' => __('→'), 230 230 'total' => $page_links_total, 231 231 'current' => $_GET['paged'] -
trunk/wp-admin/user-edit.php
r9506 r9746 161 161 <p><strong><?php _e('User updated.') ?></strong></p> 162 162 <?php if ( $wp_http_referer && !$is_profile_page ) : ?> 163 <p><a href="users.php"><?php _e('&la quo; Back to Authors and Users'); ?></a></p>163 <p><a href="users.php"><?php _e('← Back to Authors and Users'); ?></a></p> 164 164 <?php endif; ?> 165 165 </div> -
trunk/wp-admin/users.php
r9735 r9746 326 326 327 327 <?php if ( $wp_user_search->is_search() ) : ?> 328 <p><a href="users.php"><?php _e('&la quo; Back to All Users'); ?></a></p>328 <p><a href="users.php"><?php _e('← Back to All Users'); ?></a></p> 329 329 <?php endif; ?> 330 330 -
trunk/wp-admin/wp-admin.css
r9738 r9746 716 716 } 717 717 718 .tablenav-pages span.current {719 border: 0 none;720 }721 722 718 p.pagenav { 723 719 margin: 0; … … 765 761 font-size: 11px; 766 762 margin: 0 8px 0 0; 767 color: #555; 768 } 769 770 .tablenav .tablenav-pages a { 763 } 764 765 .tablenav .tablenav-pages a, .tablenav-pages span.current { 771 766 text-decoration: none; 767 border: none; 768 padding: 3px 6px; 769 border-width: 1px; 770 border-style: solid; 771 -moz-border-radius: 5px; 772 -khtml-border-radius: 5px; 773 -webkit-border-radius: 5px; 774 border-radius: 5px; 772 775 } 773 776 774 777 .tablenav .displaying-num { 775 778 margin-right: 10px; 779 font-size: 12px; 780 font-family: Georgia, "Times New Roman", Times, serif; 781 font-style: italic; 776 782 } 777 783 -
trunk/wp-includes/script-loader.php
r9738 r9746 301 301 $rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'press-this-ie', 'plugin-install', 'farbtastic' ); 302 302 303 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '2008111 7' );303 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081118' ); 304 304 $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' ); 305 305 … … 308 308 309 309 $styles->add( 'colors', true ); // Register "meta" stylesheet for admin colors 310 $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '2008111 5'); // for login.php. Is there a better way?310 $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20081117'); // for login.php. Is there a better way? 311 311 $styles->add_data( 'colors-fresh', 'rtl', true ); 312 312
Note: See TracChangeset
for help on using the changeset viewer.