Skip to content

Commit

Permalink
[SIEM] Fix timeline styles in Firefox (elastic#37575)
Browse files Browse the repository at this point in the history
Fix SIEM timeline styles in Firefox
  • Loading branch information
stephmilovic authored Jun 3, 2019
1 parent 86fea48 commit 627c280
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion x-pack/plugins/siem/public/components/flyout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { DEFAULT_TIMELINE_WIDTH } from '../timeline/body/helpers';
import { trackUiAction as track } from '../../lib/track_usage';

/** The height in pixels of the flyout header, exported for use in height calculations */
export const flyoutHeaderHeight: number = 48;
export const flyoutHeaderHeight: number = 60;

export const Badge = styled(EuiBadge)`
position: absolute;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ export const TimelineProperties = styled.div<{ width: number }>`

export const DatePicker = styled(EuiFlexItem)<{ width: number }>`
width: ${({ width }) => `${width}px`};
.euiSuperDatePicker__flexWrapper {
max-width: none;
width: auto;
}
`;

export const NameField = styled(EuiFieldText)`
Expand Down

0 comments on commit 627c280

Please sign in to comment.