From 1431a8379cc5f47ba0fbb8e44dcb2ab5b0d5a98b Mon Sep 17 00:00:00 2001 From: Pierre Mesure Date: Wed, 13 Nov 2019 20:37:57 +0100 Subject: [PATCH] Fix a CSS leak --- app/assets/stylesheets/layout.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss index ccf1b9221..ac987154f 100644 --- a/app/assets/stylesheets/layout.scss +++ b/app/assets/stylesheets/layout.scss @@ -2770,9 +2770,12 @@ table { } a:hover { - box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2); text-decoration: none; + &:not(.see-all) { + box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2); + } + img { transform: scale(1.1); }