Make WordPress Core

Ticket #30725: 30725.2.diff

File 30725.2.diff, 1.9 KB (added by helen, 10 years ago)
  • src/wp-includes/css/media-views.css

     
    235235}
    236236
    237237.media-toolbar-secondary {
    238         position: relative;
    239238        float: left;
    240         -webkit-box-sizing: border-box;
    241         -moz-box-sizing: border-box;
    242         box-sizing: border-box;
    243         padding-right: 20px;
    244239        height: 100%;
    245240        max-width: 66%;
    246241}
    247242
    248 .media-toolbar-secondary .spinner {
    249         position: absolute;
    250         top: 2px;
    251         right: 0px;
    252 }
    253 
    254243.media-toolbar-primary > .media-button,
    255244.media-toolbar-primary > .media-button-group {
    256245        margin-left: 10px;
     
    751740        margin-top: 11px;
    752741        margin-right: 2%;
    753742        max-width: 47%;
    754         width: 100%; /* prevents options from invisibly taking up horizontal space */
    755743}
    756744
    757745/**
     
    15081496        background: url(../images/spinner.gif) no-repeat;
    15091497        -webkit-background-size: 20px 20px;
    15101498        background-size: 20px 20px;
    1511         display: none;
     1499        display: inline-block;
     1500        visibility: hidden;
    15121501        opacity: 0.7;
    15131502        filter: alpha(opacity=70);
    15141503        width: 20px;
     
    23712360        }
    23722361
    23732362        .media-modal .attachments-browser .media-toolbar .spinner {
    2374                 margin: 14px 0 0;
     2363                margin: 14px 8px 0;
    23752364        }
    23762365
    23772366        /* Text inputs need to be 16px, or they force zooming on iOS */
  • src/wp-includes/js/media-views.js

     
    77927792                show: function() {
    77937793                        if ( ! this.spinnerTimeout ) {
    77947794                                this.spinnerTimeout = _.delay(function( $el ) {
    7795                                         $el.show();
     7795                                        $el.css('visibility', 'visible');
    77967796                                }, this.delay, this.$el );
    77977797                        }
    77987798
     
    78007800                },
    78017801
    78027802                hide: function() {
    7803                         this.$el.hide();
     7803                        this.$el.css('visibility', 'hidden');
    78047804                        this.spinnerTimeout = clearTimeout( this.spinnerTimeout );
    78057805
    78067806                        return this;