如何在展开/折叠按钮而不是(+/-)中包含 jquery.nestable 中的图像?
user1094976
问问题
560 次
快速浏览一下演示,使用Firebug来检查 CSS,您可以编辑这部分 CSS 来操作 (+/-) 按钮的外观:
.dd-item > button:before {
content: '+';
/* ... */
}
.dd-item > button[data-action="collapse"]:before {
content: "-";
}