The new change appears to override inline styles for images now, unless I add a “!important” flag. That flag is generally not meant to be used that way though, so I’m not sure how best to add images which aren’t maximum width.
Usually I just post images via a macro or script which generates the relevant markup, so extra markup isn’t much of an issue for new posts… the new change definitely reformatted some of my older posts though.
Looking into the site’s stylesheets, I see that there’s a style like this:
img {
max-width: 100% !important;
height: auto !important;
}
Does it still work without the !important bit? That’s what makes it override regular-priority local styles.