forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchWithModal.scss
More file actions
47 lines (39 loc) · 818 Bytes
/
SearchWithModal.scss
File metadata and controls
47 lines (39 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@import '../../IrisGrid.scss';
.visibility-search-list {
width: 0.75 * $table-sidebar-max-width;
border: 1px solid var(--dh-color-popover-border);
.popper-arrow {
display: none;
}
.tree-item {
padding: $spacer-1;
}
.no-results {
padding: $spacer-1;
margin: auto;
color: var(--dh-color-text-disabled);
}
}
.visibility-search-list-inner {
display: flex;
flex-direction: column;
max-height: inherit;
.tree-container {
max-height: inherit;
padding: $spacer-1;
overflow: auto;
flex-grow: 1;
flex-shrink: 1;
}
.footer-buttons {
border-top: 1px solid var(--dh-color-popover-border);
flex-grow: 0;
flex-shrink: 0;
display: flex;
flex-direction: row;
justify-content: space-between;
& > * {
flex-grow: 1;
}
}
}