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/4;
8  margin-top: -1 * $spacer/4;
9}
10.b-dropdown-form {
11  padding: $spacer/2;
12  .form-group {
13    margin-bottom: $spacer/2;
14  }
15}
16// Table filter dropdown clear button style
17.table-filter {
18  .dropdown-item {
19    &:hover {
20      background-color: gray("200");
21    }
22    &:active {
23      background-color: gray("300");
24    }
25    &:focus {
26      outline: none;
27      background-color: transparent;
28      box-shadow: inset 0 0 0 2px theme-color("primary");
29    }
30  }
31}