Changeset 22268
- Timestamp:
- 10/22/2012 07:51:51 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r22239 r22268 196 196 } 197 197 198 .wrap .add-new-h2:focus {199 background: #c7e7fd;200 }201 202 198 .subtitle { 203 199 color: #777; … … 325 321 326 322 a:focus { 327 background: #c7e7fd;328 323 color: #124964; 329 }330 331 a:active {332 background: none;333 outline: thin dotted;334 }335 336 #adminmenu a:active {337 outline: none;338 324 } 339 325 … … 792 778 border-color: #d1e5ee #d1e5ee #d3e9f2; 793 779 color: #888; 780 } 781 782 .wp-admin .wp-editor-wrap .wp-switch-editor:active { 783 background-color: #f5fafd; 794 784 } 795 785 … … 1419 1409 color: #606060; 1420 1410 background: transparent url(../images/arrows.png) no-repeat right 4px; 1421 }1422 1423 #screen-meta-links a:focus {1424 background-color: #c7e7fd;1425 color: #124964;1426 1411 } 1427 1412 -
trunk/wp-admin/css/colors-fresh.css
r22239 r22268 192 192 } 193 193 194 .wrap .add-new-h2:focus {195 background: #c7e7fd;196 }197 198 194 .subtitle { 199 195 color: #777; … … 321 317 322 318 a:focus { 323 background: #c7e7fd;324 319 color: #124964; 325 }326 327 a:active {328 background: none;329 outline: thin dotted;330 }331 332 #adminmenu a:active {333 outline: none;334 320 } 335 321 … … 745 731 color: #777; 746 732 background: transparent url(../images/arrows.png) no-repeat right 4px; 747 }748 749 #screen-meta-links a:focus {750 background-color: #c7e7fd;751 color: #124964;752 733 } 753 734 -
trunk/wp-admin/css/wp-admin.css
r22263 r22268 310 310 311 311 a, 312 input, 312 input[type="text"], 313 input[type="password"], 314 input[type="number"], 315 input[type="search"], 316 input[type="email"], 317 input[type="url"], 313 318 select, 314 319 textarea, 315 320 div { 316 321 outline: 0; 322 } 323 324 a:focus, 325 a:active { 326 outline: thin dotted; 327 } 328 329 #adminmenu a:focus, 330 #adminmenu a:active, 331 .screen-reader-text:focus { 332 outline: none; 317 333 } 318 334 … … 707 723 input[type="url"]:focus, 708 724 select:focus { 709 border-color: #a 1a1a1;725 border-color: #aaa; 710 726 -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1); 711 727 box-shadow: 1px 1px 2px rgba(0,0,0,0.1); … … 1158 1174 #screen-meta-links { 1159 1175 margin: 0 24px 0 0; 1176 } 1177 1178 #screen-meta-links a:focus { 1179 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4); 1180 box-shadow: 1px 1px 1px rgba(0,0,0,0.4); 1181 outline: none; 1160 1182 } 1161 1183 … … 4537 4559 margin-top: 10px; 4538 4560 overflow: hidden; 4561 } 4562 4563 .available-theme a.screenshot:focus { 4564 border-color: #777; 4539 4565 } 4540 4566 … … 6496 6522 height: 67px; 6497 6523 text-indent: -9999px; 6524 outline: none; 6498 6525 overflow: hidden; 6499 6526 padding-bottom: 15px; -
trunk/wp-admin/js/common.js
r22262 r22268 384 384 } 385 385 386 // Blur accessibility link background color onclick387 $(document).on('click.wp-accessibility-blur', 'a', function() {388 $(this).blur();389 });390 391 386 // Scroll into view when focused 392 387 $('#contextual-help-link, #show-settings-link').on( 'focus.scroll-into-view', function(e){ -
trunk/wp-admin/js/post.js
r22250 r22268 125 125 var t = this, ajaxtag = $('div.ajaxtag'); 126 126 127 128 129 127 $('.tagsdiv').each( function() { 128 tagBox.quickClicks(this); 129 }); 130 130 131 131 $('input.tagadd', ajaxtag).click(function(){ … … 139 139 $('input.newtag', ajaxtag).blur(function() { 140 140 if ( this.value == '' ) 141 142 141 $(this).parent().siblings('.taghint').css('visibility', ''); 142 }).focus(function(){ 143 143 $(this).parent().siblings('.taghint').css('visibility', 'hidden'); 144 144 }).keyup(function(e){ … … 157 157 }); 158 158 159 160 159 // save tags on post save/publish 160 $('#post').submit(function(){ 161 161 $('div.tagsdiv').each( function() { 162 162 tagBox.flushTags(this, false, 1); 163 163 }); 164 164 }); … … 166 166 // tag cloud 167 167 $('a.tagcloud-link').click(function(){ 168 tagBox.get( $(this).attr('id') ); 169 $(this).unbind().click(function(){ 170 $(this).siblings('.the-tagcloud').toggle(); 171 return false; 172 }); 168 if ( ! $('.the-tagcloud').length ) 169 tagBox.get( $(this).attr('id') ); 170 $(this).siblings('.the-tagcloud').toggle(); 173 171 return false; 174 172 }); … … 278 276 taxonomyParts.shift(); 279 277 taxonomy = taxonomyParts.join('-'); 280 281 282 278 settingName = taxonomy + '_tab'; 279 if ( taxonomy == 'category' ) 280 settingName = 'cats'; 283 281 284 282 // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.js -
trunk/wp-includes/css/editor.css
r22077 r22268 1020 1020 } 1021 1021 1022 .wp-switch-editor:active { 1023 background-color: #f1f1f1; 1024 } 1025 1022 1026 .wp-switch-editor:hover { 1023 1027 text-decoration: none !important;
Note: See TracChangeset
for help on using the changeset viewer.