Update table filter action button style

- Update table filter action Clear all button style to Ghost button style.
- Now in active state button text became visible.

Signed-off-by: Suren Neware <sneware9@in.ibm.com>
Change-Id: I3e56482ec9b96328a2460673af9937f30522376d
diff --git a/src/assets/styles/bmc/custom/_dropdown.scss b/src/assets/styles/bmc/custom/_dropdown.scss
index c7d3954..1c3e48b 100644
--- a/src/assets/styles/bmc/custom/_dropdown.scss
+++ b/src/assets/styles/bmc/custom/_dropdown.scss
@@ -18,5 +18,18 @@
   .dropdown-menu {
     z-index: $zindex-dropdown + 1;
     padding: 0;
+    .dropdown-item {
+      &:hover {
+        background-color: gray("200");
+      }
+      &:active {
+        background-color: gray("300");
+      }
+      &:focus {
+        outline: none;
+        background-color: transparent;
+        box-shadow: inset 0 0 0 2px theme-color("primary");
+      }
+    }
   }
 }
\ No newline at end of file