Merge pull request #2245 from ONLYOFFICE/fix/bugfix

Fix/bugfix
This commit is contained in:
Julia Radzhabova
2023-02-16 20:04:47 +03:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@ -427,7 +427,7 @@ define([
for (var i=0; i<_flex.length; i++) {
var item = _flex[i].el;
_rightedge = $active.get(0).getBoundingClientRect().right;
if (item.outerWidth() > parseInt(item.css('min-width'))) {
if (Math.floor(item.outerWidth()) > parseInt(item.css('min-width'))) {
data.rightedge = _rightedge;
return;
} else

View File

@ -267,6 +267,9 @@
}
.group {
height: 52px !important;
&.flex {
vertical-align: bottom;
}
}
&[data-tab=pivot] {
padding: 5px 10px 0 0;