Search code examples
javascriptjquerycsstwitter-bootstrapbootstrap-accordion

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:

this

I want to remove:

line

to make it:

enter image description here

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


Solution

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

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