diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index a073f0d4a..366e01b68 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -846,7 +846,8 @@ define([ this.rendered = false; this.template = _.template([ - '
', ' | ', @@ -929,12 +930,17 @@ define([ ' |
', ' | ', ' |
', ' | ', diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less index 9abba6f93..e80c36846 100644 --- a/apps/documenteditor/main/resources/less/filemenu.less +++ b/apps/documenteditor/main/resources/less/filemenu.less @@ -315,12 +315,31 @@ } } -#panel-info, +#panel-info { + #file-menu-panel & { + padding: 0; + display: flex; + flex-direction: column; + } + + #fms-flex-info { + &.bordered { + border-bottom: 1px solid @gray; + } + overflow: hidden; + position: relative; + } + +} + #panel-rights { #file-menu-panel & { padding: 0 30px; } +} +#panel-info, +#panel-rights { table { tr { td { @@ -349,7 +368,6 @@ &.main { width: 100%; - margin: 30px 0; } } |