Last active
May 18, 2021 19:28
-
-
Save PhilippIRL/1d0333b581ffec6a503c380a0986c9a4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* ==UserStyle== | |
@name lower case speech | |
@author PhilippIRL | |
@namespace https://gist.github.com/PhilippIRL/1d0333b581ffec6a503c380a0986c9a4 | |
@description `transforms most text to lower case` | |
@version 0.0.1 | |
@updateURL https://gist.githubusercontent.com/PhilippIRL/1d0333b581ffec6a503c380a0986c9a4/raw/lower-case-speech.user.css | |
==/UserStyle== */ | |
*:not(textarea, | |
input[type=text], | |
input[type=email], | |
input[type=password], | |
*[contenteditable]) { | |
text-transform: lowercase; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment