OK, what's changed in Diaspora's CSS / classes?

I've got a local stylesheet which bumps up the size of the comment editor while I'm in it, and which should wait 30s to resize it back to normal after navigating out of it.

That asymmetric resizing broke as of yesterday -- the dialog collapses instantly as I navigate out of it. I spent a few minutes trying to suss it out but no dice. Suspect I'll need to re-do my CSS fully. Sigh.

The style I had been using (I think):

#publisher publisher_textarea_wrapper textarea,
form.new_status_message textarea,
form.new_comment textarea,
form.new_message textarea {
    /* Our long delay */
    -webkit-transition-delay: 30s;
    -webkit-transition-duration: 1s;
    -webkit-transition-property: height,background,color;
    background-color: #f0f0e6;
    color: #888;
    font-family: courier;
    font-size: 14pt;
    height: auto;
    max-height: 20em;
    min-height: 2.8em;
    min-width: 630px;
    overflow-y: scroll;
}

Something in that is no longer applying.

#diaspora #help #css

2