SurenNeware | dc618a8 | 2020-08-17 18:42:20 +0530 | [diff] [blame] | 1 | // Make calendar visible over the table |
| 2 | .dropdown-menu { |
| 3 | z-index: $zindex-dropdown + 1; |
| 4 | padding: 0; |
| 5 | } |
Yoshie Muranaka | 82cca54 | 2020-04-07 10:20:37 -0700 | [diff] [blame] | 6 | .dropdown-item { |
| 7 | padding-left: $spacer/2; |
| 8 | } |
Yoshie Muranaka | 82cca54 | 2020-04-07 10:20:37 -0700 | [diff] [blame] | 9 | .b-dropdown-form { |
| 10 | padding: $spacer/2; |
| 11 | .form-group { |
| 12 | margin-bottom: $spacer/2; |
| 13 | } |
| 14 | } |
SurenNeware | dc618a8 | 2020-08-17 18:42:20 +0530 | [diff] [blame] | 15 | // Table filter dropdown clear button style |
Yoshie Muranaka | 82cca54 | 2020-04-07 10:20:37 -0700 | [diff] [blame] | 16 | .table-filter { |
SurenNeware | dc618a8 | 2020-08-17 18:42:20 +0530 | [diff] [blame] | 17 | .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"); |
SurenNeware | b46e535 | 2020-08-26 16:59:23 +0530 | [diff] [blame] | 28 | } |
Yoshie Muranaka | 82cca54 | 2020-04-07 10:20:37 -0700 | [diff] [blame] | 29 | } |
| 30 | } |