Russ
Well-known member
- Affected version
- 2.2.11
Such a minor thing and might have some reasoning behind it I'm missing.
Template:
app_inlinemod.less
line 134:
It's forcing the button line height to 1.5 to "match select". But Select inherits input styling properties which inherit the default line-height in typography settings. So default style that button is 1.5 when the select is 1.4 causing the button to be off.
Template:
app_inlinemod.less
line 134:
Code:
.button.inlineModBar-goButton
{
font-size: @xf-fontSizeNormal;
line-height: 1.5; // matches select
min-width: 0;
}
It's forcing the button line height to 1.5 to "match select". But Select inherits input styling properties which inherit the default line-height in typography settings. So default style that button is 1.5 when the select is 1.4 causing the button to be off.