Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid filter hiding when adding too many of them #7077

Merged
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 filter management to prevent hiding when adding multiple filters [#7077](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7077)

### Removed

Expand Down
1 change: 0 additions & 1 deletion plugins/main/public/styles/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,6 @@ div.euiPopover__panel.euiPopover__panel-isOpen.euiPopover__panel--bottom.wz-menu
}

.globalFilterGroup__wrapper {
max-height: 100px;
height: auto !important;
}

Expand Down
6 changes: 6 additions & 0 deletions plugins/main/public/styles/media-queries.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,10 @@
margin-top: 10px;
}
}

@media only screen and (max-width: 574px) {
.globalFilterGroup__wrapper-isVisible {
margin-top: -6px;
}
}
}
Loading