Change background color of clicked option in duallistbox

前端 未结 3 1873
悲&欢浪女
悲&欢浪女 2021-01-18 05:31

Im using bootstrap-duallistbox

Currently, when users click an option from either box, the option background turns blue for a second then the option is moved to the ot

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-18 05:34

    What I have tried in inspect element form bootstrap-duallistbox

    for options hover

    .bootstrap-duallistbox-container select option:hover, 
    .bootstrap-duallistbox-container select option:focus, 
    .bootstrap-duallistbox-container select option:active  {
            background-color: red;
        }
    

提交回复
热议问题