Created
February 7, 2015 06:54
-
-
Save nstielau/9f0c777962b86acb24ea to your computer and use it in GitHub Desktop.
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
/* | |
CSS Hacks to change "Postmortem" to "Incident Review" on | |
the statuspage.io pages. Nobody died. | |
*/ | |
.update.postmortem strong { | |
display: none; | |
} | |
.update.postmortem { | |
color: white; | |
} | |
.update.postmortem a:before { | |
color: black; | |
content: "Incident Review - "; | |
font-weight: 700; | |
margin-left: -10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment