From feeaac81df8e68ad81324eff212f1f8a6ced3507 Mon Sep 17 00:00:00 2001 From: Kris Date: Tue, 28 Aug 2018 16:39:20 -0400 Subject: [PATCH] FIX: Mobile admin menu iOS rendering bug --- app/assets/stylesheets/common/base/topic.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/common/base/topic.scss b/app/assets/stylesheets/common/base/topic.scss index ee5a989c0b7c9..9dd17a08a4485 100644 --- a/app/assets/stylesheets/common/base/topic.scss +++ b/app/assets/stylesheets/common/base/topic.scss @@ -50,6 +50,11 @@ .topic-admin-popup-menu.right-side { right: 50px; bottom: -150px; // Prevents menu from being too high when a topic is very short + transform: translate3d( + 0, + 0, + 0 + ); // iOS11 Rendering bug https://meta.discourse.org/t/wrench-menu-not-disappearing-on-ios/94297 } }