From d5cf49ec3e27e3b41f8837b13537f092fcde7eb6 Mon Sep 17 00:00:00 2001 From: JuanGarriuz Date: Mon, 7 Oct 2024 10:17:53 +0200 Subject: [PATCH 1/5] Overwrite eui styles --- .../public/components/common/wazuh-discover/discover.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/main/public/components/common/wazuh-discover/discover.scss b/plugins/main/public/components/common/wazuh-discover/discover.scss index f1dbfb1998..7f32e5c5f5 100644 --- a/plugins/main/public/components/common/wazuh-discover/discover.scss +++ b/plugins/main/public/components/common/wazuh-discover/discover.scss @@ -3,6 +3,14 @@ height: max-content !important; } + .euiDataGridRowCell:focus { + border: 1px solid rgba(0, 107, 180, 0.4); + border-radius: 1px; + z-index: 2; + outline: none; + margin-top: -1px; + } + .euiDataGrid--fullScreen { height: calc(100vh - 49px); bottom: 0; From 4df4f90556eb94378db5ce5e163fc7bf5abc5f78 Mon Sep 17 00:00:00 2001 From: JuanGarriuz Date: Mon, 7 Oct 2024 10:22:43 +0200 Subject: [PATCH 2/5] Added changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8f3be31da..330ee561a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ All notable changes to the Wazuh app project will be documented in this file. - Fixed no-agent-alert spawn with selected agent in agent-welcome view [#7029](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7029) - Fixed security policy exception when it contained deprecated actions [#7042](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7042) - Fix export formatted csv data with special characters from tables [#7048](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7048) +- Fixed border on cells in events that disappear when clicked [#7075](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7075) ### Removed From eb734b08a7feda6cac090cc3272e5403f662c1aa Mon Sep 17 00:00:00 2001 From: JuanGarriuz Date: Wed, 9 Oct 2024 09:09:31 +0200 Subject: [PATCH 3/5] Solve styles --- .../public/components/common/wazuh-discover/discover.scss | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/main/public/components/common/wazuh-discover/discover.scss b/plugins/main/public/components/common/wazuh-discover/discover.scss index 7f32e5c5f5..da124364c3 100644 --- a/plugins/main/public/components/common/wazuh-discover/discover.scss +++ b/plugins/main/public/components/common/wazuh-discover/discover.scss @@ -5,10 +5,7 @@ .euiDataGridRowCell:focus { border: 1px solid rgba(0, 107, 180, 0.4); - border-radius: 1px; - z-index: 2; - outline: none; - margin-top: -1px; + margin-top: 0px; } .euiDataGrid--fullScreen { From d7bfc7a33ab7b17f77d02a3f7026f9bd241b26f8 Mon Sep 17 00:00:00 2001 From: JuanGarriuz Date: Fri, 25 Oct 2024 17:34:00 +0200 Subject: [PATCH 4/5] Change border per shadow-box --- .../public/components/common/wazuh-discover/discover.scss | 5 ----- plugins/main/public/styles/common.scss | 6 ------ 2 files changed, 11 deletions(-) diff --git a/plugins/main/public/components/common/wazuh-discover/discover.scss b/plugins/main/public/components/common/wazuh-discover/discover.scss index da124364c3..f1dbfb1998 100644 --- a/plugins/main/public/components/common/wazuh-discover/discover.scss +++ b/plugins/main/public/components/common/wazuh-discover/discover.scss @@ -3,11 +3,6 @@ height: max-content !important; } - .euiDataGridRowCell:focus { - border: 1px solid rgba(0, 107, 180, 0.4); - margin-top: 0px; - } - .euiDataGrid--fullScreen { height: calc(100vh - 49px); bottom: 0; diff --git a/plugins/main/public/styles/common.scss b/plugins/main/public/styles/common.scss index a6fbe6be15..7989f88130 100644 --- a/plugins/main/public/styles/common.scss +++ b/plugins/main/public/styles/common.scss @@ -324,12 +324,6 @@ input[type='search'].euiFieldSearch { box-shadow: none; } -:focus:not(.wz-button):not(.input-filter-box):not(.kuiLocalSearchInput):not( - .euiTextArea - ):not(.euiPanel.euiPopover__panel.euiPopover__panel-isOpen) { - box-shadow: none !important; -} - /* Custom colors styles */ .color-white { color: white; From 5c1fffd3a9b3c74bc97d9f7cda5fbbfa3d5c8d02 Mon Sep 17 00:00:00 2001 From: Federico Rodriguez Date: Fri, 25 Oct 2024 18:32:17 +0200 Subject: [PATCH 5/5] Fix changelog --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a920f7d8d..b626ef9d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,6 @@ All notable changes to the Wazuh app project will be documented in this file. - Fixed no-agent-alert spawn with selected agent in agent-welcome view [#7029](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7029) - Fixed loading state of the agents status chart in the home overview [#7120](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7120) - Fixed security policy exception when it contained deprecated actions [#7042](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7042) -- Fix export formatted csv data with special characters from tables [#7048](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7048) - Fixed border on cells in events that disappear when clicked [#7075](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7075) - Fixed export formatted csv data with special characters from tables [#7048](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7048) - Fixed column reordering feature [#7072](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7072)