Created
May 10, 2019 09:44
-
-
Save mario-neuhold/ba0059117880750ae2ec3b502eab00c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*--------------------- | |
IE 11 grid fix for Gutenberg core block Media-Text | |
as discussed here | |
https://github.com/WordPress/gutenberg/issues/11577#issuecomment-465177310 | |
-----------------------*/ | |
.wp-block-media-text { | |
display: -ms-grid; | |
-ms-grid-columns: 50% auto; | |
} | |
/* default media on the left */ | |
.wp-block-media-text .wp-block-media-text__media { | |
-ms-grid-column: 1; | |
} | |
.wp-block-media-text .wp-block-media-text__content { | |
-ms-grid-column: 2; | |
} | |
/* media on the right */ | |
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media { | |
-ms-grid-column: 2; | |
} | |
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content { | |
-ms-grid-column: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment