From 35a1912e2d992b5669be3df6a12024e84089a3d9 Mon Sep 17 00:00:00 2001 From: Kris Date: Tue, 4 Feb 2020 13:02:55 -0500 Subject: [PATCH] FIX: Links in category box descriptions should be clickable --- app/assets/stylesheets/common/base/category-list.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/common/base/category-list.scss b/app/assets/stylesheets/common/base/category-list.scss index 22c99387d65..7a2a95b8df1 100644 --- a/app/assets/stylesheets/common/base/category-list.scss +++ b/app/assets/stylesheets/common/base/category-list.scss @@ -124,8 +124,16 @@ text-align: center; font-size: $font-0; color: dark-light-choose($primary-medium, $secondary-high); + position: relative; + + // allow clicks to fall through the description text to the category below... + pointer-events: none; .overflow { max-height: 6em; + div a { + // ...but links in description should still be clickable + pointer-events: auto; + } } }