Last active
August 1, 2024 11:56
-
-
Save plasticmind/d37e2c570bce839b93fd31b83177982d to your computer and use it in GitHub Desktop.
Outlook for Web Arc Boost
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
div[aria-label^="Unread "] span[title] { | |
font-weight: 900 !important; | |
color: #000 !important; | |
} | |
div[aria-label^="Unread "] div { | |
background-color: #ff0 !important | |
} | |
div[aria-label*="Flagged"] div { | |
background-color: #fcc !important | |
} | |
button[aria-label^="Go to today"] { | |
background-color: #800 !important; | |
color: #fff !important; | |
} | |
@media (prefers-color-scheme: dark) { | |
div[aria-label^="Unread "] span[title] { | |
color: #0fa !important; | |
} | |
div[aria-label^="Unread "] div { | |
background-color: #000 !important | |
} | |
div[aria-label*="Flagged"] div { | |
background-color: #fff !important | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment