blob: 969c4c6824c05e609004a72cee11cc02bffd0869 [file] [log] [blame]
SurenNewaredc618a82020-08-17 18:42:20 +05301// Make calendar visible over the table
2.dropdown-menu {
3 z-index: $zindex-dropdown + 1;
4 padding: 0;
5}
Yoshie Muranaka82cca542020-04-07 10:20:37 -07006.dropdown-item {
Sandeepa Singh3aecc072021-06-07 17:26:31 +05307 padding-left: $spacer/4;
8 margin-top: -1 * $spacer/4;
Yoshie Muranaka82cca542020-04-07 10:20:37 -07009}
Yoshie Muranaka82cca542020-04-07 10:20:37 -070010.b-dropdown-form {
11 padding: $spacer/2;
12 .form-group {
13 margin-bottom: $spacer/2;
14 }
15}
SurenNewaredc618a82020-08-17 18:42:20 +053016// Table filter dropdown clear button style
Yoshie Muranaka82cca542020-04-07 10:20:37 -070017.table-filter {
SurenNewaredc618a82020-08-17 18:42:20 +053018 .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");
SurenNewareb46e5352020-08-26 16:59:23 +053029 }
Yoshie Muranaka82cca542020-04-07 10:20:37 -070030 }
31}