[DE] Fix Bug 35750.

This commit is contained in:
Julia Radzhabova 2017-08-31 11:15:03 +03:00
parent 076960a38a
commit 97b20715f0
3 changed files with 4 additions and 8 deletions

View file

@ -532,11 +532,6 @@ define([
if (disable) leftMenu.close();
if (this.view) {
var group = this.view.$el.find('.move-changes');
group.css('position', disable ? 'relative' : 'initial');
disable && group.find('.toolbar-group-mask').css({
left: 0, right: 0, top: 0, bottom: 0
});
this.view.$el.find('.no-group-mask').css('opacity', 1);
}
},

View file

@ -168,6 +168,7 @@
.box-inner-shadow(0 -1px 0 @gray-dark);
.group {
position: relative;
display: table-cell;
vertical-align: middle;
white-space: nowrap;

View file

@ -43,9 +43,9 @@
.toolbar-group-mask {
position: absolute;
top: 32px;
left: 48px;
right: 45px;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
background-color: @gray-light;