summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_ibs/_dropdown.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc/_ibs/_dropdown.scss')
-rw-r--r--src/assets/styles/bmc/_ibs/_dropdown.scss49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/assets/styles/bmc/_ibs/_dropdown.scss b/src/assets/styles/bmc/_ibs/_dropdown.scss
new file mode 100644
index 00000000..02e4e855
--- /dev/null
+++ b/src/assets/styles/bmc/_ibs/_dropdown.scss
@@ -0,0 +1,49 @@
+// Make calendar visible over the table
+.dropdown-menu {
+ z-index: $zindex-dropdown + 1;
+ padding: $spacer / 2;
+ border-radius: $border-radius;
+}
+
+.dropdown-item {
+ padding: $spacer / 4 $spacer / 2;
+ margin: $spacer / 4;
+ width: auto;
+ border-radius: $border-radius;
+ &:hover {
+ background-color: $red-hover;
+ color: $white;
+ }
+ &:active {
+ background-color: $red-active;
+ }
+ &:focus {
+ outline: none;
+ background-color: $red-click;
+ box-shadow: inset 0 0 0 2px theme-color("primary");
+ }
+}
+
+.b-dropdown-form {
+ padding: $spacer/2;
+ .form-group {
+ margin-bottom: $spacer/2;
+ }
+}
+
+// Table filter dropdown clear button style
+.table-filter {
+ .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");
+ }
+ }
+}