From e006191ca7ad71df75359f0aff078753d7ccd4b5 Mon Sep 17 00:00:00 2001 From: darth-coder00 <86726556+darth-coder00@users.noreply.github.com> Date: Mon, 16 Aug 2021 09:20:31 +0530 Subject: [PATCH] Fixed non clickable link issue in popover (#194) --- .../src/main/resources/ui/src/styles/tailwind.css | 5 ----- .../src/main/resources/ui/src/styles/x-master.css | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/catalog-rest-service/src/main/resources/ui/src/styles/tailwind.css b/catalog-rest-service/src/main/resources/ui/src/styles/tailwind.css index b9afe7c4572..e1305a7a9a7 100644 --- a/catalog-rest-service/src/main/resources/ui/src/styles/tailwind.css +++ b/catalog-rest-service/src/main/resources/ui/src/styles/tailwind.css @@ -221,11 +221,6 @@ .tw-nav { @apply tw-font-normal tw-px-2; } - /* popover css start */ - .tippy-popper { - @apply tw-pointer-events-auto; - } - /* popover css end */ .tw-no-description { @apply tw-text-grey-muted; diff --git a/catalog-rest-service/src/main/resources/ui/src/styles/x-master.css b/catalog-rest-service/src/main/resources/ui/src/styles/x-master.css index 3826c88cff7..f40ce27c154 100644 --- a/catalog-rest-service/src/main/resources/ui/src/styles/x-master.css +++ b/catalog-rest-service/src/main/resources/ui/src/styles/x-master.css @@ -690,3 +690,9 @@ a:focus { border-radius: 20px; z-index: 2; } + +/* popover css start */ +.tippy-popper { + pointer-events: auto !important; +} +/* popover css end */