mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] dw_maintenance2020-04-26 01:27 pm

Code has been pushed!

Hiya, as per yesterday's announcement, the latest Dreamwidth code has been deployed.

This is the issue/bug/problem tracking post! Please let us know if you see anything... untoward.

Fixed

  • Posting an entry would tell you that your password was blank.
  • API key generation/deletion was... behaving a little weird.
  • Profiles pages were converted to Markdown, but this was too soon. I've put them back to raw HTML, they should look like they did before the push!

Known Issues

  • Chrome auto-filling in password forms, when trying to post as the already logged in user, results in an error. Still haven't fixed this one, but we will.
  • Reports of logging out possibly not? Need more information, login/logout work for me. Seems transient?

And as a reminder, if you use Semagic et al, please check the link above for information on how to configure it to keep working with Dreamwidth!

roadrunnertwice: Parking lot stencil: "ALL TREES WILL BE TOWED," with tree glyph in "no" sign. (All trees will be towed)

[personal profile] roadrunnertwice 2020-05-06 12:17 am (UTC)(link)
It's the image shrinking CSS. I can't tell what your markup looks like, so I don't know what container is shrinking the image, but I can tell you that:

- Images shrink to fit the width of their container, whatever that container is.
- Images shrink to fit the height of the browser viewport, if necessary.
- By default, images no longer force their containers to grow wider than they'd otherwise be, so if something is pressuring the container to shrink (for example, if it's a `flex` item that doesn't have `flex-shrink: 0` set), it will.
- Image shrinking is implemented with the CSS `width` and `height` properties on the image. Those can be forcibly overridden by `min-width` and `min-height` respectively.
- Preview differences: probably the post preview dingus isn't loading CSS quite the same way as the equivalent journal page would. Not sure yet.

Those principles should give you some places to start; the fastest way would probably be to set min-width/height on the images' inline styles. But with only a screeenshot instead of real markup, I can't offer you a copypasta fix.