Ticket #20584: 20584.styling2.diff
File 20584.styling2.diff, 4.3 KB (added by , 13 years ago) |
---|
-
wp-admin/js/user-search.dev.js
4 4 $( '#adduser-email, #newuser' ).autocomplete({ 5 5 source: ajaxurl + '?action=autocomplete-user&autocomplete_type=add' + id, 6 6 delay: 500, 7 minLength: 2 7 minLength: 2, 8 open: function(e, ui) { $(this).addClass('open'); }, 9 close: function(e, ui) { $(this).removeClass('open'); } 8 10 }); 9 11 10 12 $( '#user-search-input' ).autocomplete({ 11 13 source: ajaxurl + '?action=autocomplete-user&autocomplete_type=search' + id, 12 14 delay: 500, 13 minLength: 2 15 minLength: 2, 16 open: function(e, ui) { $(this).addClass('open'); }, 17 close: function(e, ui) { $(this).removeClass('open'); } 14 18 }); 15 19 16 20 $( '#all-user-search-input' ).autocomplete({ 17 21 source: ajaxurl + '?action=autocomplete-user&autocomplete_type=search-all' + id, 18 22 delay: 500, 19 minLength: 2 23 minLength: 2, 24 open: function(e, ui) { $(this).addClass('open'); }, 25 close: function(e, ui) { $(this).removeClass('open'); } 20 26 }); 21 27 }); -
wp-admin/js/site-search.dev.js
2 2 $( '#site-search-input' ).autocomplete({ 3 3 source: ajaxurl + '?action=autocomplete-site', 4 4 delay: 500, 5 minLength: 2 5 minLength: 2, 6 open: function(e, ui) { $(this).addClass('open'); }, 7 close: function(e, ui) { $(this).removeClass('open'); } 6 8 }); 7 9 }); -
wp-admin/css/wp-admin.dev.css
874 874 margin: 0 0 0 14px; 875 875 } 876 876 877 .ui-autocomplete-input.open { 878 border-bottom-right-radius: 0; 879 border-bottom-left-radius: 0; 880 } 881 877 882 .ui-autocomplete { 878 883 padding: 0; 879 884 margin: 0; 880 885 list-style: none; 881 886 position: absolute; 882 887 z-index: 10000; 888 border-bottom-right-radius: 3px; 889 border-bottom-left-radius: 3px; 883 890 border-width: 1px; 884 891 border-style: solid; 892 border-top: none; 885 893 886 background-color: #e cecec;887 border-color: gray;894 background-color: #efefef; 895 border-color: #bbb; 888 896 } 889 897 890 898 .ui-autocomplete li { 891 padding: 2px 5px;899 margin-bottom: 0; 892 900 white-space: nowrap; 893 901 text-align: left; 894 902 color: #101010; … … 897 905 .ui-autocomplete li a { 898 906 display: block; 899 907 height: 100%; 900 padding: 2px 5px;908 padding: 4px 10px; 901 909 color: #333; 902 910 } 903 911 904 912 .ui-autocomplete li a.ui-state-hover { 905 background-color: # f0f0b8;913 background-color: #ddd; 906 914 cursor: pointer; 907 915 } 908 916 -
wp-admin/css/colors-classic.dev.css
48 48 color: #000; 49 49 } 50 50 51 textarea:focus, 52 input[type="text"]:focus, 53 input[type="password"]:focus, 54 input[type="file"]:focus, 55 input[type="button"]:focus, 56 input[type="submit"]:focus, 57 input[type="reset"]:focus, 58 input[type="email"]:focus, 59 input[type="number"]:focus, 60 input[type="search"]:focus, 61 input[type="tel"]:focus, 62 input[type="url"]:focus, 63 select:focus { 64 border-color: #d1e5ee; 65 } 66 51 67 kbd, 52 68 code { 53 69 background: #eaeaea; … … 76 92 77 93 body, 78 94 #wpbody, 79 .form-table .pre { 95 .form-table .pre, 96 .ui-autocomplete li a { 80 97 color: #333; 81 98 } 82 99 … … 315 332 color: #9a9a9a; 316 333 } 317 334 335 .ui-autocomplete { 336 background-color: #eff8ff; 337 border-color: #d1e5ee; 338 } 339 340 .ui-autocomplete li a.ui-state-hover { 341 background-color: #def1ff; 342 } 343 318 344 .post-com-count { 319 345 background-image: url(../images/bubble_bg.gif); 320 346 color: #fff; -
wp-admin/css/colors-fresh.dev.css
87 87 88 88 body, 89 89 #wpbody, 90 .form-table .pre { 90 .form-table .pre, 91 .ui-autocomplete li a { 91 92 color: #333; 92 93 } 93 94 … … 322 323 color: #9a9a9a; 323 324 } 324 325 326 .ui-autocomplete { 327 background-color: #efefef; 328 border-color: #bbb; 329 } 330 331 .ui-autocomplete li a.ui-state-hover { 332 background-color: #ddd; 333 } 334 325 335 .post-com-count { 326 336 background-image: url(../images/bubble_bg.gif); 327 337 color: #fff;