我有一个定义list-style-type的scss文件。该文件的摘录如下:
$orange: #c53830;
...
ul.list1 {
list-style-type:circle;
color:$orange;
}
在我的javascript中我有
html: '<ul class="list1"><li>some words</li><li>some more words</li></ul>'
正在应用颜色,但我没有得到项目符号列表。
有什么想法吗?
答案 0 :(得分:1)
sencha-touch.css指定:
li
{
list-style:none;
}
尝试将以下内容添加到您自己的scss中:
list-style:circle;
。
你还有模板css之前的链接sencha-touch.css,所以你正确地覆盖它吗?