Open
Description
Currently this plugin uses the incorrect style:
.context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg {
position: absolute;
top: .3em;
left: .5em;
color: #2980b9;
}
This style doesn't take into account icon sizes that can be different. As a result, an icon isn't centered vertically relative to context menu item. To solve this problem, the style could look as follows:
.context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg {
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
left: .5em;
color: #2980b9;
}