Skip to content

Commit 3f2913b

Browse files
[Security Solution] Full screen Timeline CSS fixes (#72559)
## [Security Solution] Full screen Timeline CSS fixes Fixes CSS issues related to the [Full screen timeline, Collapse event](#71786) feature: - Sometimes, Timeline's left padding is missing in Full screen mode - The `Attach to new case` and `Attach to existing case...` actions should be centered in Full screen mode - The Timeline flyout button is not opaque when the alerts table is in Full screen mode ### Sometimes, Timeline's left padding is missing in Full screen mode To reproduce: 1) Drag anything to the Timeline 2) Click the `Full screen` button **Expected result** - [x] The timeline has left padding in full screen mode **Actual result** - [x] Sometimes, the left padding of the Timeline is missing, per the screenshot below: ![timeline-full-screen-before](https://user-images.githubusercontent.com/4459398/87998223-8acf8000-cab4-11ea-91a1-6b5644856b44.png) ### Fix: screenshot ![timeline-full-screen-after](https://user-images.githubusercontent.com/4459398/87998363-e3068200-cab4-11ea-8484-41d87ba4c97e.png) ### The `Attach to new case` and `Attach to existing case...` actions should be centered in full screen mode 1) Create a new timeline with the following KQL query: `agent.type : endpoint` 2) Click the `Analyze event` button on any enabled event to view Resolver **Expected result** - [x] The `Attach to new case` and `Attach to existing case...` actions should be centered between the horizontal lines **Actual result** - [x] The `Attach to new case` and `Attach to existing case...` actions are **NOT** centered, per the screenshot below: ![attach-to-case-before](https://user-images.githubusercontent.com/4459398/87998636-b9018f80-cab5-11ea-87e8-a54355386519.png) ### Fix: screenshot ![attach-to-case-after](https://user-images.githubusercontent.com/4459398/87998553-82c41000-cab5-11ea-9e33-fcffce11e4b4.png) ### The Timeline flyout button is not opaque when the alerts table is in Full screen mode To reproduce: 1) Navigate to Security > Detections 2) Click on the `Full screen` button **Expected result** - [x] The Timeline flyout button is opaque when the alerts table is in Full screen mode **Actual result** - [x] The Timeline flyout button is **NOT** opaque when the alerts table is in Full screen mode, per the screenshot below: ![flyout-button-before](https://user-images.githubusercontent.com/4459398/87998761-0d0c7400-cab6-11ea-9cd3-0c091e0291c9.png) ## Fix: screenshot (light theme) ![flyout-button-after-light](https://user-images.githubusercontent.com/4459398/87998784-231a3480-cab6-11ea-8fc9-17c28cf25202.png) ## Fix: screenshot (dark theme) ![flyout-button-after-dark](https://user-images.githubusercontent.com/4459398/87998824-45ac4d80-cab6-11ea-96ef-6242b8494f84.png) ### Desk testing Desk tested in : - Chrome `84.0.4147.89` - Firefox `78.0.2` - Safari `13.1.2`
1 parent b05d3d1 commit 3f2913b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

x-pack/plugins/security_solution/public/timelines/components/flyout/button/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const Container = styled.div`
3939
}
4040
4141
.${FLYOUT_BUTTON_CLASS_NAME} {
42+
background: ${({ theme }) => rgba(theme.eui.euiPageBackgroundColor, 1)};
4243
border-radius: 4px 4px 0 0;
4344
box-shadow: none;
4445
height: 46px;

x-pack/plugins/security_solution/public/timelines/components/flyout/pane/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ const StyledResizable = styled(Resizable)`
4444

4545
const RESIZABLE_ENABLE = { left: true };
4646

47+
const RESIZABLE_DISABLED = { left: false };
48+
4749
const FlyoutPaneComponent: React.FC<FlyoutPaneComponentProps> = ({
4850
children,
4951
onClose,
@@ -98,10 +100,10 @@ const FlyoutPaneComponent: React.FC<FlyoutPaneComponentProps> = ({
98100
size="l"
99101
>
100102
<StyledResizable
101-
enable={RESIZABLE_ENABLE}
103+
enable={timelineFullScreen ? RESIZABLE_DISABLED : RESIZABLE_ENABLE}
102104
defaultSize={resizableDefaultSize}
103-
minWidth={timelineFullScreen ? '100vw' : minWidthPixels}
104-
maxWidth={timelineFullScreen ? '100vw' : `${maxWidthPercent}vw`}
105+
minWidth={timelineFullScreen ? 'calc(100vw - 8px)' : minWidthPixels}
106+
maxWidth={timelineFullScreen ? 'calc(100vw - 8px)' : `${maxWidthPercent}vw`}
105107
handleComponent={resizableHandleComponent}
106108
onResizeStop={onResizeStop}
107109
>

x-pack/plugins/security_solution/public/timelines/components/graph_overlay/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ const GraphOverlayComponent = ({
181181
</EuiFlexItem>
182182
{timelineId === TimelineId.active && timelineType === TimelineType.default && (
183183
<EuiFlexItem grow={false}>
184-
<EuiFlexGroup gutterSize="none">
184+
<EuiFlexGroup alignItems="center" gutterSize="none">
185185
<EuiFlexItem grow={false}>
186186
<NewCase
187187
compact={true}

0 commit comments

Comments
 (0)