New responsive menu - tab question

Anyone know how to set the new responsive menu so it doesn’t truncate the title on the tab?

image

There is no option for that just yet. But it can be acheivable by dropping something like this on the onApplicationInit event in the menu:

?>
<style>
#contrl_abas .tab > a > span {
    max-width: unset !important;
}
</style>
<?php

Thank you! adding the code as you explained, works well!