Skip to content

Commit

Permalink
[Design] Swap button styles in header and KQL search bar (elastic#117062
Browse files Browse the repository at this point in the history
  • Loading branch information
andreadelrio authored Nov 2, 2021
1 parent b371b83 commit 847aff2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ export default function QueryBarTopRow(props: QueryBarTopRowProps) {
isDisabled={isDateRangeInvalid}
isLoading={props.isLoading}
onClick={onClickSubmitButton}
fill={false}
data-test-subj="querySubmitButton"
/>
);
Expand Down

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 @@ -38,7 +38,7 @@ export function TopNavMenuItem(props: TopNavMenuData) {
};

const btn = props.emphasize ? (
<EuiButton size="s" {...commonButtonProps}>
<EuiButton size="s" {...commonButtonProps} fill>
{upperFirst(props.label || props.id!)}
</EuiButton>
) : (
Expand Down

0 comments on commit 847aff2

Please sign in to comment.