// ==UserScript==
// @name          resize gmail textarea
// @namespace     http://userstyles.org
// @description	  1. It's for resize gmail textarea.
// @author        owen.pengtao
// @homepage      http://userstyles.org/styles/56435
// @run-at        document-start
// ==/UserScript==
(function() {
var css = "iframe.editable { min-height: 400px; resize: vertical; }\n.mq, .adC .nH .nH:nth-child(3), .adC .nH .nH:nth-child(2) .oM, .nH table.iY td.Bu:nth-child(n+2){display:none !important;}";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();

