Created
January 28, 2015 16:07
-
-
Save tmlangley/206e5649114cb8880c14 to your computer and use it in GitHub Desktop.
ckeditor inline image styles fix
This file contains hidden or 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
/** | |
* Fix for ckeditor adding inline styles on images. | |
* TODO: Remove this once there is a patch for this issue. - TL 1/28/15 | |
* Drupal issue: https://www.drupal.org/node/1909648 | |
*/ | |
.node > .content img[style*="height"], | |
.node > .content img[style*="width"] { | |
max-width: 100%; | |
width: auto !important; | |
height: auto !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment