[All] correction z-order for synchronize tooltip
This commit is contained in:
parent
a9eb64fa3a
commit
326e5bfa98
|
@ -48,7 +48,7 @@ define([
|
|||
},
|
||||
|
||||
template: _.template([
|
||||
'<div class="synch-tip-root <%= scope.placement %>">',
|
||||
'<div class="synch-tip-root <% if (!!scope.options.extCls) {print(scope.options.extCls + \" \");} %><%= scope.placement %>">',
|
||||
'<div class="asc-synchronizetip">',
|
||||
'<div class="tip-arrow <%= scope.placement %>"></div>',
|
||||
'<div>',
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
z-index: @zindex-navbar + 2;
|
||||
width: 300px;
|
||||
|
||||
&.inc-index {
|
||||
z-index: @zindex-navbar + 4;
|
||||
}
|
||||
|
||||
.tip-arrow {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -2052,6 +2052,7 @@ define([
|
|||
|
||||
createSynchTip: function () {
|
||||
this.synchTooltip = new Common.UI.SynchronizeTip({
|
||||
extCls: this.mode.isDesktopApp ? 'inc-index' : undefined,
|
||||
target: this.btnCollabChanges.$el
|
||||
});
|
||||
this.synchTooltip.on('dontshowclick', function () {
|
||||
|
|
|
@ -1404,6 +1404,7 @@ define([
|
|||
|
||||
createSynchTip: function () {
|
||||
this.synchTooltip = new Common.UI.SynchronizeTip({
|
||||
extCls: this.mode.isDesktopApp ? 'inc-index' : undefined,
|
||||
target: this.btnCollabChanges.$el
|
||||
});
|
||||
this.synchTooltip.on('dontshowclick', function () {
|
||||
|
|
|
@ -25,11 +25,11 @@
|
|||
position: absolute;
|
||||
top: 32px;
|
||||
left: 48px;
|
||||
right: 45px;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
background-color: @gray-light;
|
||||
z-index: @zindex-tooltip + 1;
|
||||
/*z-index: @zindex-tooltip + 1;*/
|
||||
}
|
||||
|
||||
.menu-layouts {
|
||||
|
|
|
@ -1756,6 +1756,7 @@ define([
|
|||
|
||||
createSynchTip: function () {
|
||||
this.synchTooltip = new Common.UI.SynchronizeTip({
|
||||
extCls: this.mode.isDesktopApp ? 'inc-index' : undefined,
|
||||
target: this.btnCollabChanges.$el
|
||||
});
|
||||
this.synchTooltip.on('dontshowclick', function() {
|
||||
|
|
|
@ -47,11 +47,11 @@
|
|||
position: absolute;
|
||||
top: 32px;
|
||||
left: 48px;
|
||||
right: 45px;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
background-color: @gray-light;
|
||||
z-index: @zindex-tooltip + 1;
|
||||
/*z-index: @zindex-tooltip + 1;*/
|
||||
}
|
||||
|
||||
.color-schemas-menu {
|
||||
|
|
Loading…
Reference in a new issue