Remove select2 border on active of select element?

▼魔方 西西 提交于 2019-12-08 16:49:20

问题


I have gone through its css code but not able to find its actually property that is being applied on the main element.

i'm making some changes in select2 library so that i can use it in my way. i trapped in its CSS did not get from which property border displayed on active or focus on element.

Did not find any :active selector in css or I also checked it in js file not also there,while debugging not showing any css applied on that element.

Link for plunkr

image of element border.


回答1:


Resolved

span.select2-selection.select2-selection--single {
        outline: none;
    }

updated plunkr



来源:https://stackoverflow.com/questions/33413051/remove-select2-border-on-active-of-select-element

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!