Skip to content

Commit 54ecadc

Browse files
committed
Workaround for IE11 issue
See textpattern/textpattern#1701
1 parent 8d317dd commit 54ecadc

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

dist/classic/assets/css/textpattern.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assets/sass/modules/_layout-shared.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ html {
1515
* Hide content during 'not ready'.
1616
*/
1717

18-
.not-ready main {
19-
opacity: 0;
18+
@supports (display: flex) { // workaround for IE 11 (see https://github.com/textpattern/textpattern/issues/1701).
19+
.not-ready main {
20+
opacity: 0;
21+
}
2022
}
2123

2224
/**

0 commit comments

Comments
 (0)