/* * /custom/themes/default/css/style.css * * Large monitors don't get appropriately sized quick create windows. This * doesn't really fix that, but it's a hack to show a little bit more of the * email quick-create window, at least the email body portion. It's not pretty * but it does show more body. * * I don't like to publish hacks like this. We're modifying things that are * set up in JavaScript and it'd be best if we could use JavaScript or some * configuration varaible to fix this. But that's isn't possible. The * JavaScript for this is deep inside of * jssource/src_files/include/javascript/quickCompose.js * (I think) and it doesn't seem easily extended in an upgrade-safe way. */ .yui3-widget #htmleditordiv0 { height:500px !important; } .yui3-widget .yui-layout-bd { height:500px !important; } .yui3-widget .yui-layout-doc { height:500px !important; } .yui3-widget .bd { overflow:visible !important; } .yui3-widget .container1_c { overflow:visible !important; }