-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
calender emoji before journal title is show as rectangle #3
Comments
What's your OS and Logseq runtime platform (desktop or browser)? |
I have a similar problem, using the desktop app on Fedora Linux 34 This would probably be fixed by adding Noto Color Emoji to the font stack, since that's the emoji font used on most Linux distributions. Currently, the theme only has Segoe UI Emoji and Apple Color Emoji, both of which are unavailable on Linux. |
Yes, the problem is related to OS's fonts, adding the missing font could solve the problem. Or you can simply append the code below to your #main-content #main-content-container .journal .flex-row.foldable-title h1.title:before {
display:none;
} Logseq doesn't use a special style selector for linux version, (for me) there's not a good way to adapt Linux yet. |
Would this not be fixed by adding "Noto Color Emoji" as a fallback font here? --ls-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif,
"Segoe UI Emoji", "Segoe UI Symbol"; |
According to this article, I guess there are some ways for custom emoji to fall to sans-serif or other font-family. (Though I have no idea about how to set up preferred emoji on Fedora distribution) |
#main-content #main-content-container .journal .flex-row.foldable-title h1.title:before {
display:none;
} Does not work for me to disable the emoji. I am on Logseq 0.6.3 and Bonofix 3.6.2. What is the proper selector now? |
The selector above is correct. The problem is that your Relative selectors in bonofix:
|
The text was updated successfully, but these errors were encountered: