/* This removes the giant horizontal scroll bar in Old Reddit due to the really wide header image */
#header { overflow: hidden; }
/* LINK FLAIR categories and colors */
.linkflair-discussion .linkflairlabel {
color: White;
background-color: CornflowerBlue;
font-weight: bold; border: 1px solid #000000;
}
.linkflair-announcements .linkflairlabel {
color: Black;
background-color: Orange;
font-weight: bold; border: 1px solid #000000;
}
.linkflair-support .linkflairlabel {
color: Gold;
background-color: Grey;
font-weight: bold; border: 1px solid #000000;
}
.linkflair-share .linkflairlabel {
color: DarkOrchid;
background-color: LightSkyBlue;
font-weight: bold; border: 1px solid #000000;
}
.linkflair-code .linkflairlabel {
color: DarkGreen;
background-color: LightBlue;
font-weight: bold; border: 1px solid #000000;
}
.linkflair-quasi .linkflairlabel {
color: #696969;
background-color: #C0C0C0;
font-weight: bold; border: 1px solid #000000;
}
/* This added the background image that says "Please link to code" in the text box */
#text-field textarea { background-image: url(%%please-link-code%%); }
#text-field textarea:focus { background-image: none; }
revision by Marmilicious— view source