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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document regexp(".*jenkins\.yelpcorp\.com/ezwall.*") { | |
.job-status-ok { | |
/* Smooth gray successes */ | |
background-color: rgba(0,0,0,0) !important; | |
} | |
.job-status-ko { | |
/* Alarmingly red failures */ | |
background-color: #a00 !important; |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("jenkins.yelpcorp.com") { | |
.SUCCESS *, .SUCCESS { | |
background-color: #333 !important; | |
color: #DEDEDE !important; | |
font-weight: 200 !important; | |
} | |
.FAILURE *, .FAILURE { | |
background-color: #a00 !important; |
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
#! /usr/bin/env python | |
""" Convert an image (argv[1]) to an ANSI text string (xterm-256color) | |
Original readme from colortrans.py follows: | |
Nice long listing of all 256 colors and their codes. Useful for | |
developing console color themes, or even script output schemes. | |
Resources: |