下拉框悬浮选中时的字体颜色该怎么改,我这个完全看不清

setTimeout(function() { $('.report-main-parameter-container-controller-combo .bi-card').css('background-color', 'transparent');

$('.report-main-parameter-container-controller-combo .bi-border').css('background-color','#02104d') ;

$('.report-main-parameter-container-controller-combo .bi-border').css('border-color','#20376c') ;

$('.report-main-parameter-container-controller-combo .bi-border').css('border-radius','2px') ;

$('.report-main-parameter-container-controller-combo .bi-popup-view .bi-card').css('background-color','#003366') ;

$('.report-main-parameter-container-controller-combo .bi-card').css('color','#0096ff') ;

$('.report-main-parameter-container-controller-combo .bi-list-item-active.hover').css('color','#0096ff') ;

  }, 200)

1646359726(1).png

FineReport 123木头人1 发布于 2022-3-4 10:09
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
@Lv6资深互助
发布于2022-3-4 10:12
最佳回答
0
shirokoLv6资深互助
发布于2022-3-4 10:25

加上

const style = document.createElement('style'); 

 style.innerText = `.report-main-parameter-container-controller-combo .bi-list-item-active:hover{color:white !important; }`;   

document.head.appendChild(style);

  • 3关注人数
  • 422浏览人数
  • 最后回答于:2022-3-4 10:25
    请选择关闭问题的原因
    确定 取消
    返回顶部