forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchable_dropdown.scss
More file actions
39 lines (32 loc) · 790 Bytes
/
searchable_dropdown.scss
File metadata and controls
39 lines (32 loc) · 790 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
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
@import "../variables";
.searchableDropdown {
overflow: "hidden";
.euiFormControlLayout__childrenWrapper {
display: flex;
}
&--topDisplay {
padding-right: $euiSizeL;
font-size: $euiFontSizeS;
flex-grow: 1;
.euiButtonEmpty__content {
justify-content: flex-start;
}
}
&--fixedWidthChild {
width: calc(#{$wizLeftNavWidth} - #{$euiSizeXL} * 2);
}
&--selectableWrapper .euiSelectableList {
// When clicking on the selectable content it will "highlight" itself with a box shadow
// This turns that off
box-shadow: none !important;
margin: ($euiFormControlPadding * -1) - 4;
}
.euiPopover,
.euiPopover__anchor {
width: 100%;
}
}