|
RocketChat.theme.addPublicFont('body-font-family', '-apple-system, BlinkMacSystemFont, Roboto, \'Helvetica Neue\', Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Meiryo UI\''); |
For some (quite understandable) reason, on Windows 10 such declaration produces funky results for emoji and /or combining characters. , Arial, sans-serif should be at the end of such declaration, which should be from specific to generic font faces, here the order of Segoes is reversed and probably shadowed by the generic family.
Rocket.Chat/packages/rocketchat-theme/server/variables.js
Line 69 in 98c3ed5
For some (quite understandable) reason, on Windows 10 such declaration produces funky results for emoji and /or combining characters.
, Arial, sans-serifshould be at the end of such declaration, which should be from specific to generic font faces, here the order of Segoes is reversed and probably shadowed by the generic family.