* Switch to using @fontsource for Inter & Inconsolata Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused font Open_Sans Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to less broken imports Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to Ubuntu 24.04 Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Discard changes to res/themes/dark/css/dark.pcss * Discard changes to res/themes/legacy-light/css/_fonts.pcss * Discard changes to res/themes/light-high-contrast/css/light-high-contrast.pcss * Discard changes to res/themes/light/css/light.pcss * Discard changes to .github/workflows/end-to-end-tests.yaml * Set outputDir for fonts Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Use headed mode for Playwright Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to new Chrome headless mode instead Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Cache bust playwright browser install in CI Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Try with 22.04 Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update to Ubuntu Noble Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
20 lines
689 B
Text
20 lines
689 B
Text
/* the 'src' links are relative to the bundle.css, which is in a subdirectory.
|
|
*/
|
|
|
|
/* Twemoji COLR */
|
|
@font-face {
|
|
font-family: "Twemoji";
|
|
font-weight: 400;
|
|
src: url("$(res)/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2") format("woff2");
|
|
}
|
|
/* For at least Chrome on Windows 10, we have to explictly add extra weights for the emoji to appear in bold messages, etc. */
|
|
@font-face {
|
|
font-family: "Twemoji";
|
|
font-weight: 600;
|
|
src: url("$(res)/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2") format("woff2");
|
|
}
|
|
@font-face {
|
|
font-family: "Twemoji";
|
|
font-weight: 700;
|
|
src: url("$(res)/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2") format("woff2");
|
|
}
|