Skip to content

Commit

Permalink
[Observability][SecuritySolution] Fix to prevent observability style …
Browse files Browse the repository at this point in the history
…conflict in flyout across plugins (#138091)

* fix to prevent style conflict in flyouts from diff. plugins

* remove unnecessary class token

(cherry picked from commit 3aa0599)
  • Loading branch information
logeekal committed Aug 10, 2022
1 parent 3d782db commit 29ce9ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function AlertsFlyout({
}

return (
<EuiFlyout onClose={onClose} size="s" data-test-subj="alertsFlyout">
<EuiFlyout className="oblt__flyout" onClose={onClose} size="s" data-test-subj="alertsFlyout">
<EuiFlyoutHeader hasBorder>
<AlertsFlyoutHeader alert={alertData} />
</EuiFlyoutHeader>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $fullscreenFlyoutTop: 72px;
top: $fullscreenFlyoutTop;
}

.euiFlyout,
.euiFlyout.oblt__flyout,
.euiCollapsibleNav {
top: $fullscreenFlyoutTop;
height: calc(100% - #{$fullscreenFlyoutTop});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ export function OverviewPage() {
</>
{isFlyoutVisible && (
<EuiFlyout
className="oblt__flyout"
size="s"
ownFocus
onClose={() => setIsFlyoutVisible(false)}
Expand Down

0 comments on commit 29ce9ae

Please sign in to comment.