Changeset 7993
- Timestamp:
- 05/25/2008 08:39:16 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r7988 r7993 209 209 } 210 210 211 #adminmenu a:hover, #sidemenu a:hover {211 #adminmenu a:hover, #sidemenu a:hover, .ui-tabs-nav a:hover { 212 212 color: #97c4d8; 213 213 } … … 297 297 } 298 298 299 #adminmenu a {299 #adminmenu a, .ui-tabs-nav a { 300 300 color: #cfebf6; 301 301 } … … 305 305 } 306 306 /* Because we don't want visited on these links */ 307 #adminmenu a.current, #sidemenu a.current {307 #adminmenu a.current, #sidemenu a.current, .ui-tabs-selected a, .ui-tabs-selected a:hover { 308 308 background-color: #fff; 309 309 border-color: #07273e; -
trunk/wp-admin/css/colors-fresh.css
r7988 r7993 197 197 } 198 198 199 .submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #adminmenu a:hover, #sidemenu a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover, #media-upload a.delete:hover, #media-upload a.del-link:hover {199 .submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #adminmenu a:hover, #sidemenu a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover, #media-upload a.delete:hover, #media-upload a.del-link:hover, .ui-tabs-nav a:hover { 200 200 color: #d54e21; 201 201 } … … 280 280 } 281 281 282 #adminmenu a, #submenu a, #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, #media-upload a.del-link, #media-upload a.delete, a {282 #adminmenu a, #submenu a, #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, #media-upload a.del-link, #media-upload a.delete, .ui-tabs-nav a, a { 283 283 color: #2583ad; 284 284 } 285 285 286 286 /* Because we don't want visited on these links */ 287 #adminmenu a.current, #sidemenu a.current {287 #adminmenu a.current, #sidemenu a.current, .ui-tabs-selected a, .ui-tabs-selected a:hover { 288 288 background-color: #fff; 289 289 border-color: #c6d9e9; -
trunk/wp-admin/css/press-this.css
r7983 r7993 78 78 border-style: solid; 79 79 border-width: 1px; 80 border-color: #C6D9E9 rgb(198, 217, 233) rgb(255, 255, 255);81 color: #D54E21;82 80 } 83 81 … … 100 98 .ui-tabs-loading em { 101 99 padding: 0 0 0 20px; 102 background: url(. /images/loading.gif) no-repeat 0 50%;100 background: url(../images/loading.gif) no-repeat 0 50%; 103 101 } 104 102 … … 359 357 border-top-right-radius: 3px; 360 358 } 359 360 .hidden { 361 display: none; 362 } -
trunk/wp-admin/press-this.php
r7984 r7993 87 87 <p class="submit"> 88 88 <input type="submit" value="<?php _e('Publish') ?>" onclick="document.getElementById('photo_saving').style.display = '';"/> 89 <img src=" /images/bookmarklet_loader.gif" alt="" id="photo_saving" style="width:16px; height:16px; vertical-align:-4px; display:none;"/>89 <img src="images/loading.gif" alt="" id="photo_saving" style="width:16px; height:16px; vertical-align:-4px; display:none;"/> 90 90 </p> 91 91 </div> … … 156 156 tab_focus : ":next", 157 157 plugins : "safari,inlinepopups", 158 entit y_encoding : "raw"158 entities : "38,amp,60,lt,62,gt" 159 159 }); 160 160 <?php } ?> … … 200 200 wp_enqueue_script('jquery-ui-tabs'); 201 201 add_thickbox(); 202 wp_ admin_css('press-this');203 wp_ admin_css( 'colors' );202 wp_enqueue_style('press-this'); 203 wp_enqueue_style( 'colors' ); 204 204 wp_enqueue_script('post'); 205 205 206 do_action('admin_print_s cripts');207 do_action('admin_print_s tyles');206 do_action('admin_print_styles'); 207 do_action('admin_print_scripts'); 208 208 do_action('admin_head'); 209 209 ?> … … 332 332 <h2><?php _e('Caption') ?></h2> 333 333 <div class="editor-container"> 334 <textarea name="content" id="photo_post_two" style="" class="mceEditor"><?php echo $selection;?> 335 <a href="<?php echo attribute_escape($url);?>"><?php echo $title;?></a> </textarea> 334 <textarea name="content" id="photo_post_two" style="" class="mceEditor"> 335 <?php echo $selection; ?> 336 <p><a href="<?php echo attribute_escape($url);?>"><?php echo $title;?></a> </p> 337 </textarea> 336 338 </div> 337 339 … … 361 363 <h2><?php _e('Post') ?></h2> 362 364 <div class="editor-container"> 363 <textarea name="content" id="regular_post_two" style="height:170px;width:100%;" class="mceEditor"><?php echo $selection;?><a href="<?php echo $url;?>"><?php echo $title;?></a></textarea> 365 <textarea name="content" id="regular_post_two" style="height:170px;width:100%;" class="mceEditor"> 366 <?php echo $selection; ?> 367 <p><a href="<?php echo $url;?>"><?php echo $title;?></a> </p> 368 </textarea> 364 369 </div> 365 366 370 <?php tag_div(); ?> 367 371 … … 389 393 <h2><?php _e('Quote') ?></h2> 390 394 <div class="editor-container"> 391 <textarea name="content" id="quote_post_one" style="height:130px;width:100%;" class="mceEditor"><?php echo $selection;?></textarea> 392 </div> 393 394 <h2><?php _e('Source <span class="optional">(optional)</span>') ?></h2> 395 <textarea name="content" id="quote_post_one" style="height:130px;width:100%;" class="mceEditor"> 396 <?php echo $selection; ?> 397 </textarea> 398 </div> 399 400 <h2><?php _e('Source'); ?> <span class="optional"><?php _e('(optional)'); ?></span></h2> 395 401 <div class="editor-container"> 396 <textarea name="content2" id="quote_post_two" style="height:130px;width:100%;" class="mceEditor"><cite><a href="<?php echo $url;?>"><?php echo $title;?></a></cite></textarea> 402 <textarea name="content2" id="quote_post_two" style="height:130px;width:100%;" class="mceEditor"> 403 <p><cite><a href="<?php echo $url;?>"><?php echo $title;?></a></cite> </p> 404 </textarea> 397 405 </div> 398 406 … … 434 442 435 443 <div class="editor-container"> 436 <textarea name="content2" id="video_post_two" style="height:130px;width:100%;" class="mceEditor"><?php echo $selection; ?> <a href="<?php echo $url; ?>"><?php echo $title;?></a></textarea> 444 <textarea name="content2" id="video_post_two" style="height:130px;width:100%;" class="mceEditor"> 445 <?php echo $selection; ?> 446 <p><a href="<?php echo $url; ?>"><?php echo $title; ?></a> </p> 447 </textarea> 437 448 </div> 438 449
Note: See TracChangeset
for help on using the changeset viewer.