From 60dc827e59ac15f3e0acadf77f9feb8f402159ab Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Wed, 1 Mar 2017 17:30:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20unclickable=20app=20after?= =?UTF-8?q?=20closing=20modal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no issue - `liquid-wormhole` changed the class of it's default destination element which meant that one of our styles resulted in it overlaying the whole app and preventing anything from being clicked after closing a modal --- ghost/admin/app/styles/layouts/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/styles/layouts/main.css b/ghost/admin/app/styles/layouts/main.css index 1674fcad36..0c6b492971 100644 --- a/ghost/admin/app/styles/layouts/main.css +++ b/ghost/admin/app/styles/layouts/main.css @@ -10,7 +10,7 @@ by moving the gh-app component functionality into the application component which would remove the extra div that this targets. */ -body > .ember-view:not(.liquid-target-container) { +body > .ember-view:not(.default-liquid-destination) { height: 100%; }