From e000933c17b55f667dc9d6d97a44292adc532516 Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Mon, 16 Apr 2018 00:25:39 +0100 Subject: [PATCH] Remove `dialog` from the HTML5 shim style (#26269) ``, in browsers that support it, has user agent styles of `dialog { display:block; ...} dialog:not([open]) { display:none; }` by forcing it to `display:block` in the shim, the dialog is shown even when closed. There's no clean way to shim this for non-supporting browsers, but arguably these browsers would have further problems with pure `` usage anyway, and it's up to authors to then use different elements/shims. --- scss/_reboot.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_reboot.scss b/scss/_reboot.scss index dd23f16d1b52..cfc99391ec35 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -42,7 +42,7 @@ html { // stylelint-disable selector-list-comma-newline-after // Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) -article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } // stylelint-enable selector-list-comma-newline-after