From c158458084e0e7c847ce812ad1bb5dd493d337fa Mon Sep 17 00:00:00 2001 From: Praveen K B Date: Tue, 17 Dec 2024 11:58:54 +0530 Subject: [PATCH] Fixed CSS issues --- src/pages/Stream/Views/Explore/StaticLogTable.tsx | 14 +++++++++++--- src/pages/Stream/styles/Logs.module.css | 4 +++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/pages/Stream/Views/Explore/StaticLogTable.tsx b/src/pages/Stream/Views/Explore/StaticLogTable.tsx index 624db349..7478dfe7 100644 --- a/src/pages/Stream/Views/Explore/StaticLogTable.tsx +++ b/src/pages/Stream/Views/Explore/StaticLogTable.tsx @@ -92,7 +92,13 @@ const makeHeaderOpts = ( } const isFirstColumn = index === 0; return ( -
+
{ @@ -107,7 +113,9 @@ const makeHeaderOpts = ( style={{ display: isFirstSelectedRow && isFirstColumn ? 'flex' : '', }}> - {isSecureHTTPContext ? sanitizedValue && : null} + {isSecureHTTPContext + ? sanitizedValue && + : null}
{sanitizedValue}
@@ -260,7 +268,7 @@ const Table = (props: { primaryHeaderHeight: number }) => { const [start, end] = rowNumber.split(':').map(Number); return row.index >= start && row.index <= end; })() - ? '#DDE3FE' + ? '#E8EDFE' : '', }, }; diff --git a/src/pages/Stream/styles/Logs.module.css b/src/pages/Stream/styles/Logs.module.css index 22180231..384b27c4 100644 --- a/src/pages/Stream/styles/Logs.module.css +++ b/src/pages/Stream/styles/Logs.module.css @@ -275,10 +275,12 @@ .actionIconContainer { position: absolute; top: 25%; - left: 0; + left: 3px; cursor: pointer; + padding: 1px 0px; border-radius: 4px; background-color: white; + border: 0.8px solid #545beb; display: none; } }