Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #16434, comment 111


Ignore:
Timestamp:
03/02/2012 11:25:26 PM (13 years ago)
Author:
azaozz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16434, comment 111

    initial v1  
    1919> The only issue I can see with this is that the crop UI is really (really) large at the moment, though arguably we could make the whole thing a bit smaller (though I wouldn't want to go less than 300x300 for the image size). So that's a pretty big chunk of real estate to just insert smack in the middle of the rest of the Settings > General form. Unless I'm not properly understanding your suggestion?
    2020
    21 Yeah, 300x300 or 350x350 seems large enough. The idea is to insert an iframe after uploading the image. The iframe would be pretty much the same as in thickbox but will be placed directly in the page rather than inserted at the bottom and shown with position:fixed in the middle or the screen. To make this work there can be a hidden iframe under the upload field with some basic JS that will `$('iframe').slideDown('fast')` when something is loaded there, and of course `$('iframe').slideUp('fast')` when not needed any more. That would make pretty sleek UI :)
     21Yeah, 300x300 or 350x350 seems large enough. The idea is to insert an iframe after uploading the image instead of using thickbox. The iframe would be pretty much the same as in TB but will be placed directly in the page rather than inserted at the bottom and shown with position:fixed in the middle or the screen. To make this work there can be a hidden iframe under the upload field with some basic JS that will `$('iframe').slideDown('fast')` when something is loaded there, and of course `$('iframe').slideUp('fast')` when not needed any more. That would make pretty sleek UI :)