Last active
March 20, 2020 21:45
-
-
Save jglovier/09f1abf463fdbf607452026428a9abbf to your computer and use it in GitHub Desktop.
I use these few simple styles for Gmail in the Chrome extension Stylish to help make Gmail a little easier to parse visually.
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
/* page header */ | |
.gb_uf.gb_tg { | |
background-color: #3D4957; | |
} | |
/* read message rows */ | |
.yO { | |
background: #EAF2FE; | |
color: rgba(78, 104, 139, 0.61); | |
} | |
/* compose button */ | |
.T-I-KE { | |
background-color: #FF7E5E; | |
background-image: none; | |
border-color: #E06141; | |
} | |
/* direct mention badge */ | |
.ar.as .at[title*="Direct Mention"] { | |
background-color: #FF7E5E !important; | |
border-color: #FF7E5E !important; | |
border-radius: 2px !important; | |
} | |
.ar.as .at[title*="Direct Mention"] .au { | |
border-color: #FF7E5E !important; | |
} | |
.ar.as .at[title*="Direct Mention"] .av { | |
color: white !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment