I have a dropdown menu that displays an SVG icon, while all the other menus show a button with a font-based icon (ion-icon). I want all the dropdown menus to have a consistent look.
I've attempted to adjust the CSS code and searched through various .js and .php files, but unfortunately, nothing has been successful so far.
Here is the code for the SVG icon:
<svg class="dd__expandIcon" viewBox="0 0 9 15" width="9px" height="15px">
<path d="M315,1318.04l-4.5,4.96-4.5-4.96,0.944-1.04,3.557,3.92,3.553-3.92,0.944,1.04m-9-5.08,4.5-4.96,4.5,4.96-0.944,1.04-3.557-3.92-3.553,3.92L306,1312.96" transform="translate(-306 -1308)"></path>
</svg>
.dd__expandIcon {
width: 9px;
height: 15px;
flex-shrink: 0;
fill: #bdbdbd;
margin-left: 10px;
}
And here is the code for the ion-icon:
<button type="button" class="reactiveToggleBtn___cQAWH">
<i class="ion-chevron-down"></i>
</button>
.reactiveToggleBtn___cQAWH i {
font-size: 13px;
color: #484848;
}
You can view the current result in action (dropdown "Thème de la séance") versus the expected result (all other dropdowns) on this .
Thank you for your assistance!