Skip to content
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

Update Modal styling #31639

Merged
merged 11 commits into from
May 27, 2021
Merged

Update Modal styling #31639

merged 11 commits into from
May 27, 2021

Conversation

stokesman
Copy link
Contributor

@stokesman stokesman commented May 10, 2021

To allow easier sticky positioning for modal content elements and avoid modal sub-pixel positioning that can cause fuzzy rendering.

Primary changes

  • Let flex and auto margins provide modal centering instead of transform
  • Animate transform instead of margin for appear animation
  • Use absolute position instead of sticky for modal header
  • Remove redundant box-sizing rules
  • Cleanup of obviated rules

Motivation and Details

This began from wanting to help move #31191 along. Specifically to fix position: sticky styling problem there. That immediate problem can be fixed with a simple change, but looking into it, it seemed more changes may be welcome to facilitate sticky positioning within modals and also fix their sometimes fuzzy rendering.

Sticky fix and facilitation

Currently, the modal header is sticky and can, in some cases, be scrolled out of view #31191 (comment). This PR fixes it by removing the header from the flow of the modal content. Doing so also simplifies positioning of other sticky elements within the modal. As it is now, to avoid overlap with the header, other sticky elements either have to be nested inside an additional overflowing context (as done in the Block Manager) or add the height of the header to their top positions. Here are before/after demos of a custom modal with sticky elements styled with top: 0:

Before After
before-sticky-in-modal after-sticky-in-modal
Snippet to run in console to add a sidebar with button to launch the modal seen above
( function ( wp ) {
    const registerPlugin = wp.plugins.registerPlugin;
    const PluginSidebar = wp.editPost.PluginSidebar;
    const { createElement:el, Fragment } = wp.element;
    const { Button, DropdownMenu, Modal } = wp.components;

    const Stickem = ({ dotColor, bgColor, title, children }) =>
        el( 'div', { style: { padding: '1px 0' } },
            el( 'h2',
                {
                    style: {
                        position:'sticky',
                        top: 0,
                        background: `radial-gradient(${ dotColor } 1px, ${ bgColor } 2px) 50%/1em 1em`,
                        margin: '0 -32px',
                        padding: '2em 1em',
                        zIndex: 2,
                        textAlign: 'center',
                    }
                },
                title
            ),
            children
        );

    const MModal = () => {
        const [ isOpen, setOpen ] = wp.element.useState( false );
        const openModal = () => setOpen( true );
        const closeModal = () => setOpen( false );

        return el( Fragment,{},
            el( 'style', {}, '.mmodal-frame{ max-width: 360px; max-height: 400px; }'),
            el( Button, {isSecondary: true, onClick: openModal }, 'Modal me' ),
            ( isOpen &&
                el( Modal, {
                    title: "Modalazo",
                    onRequestClose: closeModal,
                    className: 'mmodal-frame',
                },                                    
                    el( 'p', {}, 'A memory is a composition from the right perspective. Authors often misinterpret the male as a marching ghost, when in actuality it feels more like a dapper slipper. A lisa can hardly be considered a timeous airport without also being a flare. Their gallon was, in this moment, a burlesque trade.'),

                    el( Stickem, { title: 'Got Sticky?', bgColor: 'peachpuff', dotColor: 'orange' },
                        el( 'p', {}, 'A pan of the particle is assumed to be an untorn trout. We can assume that any instance of a lawyer can be construed as a peevish page. A dietician is a plushest pamphlet. The testy aunt comes from an ebon halibut.'),
                        el( 'p', {}, 'A dish is the basement of a romania. If this was somewhat unclear, their picture was, in this moment, a rustred sink. A precipitation is a bridgeless need. Before begonias, aprils were only snowflakes.'),
                    ),
                    
                    el( Stickem, { title: 'Got some more?', bgColor: 'pink', dotColor: 'deeppink' },
                        el( 'p', {}, 'Those toes are nothing more than violets. A blithesome map without ghanas is truly a equinox of sicklied squirrels. Those acknowledgments are nothing more than brians. Their salad was, in this moment, a steadfast step-grandmother.'),
                        el( 'p', {}, 'However, a profit can hardly be considered a doughy subway without also being a maid. They were lost without the pictured melody that composed their cheese. The halibut of a betty becomes a model care. A match is a sunlike owner.'),
                    ),
                    
                    el( Stickem, { title: 'Cool thanks!', bgColor: 'azure', dotColor: 'cyan' },
                        el( 'p', {}, 'A loopy clarinet’s year comes with it the thought that the fenny step-son is an ophthalmologist. The literature would have us believe that a glabrate country is not but a rhythm. A beech is a rub from the right perspective. In ancient times few can name an unglossed walrus that isn’t an unspilt trial.'),
                        el( 'p', {}, 'Authors often misinterpret the afterthought as a roseless mother-in-law, when in actuality it feels more like an uncapped thunderstorm. In recent years, some posit the tarry bottle to be less than acerb. They were lost without the unkissed timbale that composed their customer. A donna is a springtime breath.'),
                        el( 'p', {}, 'It’s an undeniable fact, really; their museum was, in this moment, a snotty beef. The swordfishes could be said to resemble prowessed lasagnas. However, the rainier authority comes from a cureless soup. Unfortunately, that is wrong; on the contrary, the cover is a powder.'),
                    ),
                )
            )
        );
    };

    registerPlugin( 'sidebarino', {
        render: function () {
            return el(
                PluginSidebar,
                {
                    name: 'sidebarino',
                    icon: 'admin-post',
                    title: 'Sidebarino',
                },
                el( MModal )
            );
        },
    } );

} )( window.wp );

The sometimes fuzzy rendering issue

If the modal has odd width or height values the transform: translate(-50%, -50%) rule on the modal frame causes sub-pixel shifts resulting in gaps and fuzzy rendering of some children. These are likely best seen on a 1x resolution screen. Can be seen in some of the before screenshots to follow and in the following screen recording:

before-rounding-errors.mp4
after-no-rounding-errors.mp4

Affected modals

I searched the codebase for implementors of Modal, found and tested thirteen. Of those, four have changes in this PR that were needed due to the updated Modal styles. Mostly the aim was to avoid any visual changes but a few deviations are made intentionally as proposed improvements.

Block Compare Modal

This one had horizontal scrolling after the Modal style changes so it was updated to allow horizontal expansion. As a followup this one could probably use some small screen adjustments (preexistent issue).

Before After
before-block-compare after-block-compare

Guide Component

Testing this with the Welcome Guide in the Post Editor and later in the Widgets Editor. It had a few issues after the Modal style changes but mostly just needed to override a different set of rules.

Before After
before-welcome-guide after-welcome-guide

Block Manager Modal

This one mostly had padding/margin issues after the Modal style changes and I took some liberty in proposing some design changes. This modal is planned to be absorbed into the Preferences modal so I'm not sure if it requires too much scrutiny here.

Before After
before-block-manager after-block-manager

Preferences Modal

This one overflowed vertically at slightly greater heights after the changes to Modal styling. I made a tweak for last-child sections to leave off their bottom margin. Kind of arbitrary, not necessary but seems safe and a slight improvement besides.

Before After
before-preferences-panels after-preferences-panels

How has this been tested?

Types of changes

Bug fix
Code Quality
Breaking Change?: Though the changes are purely CSS they did affect the visual rendering of a few implementors in the codebase and could do the same for third parties. It seems very unlikely the change could create any sort of catastrophic breakage so I wouldn't think it truly classifies as breaking but I don't know if we have a policy around this.

Checklist:

  • My code is tested.
  • My code follows the WordPress code style.
  • My code follows the accessibility standards.
  • I've tested my changes with keyboard and screen readers.
  • My code has proper inline documentation.
  • I've included developer documentation if appropriate.
  • I've updated all React Native files affected by any refactorings/renamings in this PR (please manually search all *.native.js files for terms that need renaming or removal).

@github-actions
Copy link

github-actions bot commented May 10, 2021

Size Change: +117 B (0%)

Total Size: 1.86 MB

Filename Size Change
build/block-editor/index.js 118 kB +13 B (0%)
build/block-editor/style-rtl.css 12.9 kB -7 B (0%)
build/block-editor/style.css 12.9 kB -7 B (0%)
build/components/index.js 189 kB +22 B (0%)
build/components/style-rtl.css 16.2 kB -13 B (0%)
build/components/style.css 16.2 kB -15 B (0%)
build/customize-widgets/index.js 43.2 kB +23 B (0%)
build/customize-widgets/style-rtl.css 1.48 kB +59 B (+4%)
build/customize-widgets/style.css 1.48 kB +59 B (+4%)
build/edit-post/style-rtl.css 6.8 kB -8 B (0%)
build/edit-post/style.css 6.79 kB -9 B (0%)
ℹ️ View Unchanged
Filename Size Change
build/a11y/index.js 1.12 kB 0 B
build/annotations/index.js 2.93 kB 0 B
build/api-fetch/index.js 2.42 kB 0 B
build/autop/index.js 2.28 kB 0 B
build/blob/index.js 673 B 0 B
build/block-directory/index.js 6.61 kB 0 B
build/block-directory/style-rtl.css 989 B 0 B
build/block-directory/style.css 990 B 0 B
build/block-library/blocks/archives/editor-rtl.css 61 B 0 B
build/block-library/blocks/archives/editor.css 60 B 0 B
build/block-library/blocks/archives/style-rtl.css 65 B 0 B
build/block-library/blocks/archives/style.css 65 B 0 B
build/block-library/blocks/audio/editor-rtl.css 58 B 0 B
build/block-library/blocks/audio/editor.css 58 B 0 B
build/block-library/blocks/audio/style-rtl.css 112 B 0 B
build/block-library/blocks/audio/style.css 112 B 0 B
build/block-library/blocks/block/editor-rtl.css 161 B 0 B
build/block-library/blocks/block/editor.css 161 B 0 B
build/block-library/blocks/button/editor-rtl.css 475 B 0 B
build/block-library/blocks/button/editor.css 474 B 0 B
build/block-library/blocks/button/style-rtl.css 603 B 0 B
build/block-library/blocks/button/style.css 602 B 0 B
build/block-library/blocks/buttons/editor-rtl.css 315 B 0 B
build/block-library/blocks/buttons/editor.css 315 B 0 B
build/block-library/blocks/buttons/style-rtl.css 375 B 0 B
build/block-library/blocks/buttons/style.css 375 B 0 B
build/block-library/blocks/calendar/style-rtl.css 208 B 0 B
build/block-library/blocks/calendar/style.css 208 B 0 B
build/block-library/blocks/categories/editor-rtl.css 84 B 0 B
build/block-library/blocks/categories/editor.css 83 B 0 B
build/block-library/blocks/categories/style-rtl.css 79 B 0 B
build/block-library/blocks/categories/style.css 79 B 0 B
build/block-library/blocks/code/style-rtl.css 90 B 0 B
build/block-library/blocks/code/style.css 90 B 0 B
build/block-library/blocks/columns/editor-rtl.css 190 B 0 B
build/block-library/blocks/columns/editor.css 190 B 0 B
build/block-library/blocks/columns/style-rtl.css 422 B 0 B
build/block-library/blocks/columns/style.css 422 B 0 B
build/block-library/blocks/cover/editor-rtl.css 644 B 0 B
build/block-library/blocks/cover/editor.css 646 B 0 B
build/block-library/blocks/cover/style-rtl.css 1.22 kB 0 B
build/block-library/blocks/cover/style.css 1.23 kB 0 B
build/block-library/blocks/embed/editor-rtl.css 486 B 0 B
build/block-library/blocks/embed/editor.css 486 B 0 B
build/block-library/blocks/embed/style-rtl.css 401 B 0 B
build/block-library/blocks/embed/style.css 400 B 0 B
build/block-library/blocks/file/editor-rtl.css 301 B 0 B
build/block-library/blocks/file/editor.css 300 B 0 B
build/block-library/blocks/file/frontend.js 771 B 0 B
build/block-library/blocks/file/style-rtl.css 255 B 0 B
build/block-library/blocks/file/style.css 255 B 0 B
build/block-library/blocks/freeform/editor-rtl.css 2.44 kB 0 B
build/block-library/blocks/freeform/editor.css 2.44 kB 0 B
build/block-library/blocks/gallery/editor-rtl.css 704 B 0 B
build/block-library/blocks/gallery/editor.css 705 B 0 B
build/block-library/blocks/gallery/style-rtl.css 1.06 kB 0 B
build/block-library/blocks/gallery/style.css 1.06 kB 0 B
build/block-library/blocks/group/editor-rtl.css 160 B 0 B
build/block-library/blocks/group/editor.css 160 B 0 B
build/block-library/blocks/group/style-rtl.css 57 B 0 B
build/block-library/blocks/group/style.css 57 B 0 B
build/block-library/blocks/heading/editor-rtl.css 129 B 0 B
build/block-library/blocks/heading/editor.css 129 B 0 B
build/block-library/blocks/heading/style-rtl.css 76 B 0 B
build/block-library/blocks/heading/style.css 76 B 0 B
build/block-library/blocks/home-link/style-rtl.css 259 B 0 B
build/block-library/blocks/home-link/style.css 259 B 0 B
build/block-library/blocks/html/editor-rtl.css 281 B 0 B
build/block-library/blocks/html/editor.css 281 B 0 B
build/block-library/blocks/image/editor-rtl.css 717 B 0 B
build/block-library/blocks/image/editor.css 716 B 0 B
build/block-library/blocks/image/style-rtl.css 481 B 0 B
build/block-library/blocks/image/style.css 485 B 0 B
build/block-library/blocks/latest-comments/style-rtl.css 281 B 0 B
build/block-library/blocks/latest-comments/style.css 282 B 0 B
build/block-library/blocks/latest-posts/editor-rtl.css 137 B 0 B
build/block-library/blocks/latest-posts/editor.css 137 B 0 B
build/block-library/blocks/latest-posts/style-rtl.css 523 B 0 B
build/block-library/blocks/latest-posts/style.css 522 B 0 B
build/block-library/blocks/legacy-widget/editor-rtl.css 557 B 0 B
build/block-library/blocks/legacy-widget/editor.css 557 B 0 B
build/block-library/blocks/list/style-rtl.css 63 B 0 B
build/block-library/blocks/list/style.css 63 B 0 B
build/block-library/blocks/media-text/editor-rtl.css 176 B 0 B
build/block-library/blocks/media-text/editor.css 176 B 0 B
build/block-library/blocks/media-text/style-rtl.css 492 B 0 B
build/block-library/blocks/media-text/style.css 489 B 0 B
build/block-library/blocks/more/editor-rtl.css 434 B 0 B
build/block-library/blocks/more/editor.css 434 B 0 B
build/block-library/blocks/navigation-link/editor-rtl.css 633 B 0 B
build/block-library/blocks/navigation-link/editor.css 634 B 0 B
build/block-library/blocks/navigation-link/style-rtl.css 94 B 0 B
build/block-library/blocks/navigation-link/style.css 94 B 0 B
build/block-library/blocks/navigation/editor-rtl.css 1.54 kB 0 B
build/block-library/blocks/navigation/editor.css 1.54 kB 0 B
build/block-library/blocks/navigation/frontend.js 2.85 kB 0 B
build/block-library/blocks/navigation/style-rtl.css 1.8 kB 0 B
build/block-library/blocks/navigation/style.css 1.8 kB 0 B
build/block-library/blocks/nextpage/editor-rtl.css 395 B 0 B
build/block-library/blocks/nextpage/editor.css 395 B 0 B
build/block-library/blocks/page-list/editor-rtl.css 310 B 0 B
build/block-library/blocks/page-list/editor.css 311 B 0 B
build/block-library/blocks/page-list/style-rtl.css 233 B 0 B
build/block-library/blocks/page-list/style.css 233 B 0 B
build/block-library/blocks/paragraph/editor-rtl.css 157 B 0 B
build/block-library/blocks/paragraph/editor.css 157 B 0 B
build/block-library/blocks/paragraph/style-rtl.css 247 B 0 B
build/block-library/blocks/paragraph/style.css 248 B 0 B
build/block-library/blocks/post-author/editor-rtl.css 209 B 0 B
build/block-library/blocks/post-author/editor.css 209 B 0 B
build/block-library/blocks/post-author/style-rtl.css 183 B 0 B
build/block-library/blocks/post-author/style.css 184 B 0 B
build/block-library/blocks/post-comments-form/style-rtl.css 140 B 0 B
build/block-library/blocks/post-comments-form/style.css 140 B 0 B
build/block-library/blocks/post-comments/style-rtl.css 360 B 0 B
build/block-library/blocks/post-comments/style.css 359 B 0 B
build/block-library/blocks/post-content/editor-rtl.css 139 B 0 B
build/block-library/blocks/post-content/editor.css 139 B 0 B
build/block-library/blocks/post-excerpt/editor-rtl.css 73 B 0 B
build/block-library/blocks/post-excerpt/editor.css 73 B 0 B
build/block-library/blocks/post-excerpt/style-rtl.css 69 B 0 B
build/block-library/blocks/post-excerpt/style.css 69 B 0 B
build/block-library/blocks/post-featured-image/editor-rtl.css 338 B 0 B
build/block-library/blocks/post-featured-image/editor.css 338 B 0 B
build/block-library/blocks/post-featured-image/style-rtl.css 141 B 0 B
build/block-library/blocks/post-featured-image/style.css 141 B 0 B
build/block-library/blocks/post-title/style-rtl.css 60 B 0 B
build/block-library/blocks/post-title/style.css 60 B 0 B
build/block-library/blocks/preformatted/style-rtl.css 103 B 0 B
build/block-library/blocks/preformatted/style.css 103 B 0 B
build/block-library/blocks/pullquote/editor-rtl.css 183 B 0 B
build/block-library/blocks/pullquote/editor.css 183 B 0 B
build/block-library/blocks/pullquote/style-rtl.css 318 B 0 B
build/block-library/blocks/pullquote/style.css 318 B 0 B
build/block-library/blocks/query-loop/editor-rtl.css 98 B 0 B
build/block-library/blocks/query-loop/editor.css 97 B 0 B
build/block-library/blocks/query-loop/style-rtl.css 315 B 0 B
build/block-library/blocks/query-loop/style.css 317 B 0 B
build/block-library/blocks/query-pagination-numbers/editor-rtl.css 122 B 0 B
build/block-library/blocks/query-pagination-numbers/editor.css 121 B 0 B
build/block-library/blocks/query-pagination/editor-rtl.css 270 B 0 B
build/block-library/blocks/query-pagination/editor.css 262 B 0 B
build/block-library/blocks/query-pagination/style-rtl.css 168 B 0 B
build/block-library/blocks/query-pagination/style.css 168 B 0 B
build/block-library/blocks/query-title/editor-rtl.css 86 B 0 B
build/block-library/blocks/query-title/editor.css 86 B 0 B
build/block-library/blocks/query/editor-rtl.css 131 B 0 B
build/block-library/blocks/query/editor.css 132 B 0 B
build/block-library/blocks/quote/style-rtl.css 169 B 0 B
build/block-library/blocks/quote/style.css 169 B 0 B
build/block-library/blocks/rss/editor-rtl.css 201 B 0 B
build/block-library/blocks/rss/editor.css 202 B 0 B
build/block-library/blocks/rss/style-rtl.css 290 B 0 B
build/block-library/blocks/rss/style.css 290 B 0 B
build/block-library/blocks/search/editor-rtl.css 189 B 0 B
build/block-library/blocks/search/editor.css 189 B 0 B
build/block-library/blocks/search/style-rtl.css 359 B 0 B
build/block-library/blocks/search/style.css 362 B 0 B
build/block-library/blocks/separator/editor-rtl.css 99 B 0 B
build/block-library/blocks/separator/editor.css 99 B 0 B
build/block-library/blocks/separator/style-rtl.css 251 B 0 B
build/block-library/blocks/separator/style.css 251 B 0 B
build/block-library/blocks/shortcode/editor-rtl.css 512 B 0 B
build/block-library/blocks/shortcode/editor.css 512 B 0 B
build/block-library/blocks/site-logo/editor-rtl.css 440 B 0 B
build/block-library/blocks/site-logo/editor.css 441 B 0 B
build/block-library/blocks/site-logo/style-rtl.css 154 B 0 B
build/block-library/blocks/site-logo/style.css 154 B 0 B
build/block-library/blocks/social-link/editor-rtl.css 164 B 0 B
build/block-library/blocks/social-link/editor.css 165 B 0 B
build/block-library/blocks/social-links/editor-rtl.css 800 B 0 B
build/block-library/blocks/social-links/editor.css 799 B 0 B
build/block-library/blocks/social-links/style-rtl.css 1.32 kB 0 B
build/block-library/blocks/social-links/style.css 1.33 kB 0 B
build/block-library/blocks/spacer/editor-rtl.css 308 B 0 B
build/block-library/blocks/spacer/editor.css 308 B 0 B
build/block-library/blocks/spacer/style-rtl.css 48 B 0 B
build/block-library/blocks/spacer/style.css 48 B 0 B
build/block-library/blocks/table/editor-rtl.css 478 B 0 B
build/block-library/blocks/table/editor.css 478 B 0 B
build/block-library/blocks/table/style-rtl.css 480 B 0 B
build/block-library/blocks/table/style.css 480 B 0 B
build/block-library/blocks/tag-cloud/editor-rtl.css 118 B 0 B
build/block-library/blocks/tag-cloud/editor.css 118 B 0 B
build/block-library/blocks/tag-cloud/style-rtl.css 94 B 0 B
build/block-library/blocks/tag-cloud/style.css 94 B 0 B
build/block-library/blocks/template-part/editor-rtl.css 551 B 0 B
build/block-library/blocks/template-part/editor.css 550 B 0 B
build/block-library/blocks/term-description/editor-rtl.css 90 B 0 B
build/block-library/blocks/term-description/editor.css 90 B 0 B
build/block-library/blocks/text-columns/editor-rtl.css 95 B 0 B
build/block-library/blocks/text-columns/editor.css 95 B 0 B
build/block-library/blocks/text-columns/style-rtl.css 166 B 0 B
build/block-library/blocks/text-columns/style.css 166 B 0 B
build/block-library/blocks/verse/style-rtl.css 87 B 0 B
build/block-library/blocks/verse/style.css 87 B 0 B
build/block-library/blocks/video/editor-rtl.css 569 B 0 B
build/block-library/blocks/video/editor.css 570 B 0 B
build/block-library/blocks/video/style-rtl.css 173 B 0 B
build/block-library/blocks/video/style.css 173 B 0 B
build/block-library/common-rtl.css 1.26 kB 0 B
build/block-library/common.css 1.26 kB 0 B
build/block-library/editor-rtl.css 9.93 kB 0 B
build/block-library/editor.css 9.92 kB 0 B
build/block-library/index.js 147 kB 0 B
build/block-library/reset-rtl.css 506 B 0 B
build/block-library/reset.css 507 B 0 B
build/block-library/style-rtl.css 10.3 kB 0 B
build/block-library/style.css 10.3 kB 0 B
build/block-library/theme-rtl.css 692 B 0 B
build/block-library/theme.css 693 B 0 B
build/block-serialization-default-parser/index.js 1.29 kB 0 B
build/block-serialization-spec-parser/index.js 3.06 kB 0 B
build/blocks/index.js 47.2 kB 0 B
build/compose/index.js 10 kB 0 B
build/core-data/index.js 12.1 kB 0 B
build/data-controls/index.js 829 B 0 B
build/data/index.js 7.22 kB 0 B
build/date/index.js 31.8 kB 0 B
build/deprecated/index.js 739 B 0 B
build/dom-ready/index.js 577 B 0 B
build/dom/index.js 4.62 kB 0 B
build/edit-navigation/index.js 13.8 kB 0 B
build/edit-navigation/style-rtl.css 3.08 kB 0 B
build/edit-navigation/style.css 3.08 kB 0 B
build/edit-post/classic-rtl.css 454 B 0 B
build/edit-post/classic.css 454 B 0 B
build/edit-post/index.js 571 kB 0 B
build/edit-site/index.js 25.7 kB 0 B
build/edit-site/style-rtl.css 4.75 kB 0 B
build/edit-site/style.css 4.75 kB 0 B
build/edit-widgets/index.js 292 kB 0 B
build/edit-widgets/style-rtl.css 3.46 kB 0 B
build/edit-widgets/style.css 3.47 kB 0 B
build/editor/index.js 38.4 kB 0 B
build/editor/style-rtl.css 3.92 kB 0 B
build/editor/style.css 3.91 kB 0 B
build/element/index.js 3.44 kB 0 B
build/escape-html/index.js 739 B 0 B
build/format-library/index.js 5.67 kB 0 B
build/format-library/style-rtl.css 637 B 0 B
build/format-library/style.css 639 B 0 B
build/hooks/index.js 1.76 kB 0 B
build/html-entities/index.js 627 B 0 B
build/i18n/index.js 3.73 kB 0 B
build/is-shallow-equal/index.js 710 B 0 B
build/keyboard-shortcuts/index.js 1.65 kB 0 B
build/keycodes/index.js 1.43 kB 0 B
build/list-reusable-blocks/index.js 2.07 kB 0 B
build/list-reusable-blocks/style-rtl.css 629 B 0 B
build/list-reusable-blocks/style.css 628 B 0 B
build/media-utils/index.js 3.08 kB 0 B
build/notices/index.js 1.07 kB 0 B
build/nux/index.js 2.31 kB 0 B
build/nux/style-rtl.css 718 B 0 B
build/nux/style.css 716 B 0 B
build/plugins/index.js 1.99 kB 0 B
build/primitives/index.js 1.03 kB 0 B
build/priority-queue/index.js 791 B 0 B
build/react-i18n/index.js 923 B 0 B
build/redux-routine/index.js 2.82 kB 0 B
build/reusable-blocks/index.js 2.53 kB 0 B
build/reusable-blocks/style-rtl.css 225 B 0 B
build/reusable-blocks/style.css 225 B 0 B
build/rich-text/index.js 10.6 kB 0 B
build/server-side-render/index.js 1.63 kB 0 B
build/shortcode/index.js 1.68 kB 0 B
build/token-list/index.js 846 B 0 B
build/url/index.js 1.95 kB 0 B
build/viewport/index.js 1.28 kB 0 B
build/warning/index.js 1.13 kB 0 B
build/widgets/index.js 1.66 kB 0 B
build/wordcount/index.js 1.24 kB 0 B

compressed-size-action

@stokesman stokesman force-pushed the update/modal-styling branch from 239bbc4 to 89e0634 Compare May 10, 2021 19:22
@stokesman stokesman added [Package] Components /packages/components CSS Styling Related to editor and front end styles, CSS-specific issues. labels May 16, 2021
@stokesman stokesman force-pushed the update/modal-styling branch from 89e0634 to 679a5a7 Compare May 22, 2021 16:36
@stokesman stokesman marked this pull request as ready for review May 24, 2021 17:08
@stokesman stokesman requested review from jasmussen and removed request for ajitbohra, chrisvanpatten and ellatrix May 24, 2021 17:20
Copy link
Contributor

@jasmussen jasmussen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Solid work, thanks for tackling this. I left a few comments and have some here as well, but giving tentative approval as it a) solves issues, b) doesn't affect the tabbing order/accessibility.

It boils down to this. Before:

before

The subpixel glitching isn't visible here, but I've seen it in the past.

After:

after

Very nice.

A few small things:

Screenshot 2021-05-25 at 10 42 03

This gets a bit big on big screens. We might want a max-width on this one, perhaps even a max-height. The rule could be keyboard-shortcut modal specific, and not a generalized constraint — I've no doubt some interfaces need a huge modal.

Same with block manager:

Screenshot 2021-05-25 at 10 42 08

Preferences also feels a bit tall:

Screenshot 2021-05-25 at 10 42 33

If those three can get a few max width/heights to look good on giant screens, this feels like a solid improvement. Thank you for your contribution!

packages/components/src/modal/style.scss Show resolved Hide resolved
packages/components/src/modal/style.scss Show resolved Hide resolved
}
}

// Fix header to the top so it is always there to provide context to the modal
// if the content needs to be scrolled (for example, on the keyboard shortcuts
// modal screen).
.components-modal__header {
box-sizing: border-box;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this removed because it wasn't needed or for some other reason?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for asking about this as I'd meant to double-check it. It didn't seem needed as this will apply the same rule:

.components-modal__frame,
.edit-post-editor__inserter-panel {
@include reset;
}

But that could go wrong when Modal is used outside of WordPress packages like edit-post or edit-site. I've removed the width and set the right:0 to avoid that potential issue. Though, it makes me wonder why the reset to `.components-modal__frame' is applied in both those packages. Perhaps we should just apply it to the component itself?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason I ask is that I think we should be using border-box very liberally, as in my experience it helps simplify all the adjacent CSS. If the effect is the same, fine to remove of course.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense. I just can't help wanting to remove the redundancy. Since I've triple-checked this I realized that the modal header height may end up one pixel taller than intended if Modal is used standalone (outside of the edit-* packages that apply the reset to the modal). So I've put it back 😅 .

packages/components/src/modal/style.scss Outdated Show resolved Hide resolved
packages/components/src/modal/style.scss Show resolved Hide resolved
packages/components/src/modal/style.scss Show resolved Hide resolved
@stokesman
Copy link
Contributor Author

stokesman commented May 26, 2021

Thanks for the review. That was quite helpful. I had a rethink on the width of the modal frame element and now it preserves the existing widths of modals like the block manager and keyboard shortcuts. I've also added a generalized max-height that isn't very aggressive to the base modal and specific heights to the preferences modal. I think it goes quite well. I welcome any feedback (or commits of course).

I tried to break up the new commits well to help make it easy to see the concerns they've addressed.

@jasmussen
Copy link
Contributor

This is still looking good, and the sizes look better:

hey

Thanks again for the work!

stokesman added 10 commits May 26, 2021 17:24
To allow easier sticky positioning for modal content elements and
avoid modal sub-pixel positioning that can cause fuzzy rendering.
- Let flex and auto margins provide centering instead of transform
- Animate transform instead of margin for appear animation
- Use absolute position instead of sticky for header
- Remove redundant box-sizing rules
- Cleanup of obviated rules
To work with the updated styling of the base Modal component and
simplify the sticky position related styling. Some other style
changes aimed to improve aesthetics.
@stokesman stokesman force-pushed the update/modal-styling branch from 403bf75 to 0acea32 Compare May 27, 2021 00:24
@stokesman
Copy link
Contributor Author

Thanks again for the review! Had a failing test and then more failing tests on a rerun so I gave it a rebase and it went all green. Now I've pushed one last tiny commit to restore that box-sizing rule.

@jasmussen
Copy link
Contributor

Still looks good to me:

o

👌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CSS Styling Related to editor and front end styles, CSS-specific issues. [Package] Components /packages/components
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants