calebs
(Test)
1
بعد تغيير شكل جميع أزرارنا، لاحظت وجود إطار أسود حول زر قائمة الفئات الرئيسية المنسدلة. هل توجد طريقة لإزالة هذا الإطار؟ شكرًا لك!
j.jaffeux
(Joffrey Jaffeux)
2
That should do it:
.list-controls .category-drop {
.category-drop-header {
border-color: transparent;
}
}
calebs
(Test)
6
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;
}
}
tshenry
(Taylor)
7
This should work for mobile:
.list-controls .nav-pills .navigation-toggle {
border-color: transparent;
}