简体   繁体   中英

Bootstrap Accordion + x-editable

I have an bootstrap accordion which I also applied x-editable that will only trigger through a link in the dropdown:

这个

I want to remove:

线

to make it:

在此处输入图片说明

Isn't possible to remove the line below the x-editable ?

Try this in a stylesheet that comes after the x-editable stylesheet:

.editable-click,
a.editable-click,
a.editable-click:hover {
    border: none !important;
}

Use this in your main.js (jquery file that you are using for x-editable).

.accordion-1 is a class on accordion

 $(".accordion-1").attr('style', 'border-bottom: none;');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM