Mibbit CSS
Posted: June 14, 2009 Filed under: User Interface | Tags: css, firefox, irc, mibbit, ui Leave a comment »Seeing that in the Mibbit client, the whois box is not easy to modify in prefs, I created the following stylesheet. To use it, you need the extension known as Stylish.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(“mibbit.net”),@-moz-document domain(“mibbit.com”) {
.whoisdiv, .whoisdiv>div, .whoistop {
/* Makes whois box container smaller */
border-top: none !important;
padding: 0px !important;
}
.whoistable {
/* I like #ccccff use whatever you want. */
background:#ccccff !important;
}
.whoistop {
/* color of the “Whois nick” line */
color: #8888aa !important;
}
.whoistable tbody tr td table tbody tr :first-child{
/* color is a darker version of #ccccff. Color for the text saying what each field is.
color: #555588 !important;
}
}