From a6f88746e61eb62052499e4c748bbf2e664ef119 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Wed, 28 Jul 2021 09:51:20 +0100 Subject: [PATCH] Fixed email-cta button text not being selectable in Firefox refs https://github.com/TryGhost/Team/issues/928 - the `.gh-btn` styling has `user-select: none` which was preventing Firefox from allowing selection using the mouse --- ghost/admin/app/styles/layouts/editor.css | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/admin/app/styles/layouts/editor.css b/ghost/admin/app/styles/layouts/editor.css index a3f86b6e38..65a821535f 100644 --- a/ghost/admin/app/styles/layouts/editor.css +++ b/ghost/admin/app/styles/layouts/editor.css @@ -981,4 +981,5 @@ figure { padding: 4px; border: 0; text-align: center; + user-select: auto; }