mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 10:40:07 -04:00
Co-authored-by: Tyler Smalley <tylersmalley@me.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Dave Snider <dave.snider@gmail.com>
40 lines
918 B
SCSS
40 lines
918 B
SCSS
.lnsInnerIndexPatternDataPanel {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: $euiSize $euiSize 0;
|
|
}
|
|
|
|
.lnsInnerIndexPatternDataPanel__header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: $euiSizeS;
|
|
}
|
|
|
|
.lnsInnerIndexPatternDataPanel__titleTooltip {
|
|
margin-right: $euiSizeXS;
|
|
}
|
|
|
|
.lnsInnerIndexPatternDataPanel__fieldItems {
|
|
// Quick fix for making sure the shadow and focus rings are visible outside the accordion bounds
|
|
padding: $euiSizeXS;
|
|
}
|
|
|
|
.lnsInnerIndexPatternDataPanel__textField {
|
|
@include euiFormControlLayoutPadding(1, 'right');
|
|
@include euiFormControlLayoutPadding(1, 'left');
|
|
}
|
|
|
|
.lnsInnerIndexPatternDataPanel__filterType {
|
|
font-size: $euiFontSizeS;
|
|
padding: $euiSizeS;
|
|
border-bottom: 1px solid $euiColorLightestShade;
|
|
}
|
|
|
|
.lnsInnerIndexPatternDataPanel__filterTypeInner {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.lnsFieldListPanel__fieldIcon {
|
|
margin-right: $euiSizeS;
|
|
}
|
|
}
|