ChatBox with 6px font
orb

ChatBox with 6px font

  • orb
[noparse]
// ==UserScript==
// @name vBulletin - Cyb ChatBox font
// @description Adds extra font sizes for the ChatBox
// @version 0.1.1
// @date 2011-01-04
// @creator Krzysztof Markowski (aka orb, krzymark)
// @include http://www.orbiter-forum.com/
// @include http://orbiter-forum.com/
// @include http://www.orbiter-forum.com/index.php
// @include http://orbiter-forum.com/index.php
// @include http://www.orbiter-forum.com/misc.php?do=cchatbox
// @include http://orbiter-forum.com/misc.php?do=cchatbox
// ==/UserScript==

var ccb_fntsize = document.getElementById ("ccb_m_size");
if (ccb_fntsize) {
var curfsize = document.getElementById ('ccb_entermessage').style.fontSize;
var minfsize = 6;
var maxfsize = 16;
var sel;
ccb_fntsize.length = 0;
for (var i = minfsize; i <= maxfsize; ++i) {
sel = (i + "px" == curfsize);
try {
ccb_fntsize.add (new Option (i + "px", i, sel, sel), null);
} catch (e) { // in IE
ccb_fntsize.add (new Option (i + "px", i, sel, sel));
}
}
}
[/noparse]
 

Media information

Album
Orbiter-Forum
Added by
orb
Date added
View count
438
Comment count
2
Rating
0.00 star(s) 0 ratings

Share this media

Top