在更改了所有按钮的形状后,我注意到主分类下拉菜单按钮上有一个黑色轮廓。有没有办法移除这个轮廓?谢谢!
That should do it:
.list-controls .category-drop {
.category-drop-header {
border-color: transparent;
}
}
7 个赞
That worked, thank you!
1 个赞
Hello! Sorry for bringing it up once again, but it really bothers us and Joffrey’s solution only fixed the issue on desktop.
Here’s the code we’ve tried, but it won’t remove the outline on mobile.
.list-controls .category-drop {
.category-drop-header {
border-color: transparent;
}
}
This should work for mobile:
.list-controls .nav-pills .navigation-toggle {
border-color: transparent;
}
3 个赞

