| |
| // Make calendar visible over the table |
| .dropdown-menu { |
| z-index: $zindex-dropdown + 1; |
| padding: 0; |
| } |
| .dropdown-item { |
| padding-inline-start: calc(#{$spacer} / 4); |
| margin-top: calc(-1 * (#{$spacer} / 4)); |
| } |
| .b-dropdown-form { |
| padding: calc(#{$spacer} / 2); |
| // Maintain .form-group spacing for backward compatibility |
| .form-group { |
| margin-bottom: calc(#{$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"); |
| } |
| } |
| } |