summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSurenNeware <sneware9@in.ibm.com>2020-08-26 14:29:23 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-08-28 18:22:17 +0300
commitb46e5351d90464c16f361850821431e94706d4a6 (patch)
tree0cc14ee67cc76a984d1d6fe491870f7873be9c84
parentca0be486d925e5f196159784785aa230324cf5f9 (diff)
downloadwebui-vue-b46e5351d90464c16f361850821431e94706d4a6.tar.xz
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
-rw-r--r--src/assets/styles/bmc/custom/_dropdown.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/assets/styles/bmc/custom/_dropdown.scss b/src/assets/styles/bmc/custom/_dropdown.scss
index c7d39548..1c3e48ba 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