1// Make calendar visible over the table
2.dropdown-menu {
3  z-index: $zindex-dropdown + 1;
4  padding: 0;
5}
6.dropdown-item {
7  padding-left: $spacer/2;
8}
9.b-dropdown-form {
10  padding: $spacer/2;
11  .form-group {
12    margin-bottom: $spacer/2;
13  }
14}
15// Table filter dropdown clear button style
16.table-filter {
17  .dropdown-item {
18    &:hover {
19      background-color: gray("200");
20    }
21    &:active {
22      background-color: gray("300");
23    }
24    &:focus {
25      outline: none;
26      background-color: transparent;
27      box-shadow: inset 0 0 0 2px theme-color("primary");
28    }
29  }
30}