mirror of https://github.com/zulip/zulip.git
Prevent an animation glitch on showing the compose box
See added comment for details. (imported from commit 0248500be07584729d03e2543100a320e0410eee)
This commit is contained in:
parent
a40ff15d7b
commit
cb7b2eec80
|
@ -369,6 +369,12 @@ input.recipient_box {
|
|||
|
||||
#send_controls {
|
||||
float: right;
|
||||
|
||||
/* jQuery's slideDown() animation seems to compute the target height by
|
||||
drawing these elements in an (offscreen) context where they would reflow
|
||||
onto multiple lines. We need to prevent that in order to avoid an
|
||||
animation glitch. See: http://is.gd/EVJFZ8 */
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#fmt_help_link {
|
||||
|
|
Loading…
Reference in New Issue