Skip to content

Commit

Permalink
Merge pull request pentaho#5642 from soagarwal1/BACKLOG-40442
Browse files Browse the repository at this point in the history
[BISERVER-15086] - Fix scrollbar showing when burger menubar popup open
  • Loading branch information
rmansoor authored Jun 24, 2024
2 parents e2cdd5a + b2359c1 commit dc78ede
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -938,11 +938,16 @@ div#customDropdownPopupMajor .gwt-MenuBar-vertical .gwt-MenuItem:hover:not(.gwt-
/* region #pucWrapper et al. */
:root {
/* Main and burger toolbar */
--puc-toolbar-button-inner-height: calc(1em * 32/14);
--puc-toolbar-button-inner-width: calc(1em * 32/14);
--puc-toolbar-button-inner-height: calc(1em * var(--icon-width)/14);
--puc-toolbar-button-inner-width: calc(1em * var(--icon-width)/14);
--puc-toolbar-button-border-width: 1px;
--puc-toolbar-button-height: calc(2 * var(--puc-toolbar-button-border-width) + var(--puc-toolbar-button-inner-height));

/* High DPI screen shows border of reduced size,
round-off error in border used to accommodate it for calculating toolbar height */
--puc-toolbar-button-border-round-off-error: 1px;
--puc-toolbar-button-height: calc(
2 * var(--puc-toolbar-button-border-width) +
var(--puc-toolbar-button-inner-height) -
var(--puc-toolbar-button-border-round-off-error));
--puc-header-border-top-width: 4px;
--puc-header-box-shadow-blur-radius: 5px;
--puc-header-burger-mode-height: calc(
Expand Down

0 comments on commit dc78ede

Please sign in to comment.