Last active
April 12, 2022 12:18
-
-
Save xrstf/a0dbe1a748c0de55d9da2f8b7d40067a to your computer and use it in GitHub Desktop.
Fix FreshService's terribly distracting UI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* disable spinning effects */ | |
.flip-front, .flip-back { | |
animation: none !important; | |
} | |
/* disable constant product update notifications */ | |
#quick_help_container { | |
display: none !important; | |
} | |
/* stop the popup thing whenever you select a bit of text (the "medium.com"-style thing) */ | |
#collab-option-dd { | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment