/*
 * Shared rules for content authored in TinyMCE.
 * Loaded globally so any view that renders TinyMCE-authored content
 * picks them up, and loaded inside the editor iframe via content_css
 * so the admin preview matches the live page.
 *
 * Classes are mce-prefixed and applied directly to <img>, so no
 * wrapper element is required.
 */

img.mce-img {
    max-width: 100%;
    height: auto;
}

img.mce-img-full {
    display: block;
    width: 100%;
    height: auto;
}

img.mce-img-icon {
    max-width: none;
    width: auto;
    height: auto;
}
