summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/custom/_dropdown.scss
blob: 1ea80d9f54498d3decdb72ff778ff56885ab25c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Make calendar visible over the table
.dropdown-menu {
  border-radius: 5px;
  z-index: $zindex-dropdown + 1;
  padding: 0;
  a {
    border-radius: 5px;
  }
}
.dropdown-item {
  padding-left: $spacer/4;
  margin-top: -1 * $spacer/4;
  background-color: $white;
}
// .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");
    }
  }
}