From 843e968052f7c5dad353b3123a3d4a72d2fbe830 Mon Sep 17 00:00:00 2001 From: Max Goodman Date: Thu, 18 Jul 2013 22:19:15 -0700 Subject: [PATCH] Prevent inner form throbbers when parent element is working. This keeps the copy and rename form throbbers from showing when an operation is in progress on their parent form. --- r2/r2/public/static/css/reddit.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/r2/r2/public/static/css/reddit.less b/r2/r2/public/static/css/reddit.less index d1eddb5ac..f50fb9bb9 100755 --- a/r2/r2/public/static/css/reddit.less +++ b/r2/r2/public/static/css/reddit.less @@ -5181,6 +5181,11 @@ table.calendar { .throbber { height: 22px; + display: none; + } + + &.working .throbber { + display: inline-block; } }