We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm working with an emoji set (Noto Emoji) that doesn't have skin tone variations. I'd like to not have the skin tones button.
#198 was a similar issue, fixed for a previous version.
Because the picker uses shadow DOM, we can inject a style sheet with overrides like this:
const pickerEl = document.querySelector("em-emoji-picker"); const pickerStyleEl = document.createElement("style"); pickerStyleEl.innerHTML = ".skin-tone-button { display: none; }"; pickerEl.shadowRoot.appendChild(pickerStyleEl);
Demo of emoji-mart with Noto Emoji.
The text was updated successfully, but these errors were encountered:
974d25b
No branches or pull requests
I'm working with an emoji set (Noto Emoji) that doesn't have skin tone variations. I'd like to not have the skin tones button.
#198 was a similar issue, fixed for a previous version.
Workaround
Because the picker uses shadow DOM, we can inject a style sheet with overrides like this:
Demo of emoji-mart with Noto Emoji.
The text was updated successfully, but these errors were encountered: