导航栏题库-发送:如图发送弹框中当鼠标移至下拉条时,鼠标光标不要显示成可以左右拉动的图标

This commit is contained in:
cxt 2016-11-15 14:18:15 +08:00
parent 7988257e10
commit f754ac870d
2 changed files with 3 additions and 1 deletions

View File

@ -1631,7 +1631,7 @@ function pop_box_new(value, Width, Height){
new Drag("popupWrap");
$("#popupWrap input, #popupWrap textarea").mousedown(function(event){
$("#popupWrap input, #popupWrap textarea, #popupWrap ul").mousedown(function(event){
event.stopPropagation();
new Drag("popupWrap");
});

View File

@ -703,3 +703,5 @@ a:hover.hw_btn_blue,a:active.hw_btn_blue{ background: #3b94d6; color:#fff;}
/*禁用*/
.disabled {background-color:#f5f5f5;}
#popupWrap ul{cursor: default;}