Change background color of clicked option in duallistbox

前端 未结 3 1871
悲&欢浪女
悲&欢浪女 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:59

    For option contained in simple select I found this solution (not working with Firefox 79.0 )

    select:focus > option:checked {
      background: #red !important;
      color: #fff !important;
    }
    

    But for option contained in select with 'multiple' option -

    提交评论

提交回复
热议问题