From 7f6daba3e6945893ac0b4ec90146622b77905187 Mon Sep 17 00:00:00 2001 From: xenua Date: Sun, 29 Jan 2023 12:46:56 +0100 Subject: [PATCH] add option to enlarge emoji on hover --- mastodon/mastodon4.user.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/mastodon/mastodon4.user.css b/mastodon/mastodon4.user.css index c4fe699..034e330 100644 --- a/mastodon/mastodon4.user.css +++ b/mastodon/mastodon4.user.css @@ -110,5 +110,30 @@ display: none; } */ + + /* disable clicking on it as well */ + /* + .column-link[title="Follow requests"] { + pointer-events: none; + } + */ + + /*enlarge custom emoji on hover*/ + /* + .emoji-mart-emoji:hover > * { + height: 34px !important; + width: 34px !important; + } + .emoji-mart-emoji:hover { + width: 34px !important; + height: 34px !important; + padding: 0 !important; + } + :not(.emoji-button) > .emojione:hover { + width: 34px !important; + height: 34px !important; + } + */ } +