Yahoo Mail write message un-clipper

By Dave C Last update Jul 18, 2008 — Installed 157 times. Daily Installs: 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0
// ==UserScript==
// @name           Yahoo Mail write message un-clipper
// @namespace      userscripts.org
// @description	   In Firefox 3, Yahoo Mail clips the text in the To, Cc, and Subject fields. This fixes that.
// @include        http://*mail.yahoo.com/*
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.inputField { padding-bottom:0; }');