Skip to content

Commit

Permalink
Change endpoints summary KPIs and index pattern and APIs selects font…
Browse files Browse the repository at this point in the history
… sizes (#6702)

* Change font-sizes and default dev-tools column size

* Add changelog
  • Loading branch information
asteriscos authored May 23, 2024
1 parent 784015a commit 489c10b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Changed overview home top KPIs. [#6379](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6379) [#6408](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6408) [#6569](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6569)
- Updated the PDF report year number. [#6492](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6492)
- Changed overview home font size [#6627](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6627)
- Changed endpoints summary KPIs, index pattern and APIs selects font sizes [#6702](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6702)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion plugins/main/public/components/wz-menu/wz-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ export const WzMenu = withWindowSize(
<EuiFlexGroup
alignItems='center'
responsive={false}
className='wz-margin-left-10 wz-margin-right-10'
className='wz-margin-left-10 wz-margin-right-10 font-size-14'
>
{!this.showSelectorsInPopover &&
this.state.patternList.length > 1 &&
Expand Down
4 changes: 2 additions & 2 deletions plugins/main/public/controllers/dev-tools/dev-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -785,11 +785,11 @@ export class DevToolsController {
this.$window.onresize = () => {
$('#wz-dev-left-column').attr(
'style',
'width: calc(30% - 7px); !important',
'width: calc(45% - 7px); !important',
);
$('#wz-dev-right-column').attr(
'style',
'width: calc(70% - 7px); !important',
'width: calc(55% - 7px); !important',
);
dynamicHeight();
};
Expand Down
8 changes: 6 additions & 2 deletions plugins/main/public/styles/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -502,14 +502,14 @@ md-sidenav {
}

#wz-dev-left-column {
width: calc(30% - 7px);
width: calc(45% - 7px);
min-width: calc(20% - 7px);
max-width: calc(80% - 7px);
float: left;
}

#wz-dev-right-column {
width: calc(70% - 7px);
width: calc(55% - 7px);
min-width: calc(20% - 7px);
max-width: calc(80% - 7px);
float: left;
Expand Down Expand Up @@ -1551,6 +1551,10 @@ kbn-dis.hide-filter-control .globalFilterGroup__branch {
max-width: 45%;
max-height: 100%;

.euiLink {
font-weight: normal;
}

.last-agents-link {
.euiToolTipAnchor {
white-space: nowrap;
Expand Down
4 changes: 4 additions & 0 deletions plugins/main/public/styles/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ select {
font-size: 12px !important;
}

.font-size-14 {
font-size: 14.5px;
}

.font-size-16 {
font-size: 16px;
}
Expand Down

0 comments on commit 489c10b

Please sign in to comment.