-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More flexible modal box centering #47
Conversation
That patch seems to work on wip 2.1 branch. |
Hey thanks for the pull request, the seems like a more robust solution. I'd like to push out the 2.1 branch first before merging this just to get it out of the way. I'll be doing this sometime this week, I just haven't had a chance to fully test it yet. Out of curiousity, why do we need the css rules for Thanks |
|
Mmmh that patch works perfectly on Firefox 17 and Firefox 18 but doesn't seem to work on Chromium 26; the popup is full width instead to be centered. Can you confirm ? Edit: if (transition) {
modal.$element[0].style.display = 'run-in';
modal.$element[0].offsetWidth;
modal.$element.one($.support.transition.end, function () { modal.$element.show(); /*modal.$element[0].style.display = 'block' */});
} becomes if (transition) {
/*modal.$element[0].style.display = 'run-in'; */
modal.$element[0].offsetWidth;
modal.$element.one($.support.transition.end, function () { modal.$element.show(); /*modal.$element[0].style.display = 'block' */});
} |
@cmenassa 👍 |
That block of code is there to force a reflow due to a webkit bug (See http://stackoverflow.com/questions/3485365/how-can-i-force-webkit-to-redraw-repaint-to-propagate-style-changes). I'm unsure why 'run-in' was chosen, but probably because I couldn't use display: none or transitions would break. I took the entire block of code out and am not seeing any issues in the latest version of chrome. I will do some more testing on the wip-2.1 branch but it looks like it can be removed entirely. |
The problem is still here on Firefox. I've to resize my browser window to force modal to be centered. |
With the addition of display: inline-block to .modal, it overrides the .hide class and the modal ends up appearing in the page before it has been activated (on load of the page, it appears where ever the modal is in the html). If the modal has .fade instead of .hide, it will be less noticeable as it will have an opacity of 0, but because .modal is now position: relative, it will take up space on the page. I really like the look of these changes, but these are the issues I have encountered with them so far. I am working on a resolution right now, and will post further when I finalize one. |
I don't think I will be accepting this PR at this time. It's a pretty neat enhancement but I'm concerned about the potential jarring experience if the user does not expect the modal to grow. Consider the case with tabs inside a modal. The modal would automatically reposition on tab click interrupting the flow. I would feel more comfortable with a manual reposition which I have included in the latest version using the This could potentially be made even easier with some of the ideas in #87. Thanks, appreciate the pull request. |
When you trying to change inner content by javascript, the margin-top position stays the same and window looks like uncentered. See screen from example:

If you use css centering, you can avoid this
