Schaltflächenumrandung deaktivieren/entfernen

Nachdem wir die Form aller unserer Schaltflächen geändert haben, habe ich einen schwarzen Umriss auf der Schaltfläche des Dropdown-Menüs für die Hauptkategorien bemerkt. Gibt es eine Möglichkeit, diesen Umriss zu entfernen? Vielen Dank!

That should do it:

.list-controls .category-drop {
  .category-drop-header {
    border-color: transparent;
  }
}

That worked, thank you!

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;
}