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