Skip to content

Instantly share code, notes, and snippets.

@tmlangley
Created January 28, 2015 16:07
Show Gist options
  • Save tmlangley/206e5649114cb8880c14 to your computer and use it in GitHub Desktop.
Save tmlangley/206e5649114cb8880c14 to your computer and use it in GitHub Desktop.
ckeditor inline image styles fix
/**
* 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