Skip to content

Commit

Permalink
fix small css bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 committed Sep 20, 2019
1 parent 550bc91 commit 371cac1
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/graph/public/components/_app.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.gphGraph__bar {
margin: $euiSizeS;
margin: 0px $euiSizeS $euiSizeS $euiSizeS;
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
.gphSearchBar {
padding: 0 $euiSizeS;
}

.gphSearchBar__datasourceButton {
height: 100% !important;
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
@import './field_manager';
@import './field_editor';
@import './field_picker';
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export function FieldEditor({
lastValidHopSize: isDisabled ? 0 : initialField.hopSize,
},
});
setOpen(false);
}

const badgeDescription = isDisabled
Expand Down Expand Up @@ -151,7 +152,6 @@ export function FieldEditor({
>
<EuiContextMenu
initialPanelId="root"
key={`${initialField.name}-${isDisabled}`}
panels={[
{
id: 'root',
Expand Down Expand Up @@ -181,6 +181,7 @@ export function FieldEditor({
icon: <EuiIcon type="trash" size="m" />,
onClick: () => {
deselectField(initialField.name);
setOpen(false);
},
},
],
Expand Down

0 comments on commit 371cac1

Please sign in to comment.