blob: 1c3e48bab4a883fdee6787aeb63eb8ae00841db8 [file] [log] [blame]
Yoshie Muranaka82cca542020-04-07 10:20:37 -07001.dropdown-item {
2 padding-left: $spacer/2;
3}
4
5.b-dropdown-form {
6 padding: $spacer/2;
7 .form-group {
8 margin-bottom: $spacer/2;
9 }
10}
11
Sukanya Pandeyb1f559f2020-04-28 20:18:28 +053012// Adding component style to global stylesheet because
13// single-file component scoped styles aren't
14// being applied to dynamically appended elements
15// The overflow menu should be above the table
16
Yoshie Muranaka82cca542020-04-07 10:20:37 -070017.table-filter {
Yoshie Muranaka82cca542020-04-07 10:20:37 -070018 .dropdown-menu {
19 z-index: $zindex-dropdown + 1;
20 padding: 0;
SurenNewareb46e5352020-08-26 16:59:23 +053021 .dropdown-item {
22 &:hover {
23 background-color: gray("200");
24 }
25 &:active {
26 background-color: gray("300");
27 }
28 &:focus {
29 outline: none;
30 background-color: transparent;
31 box-shadow: inset 0 0 0 2px theme-color("primary");
32 }
33 }
Yoshie Muranaka82cca542020-04-07 10:20:37 -070034 }
35}