Description
Currently the icons are displaying at roughly 24px and are not vertically aligned with the title. They should be roughly 20px and vertically aligned.
| current | corrected |
Icon size
It seems like the easiest way to achieve this might be by adjusting the font-size of .mwe-popups .mw-ui-icon.
.mwe-popups .mw-ui-icon {
font-size: 13px;
}Layout
I'm not sure what the best approach is here. The vertical-align:middle is helping, but it seems like some additional styling is needed. For the screenshot above I added a negative margin to the icon, which seems like an odd approach.
.mwe-popups .mw-ui-icon {
font-size: 13px;
margin-top: -3px;
}An alternative approach might be using display:flex on the parent element <strong class="mwe-popups-title">. This requires wrapping the title in a tag, and then using align-self: center on that and the icon element. Seems to result in the desired layout.


