Make WordPress Core

Ticket #20584: 20584.styling2.diff

File 20584.styling2.diff, 4.3 KB (added by helenyhou, 13 years ago)
  • wp-admin/js/user-search.dev.js

     
    44        $( '#adduser-email, #newuser' ).autocomplete({
    55                source:   ajaxurl + '?action=autocomplete-user&autocomplete_type=add' + id,
    66                delay:    500,
    7                 minLength: 2
     7                minLength: 2,
     8                open: function(e, ui) { $(this).addClass('open'); },
     9                close: function(e, ui) { $(this).removeClass('open'); }
    810        });
    911
    1012        $( '#user-search-input' ).autocomplete({
    1113                source:   ajaxurl + '?action=autocomplete-user&autocomplete_type=search' + id,
    1214                delay:    500,
    13                 minLength: 2
     15                minLength: 2,
     16                open: function(e, ui) { $(this).addClass('open'); },
     17                close: function(e, ui) { $(this).removeClass('open'); }
    1418        });
    1519
    1620        $( '#all-user-search-input' ).autocomplete({
    1721                source:   ajaxurl + '?action=autocomplete-user&autocomplete_type=search-all' + id,
    1822                delay:    500,
    19                 minLength: 2
     23                minLength: 2,
     24                open: function(e, ui) { $(this).addClass('open'); },
     25                close: function(e, ui) { $(this).removeClass('open'); }
    2026        });
    2127});
  • wp-admin/js/site-search.dev.js

     
    22        $( '#site-search-input' ).autocomplete({
    33                source:   ajaxurl + '?action=autocomplete-site',
    44                delay:    500,
    5                 minLength: 2
     5                minLength: 2,
     6                open: function(e, ui) { $(this).addClass('open'); },
     7                close: function(e, ui) { $(this).removeClass('open'); }
    68        });
    79});
  • wp-admin/css/wp-admin.dev.css

     
    874874        margin: 0 0 0 14px;
    875875}
    876876
     877.ui-autocomplete-input.open {
     878        border-bottom-right-radius: 0;
     879        border-bottom-left-radius: 0;
     880}
     881
    877882.ui-autocomplete {
    878883        padding: 0;
    879884        margin: 0;
    880885        list-style: none;
    881886        position: absolute;
    882887        z-index: 10000;
     888        border-bottom-right-radius: 3px;
     889        border-bottom-left-radius: 3px;
    883890        border-width: 1px;
    884891        border-style: solid;
     892        border-top: none;
    885893
    886         background-color: #ececec;
    887         border-color: gray;
     894        background-color: #efefef;
     895        border-color: #bbb;
    888896}
    889897
    890898.ui-autocomplete li {
    891         padding: 2px 5px;
     899        margin-bottom: 0;
    892900        white-space: nowrap;
    893901        text-align: left;
    894902        color: #101010;
     
    897905.ui-autocomplete li a {
    898906        display: block;
    899907        height: 100%;
    900         padding: 2px 5px;
     908        padding: 4px 10px;
    901909        color: #333;
    902910}
    903911
    904912.ui-autocomplete li a.ui-state-hover {
    905         background-color: #f0f0b8;
     913        background-color: #ddd;
    906914        cursor: pointer;
    907915}
    908916
  • wp-admin/css/colors-classic.dev.css

     
    4848        color: #000;
    4949}
    5050
     51textarea:focus,
     52input[type="text"]:focus,
     53input[type="password"]:focus,
     54input[type="file"]:focus,
     55input[type="button"]:focus,
     56input[type="submit"]:focus,
     57input[type="reset"]:focus,
     58input[type="email"]:focus,
     59input[type="number"]:focus,
     60input[type="search"]:focus,
     61input[type="tel"]:focus,
     62input[type="url"]:focus,
     63select:focus {
     64        border-color: #d1e5ee;
     65}
     66
    5167kbd,
    5268code {
    5369        background: #eaeaea;
     
    7692
    7793body,
    7894#wpbody,
    79 .form-table .pre {
     95.form-table .pre,
     96.ui-autocomplete li a {
    8097        color: #333;
    8198}
    8299
     
    315332        color: #9a9a9a;
    316333}
    317334
     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
    318344.post-com-count {
    319345        background-image: url(../images/bubble_bg.gif);
    320346        color: #fff;
  • wp-admin/css/colors-fresh.dev.css

     
    8787
    8888body,
    8989#wpbody,
    90 .form-table .pre {
     90.form-table .pre,
     91.ui-autocomplete li a {
    9192        color: #333;
    9293}
    9394
     
    322323        color: #9a9a9a;
    323324}
    324325
     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
    325335.post-com-count {
    326336        background-image: url(../images/bubble_bg.gif);
    327337        color: #fff;