blob: e4de5816cc14f1ff002ad1bc19a69e3000ecc35f [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 {
7 padding-left: $spacer/2;
8}
Yoshie Muranaka82cca542020-04-07 10:20:37 -07009.b-dropdown-form {
10 padding: $spacer/2;
11 .form-group {
12 margin-bottom: $spacer/2;
13 }
14}
SurenNewaredc618a82020-08-17 18:42:20 +053015// Table filter dropdown clear button style
Yoshie Muranaka82cca542020-04-07 10:20:37 -070016.table-filter {
SurenNewaredc618a82020-08-17 18:42:20 +053017 .dropdown-item {
18 &:hover {
19 background-color: gray("200");
20 }
21 &:active {
22 background-color: gray("300");
23 }
24 &:focus {
25 outline: none;
26 background-color: transparent;
27 box-shadow: inset 0 0 0 2px theme-color("primary");
SurenNewareb46e5352020-08-26 16:59:23 +053028 }
Yoshie Muranaka82cca542020-04-07 10:20:37 -070029 }
30}