Mark Smith (
mark) wrote in
dw_maintenance2020-04-26 01:27 pm
![[staff profile]](https://www.dreamwidth.org/img/silk/identity/user_staff.png)
![[site community profile]](https://www.dreamwidth.org/img/comm_staff.png)
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!
no subject
no subject
flex-shrink: 0;
on the div that has the image in it.There's a lot of gotchas to making
display: flex
stuff size the way you want it to. In your case here:- You've set a width for the flex-item div that contains the image: ok, cool! IIRC that becomes the default
flex-basis
for that flex item. That's its starting width.- But flex-shrink defaults to
1
, so if the contents of that div don't push back, the other flex items can steal space from it.- The global image shrink CSS makes it so images can't push back on their flex item parents; therefore that flex item goes tiny.
- But if you use flex-shrink: 0 to say this flex item can't be stolen from, then you're fine and the image will fill the available width.
Here on DW, the image might still shrink a bit if someone's browser height would be too short to display the whole thing. But that's what the new click-to-zoom thing is for.
Anyway, keeping an eye on flex-shrink should serve you well everywhere; hopefully that also clears up how it interacts with the image shrink thing.
no subject
no subject
no subject
Posted images defaulting to tiny, but sort of at random.
Forgive my ignorance, but how are you defining "flex display" in this case, just so I can advise posters.
no subject
It's used for making items respond to the size of other items within the div (in this case, textboxes become narrower to accommodate an image), so in this case the flexibility backfired when the image shrink CSS came in. Basically, it's a problem that's going to come up with more extensively coded posts, whereas direct embeds without any bells and whistles shouldn't be affected.