2

我有一个引导手风琴,我还应用了x-editable,它只会通过下拉列表中的链接触发:

这个

我想删除:

线

做到:

在此处输入图像描述

不能删除下面的行x-editable吗?

4

2 回答 2

1

在 x-editable 样式表之后的样式表中试试这个:

.editable-click,
a.editable-click,
a.editable-click:hover {
    border: none !important;
}
于 2014-01-22T22:12:54.337 回答
0

在您的 main.js(用于 x-editable 的 jquery 文件)中使用它。

.accordion-1 是手风琴类

 $(".accordion-1").attr('style', 'border-bottom: none;');
于 2015-12-07T20:11:08.233 回答