Utilizing the bootstrap form-select
select element :
<select class="form-select listbox_length_menu_datatable"
<option value='5'>5</option>
<option value='10'>10</option>
<option value='20'>20</option>
<option value='30'>30</option>
<option value='-1'>Tous</option>
</select>
This is how it appears with the provided style :
.listbox_length_menu_datatable {
background-color: #E8E8E8;
background-image: url(icones/triangle-black.png);
border: none;
border-radius: 5px;
font-size: 0.58em;
font-weight: 650;
padding-left: 0.4rem !important;
padding-top: 0.1rem !important;
padding-bottom: 0.1rem !important;
}
When displayed, it looks like this : https://i.sstatic.net/fAhXW.png
How can I adjust the width and height of the background-image for the select element?