Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit b900ff2

Browse files
author
Charles Ma
committed
ENH refs #232 Fixed z-index
1 parent 6daf5ea commit b900ff2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

core/public/js/layout/main.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,14 @@ $(function() {
258258
event: 'click',
259259
solo: true // Only show one tooltip at a time
260260
},
261-
hide: 'unfocus',
261+
hide: {
262+
event: false
263+
},
262264
style: {
263265
classes: 'uploadqtip ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded'
264266
}
265267
})
268+
$('.uploadqtip').css('z-index:500');
266269
}
267270

268271
$('div.viewAction li a').hover(function(){
@@ -443,9 +446,11 @@ function showDialog(title,button)
443446
draggable:false,
444447
title: title,
445448
position: [x,y],
449+
zIndex: 15100,
446450
buttons: {"Ok": function() {$(this).dialog("close");}}
447451
});
448452

453+
449454
}
450455
else
451456
{
@@ -455,9 +460,11 @@ function showDialog(title,button)
455460
modal: false,
456461
draggable:false,
457462
title: title ,
463+
zIndex: 15100,
458464
position: [x,y]
459465
});
460466
}
467+
461468
}
462469

463470
function showBigDialog(title,button)

0 commit comments

Comments
 (0)