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