Skip to content

Commit

Permalink
Merge branch '4.7.0' into 5219-decoder-information-is-displayed-befor…
Browse files Browse the repository at this point in the history
…e-closing-the-flyout-with-the-information
  • Loading branch information
yenienserrano authored Jul 20, 2023
2 parents b1d4917 + 6595071 commit fa8e1c0
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 123 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to the Wazuh app project will be documented in this file.
### Fixed

- Fixed the propagation event so that the flyout data, in the decoders, does not change when the button is pressed. [#5597](https://github.com/wazuh/wazuh-kibana-app/pull/5597)
- Fixed the color of the agent name in the groups section in dark mode. [#5676](https://github.com/wazuh/wazuh-kibana-app/pull/5676)

## Wazuh v4.6.0 - OpenSearch Dashboards 2.6.0 - Revision 01

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,69 +14,69 @@
/* ------------------------ Wazuh Multiple selector ------------------------- */
/* -------------------------------------------------------------------------- */


.wzMultipleSelector{
width: 100%;
.wzMultipleSelector {
width: 100%;
}

.wzMultipleSelector .panel-primary{
border: 1px solid #d9d9d9;
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1) !important;
border-radius: 2px;
.wzMultipleSelector .panel-primary {
border: 1px solid #d9d9d9;
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1) !important;
border-radius: 2px;
}

.wzMultipleSelector .panel-primary > .panel-heading{
background: none;
color: #000;
margin: 5px 15px;
border-color: #e0e0e0;
.wzMultipleSelector .panel-primary > .panel-heading {
background: none;
color: #000;
margin: 5px 15px;
border-color: #e0e0e0;
}

.wzMultipleSelectorButtons{
width: 100px;
float: left;
text-align: center;
height: 400px;
display: grid;
.wzMultipleSelectorButtons {
width: 100px;
float: left;
text-align: center;
height: 400px;
display: grid;
}

.wzMultipleSelectorButtons button{
margin: 5px;
height: 75px;
.wzMultipleSelectorButtons button {
margin: 5px;
height: 75px;
}

.wzMultipleSelectorLeft, .wzMultipleSelectorRight{
width: calc(#{"50% - 65px"});
float: left;
.wzMultipleSelectorLeft,
.wzMultipleSelectorRight {
width: calc(#{'50% - 65px'});
float: left;
}

.wzMultipleSelectorRight{
margin: 0 0 0 15px;
.wzMultipleSelectorRight {
margin: 0 0 0 15px;
}

.wzMultipleSelectorSelect{
width: 100%;
background-color: #fbfcfd;
border: 1px solid #D3DAE6;
.wzMultipleSelectorSelect {
width: 100%;
background-color: #fbfcfd;
border: 1px solid #d3dae6;
}
.wzMultipleSelectorLeft{
margin: 0 15px 0 0;

.wzMultipleSelectorLeft {
margin: 0 15px 0 0;
}

.wzMultipleSelector .panel-body{
display: grid;
.wzMultipleSelector .panel-body {
display: grid;
}

.wzMultipleSelector select{
border-color: #e0e0e0;
margin-top: 15px;
.wzMultipleSelector select {
border-color: #e0e0e0;
margin-top: 15px;
}

.wzMultipleSelectorAdding{
background-color: #c6ffc6;
.wzMultipleSelectorAdding {
background-color: #c6ffc6;
}

.wzMultipleSelectorRemoving{
background-color: #ffe7e7;
}
.wzMultipleSelectorRemoving {
background-color: #ffe7e7;
}
Loading

0 comments on commit fa8e1c0

Please sign in to comment.