matthewpoer

SugarCRM Larger Quick-Create-Email Body CSS Hack

May 15th, 2013
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. /*
  2.  * /custom/themes/default/css/style.css
  3.  *
  4.  * Large monitors don't get appropriately sized quick create windows. This
  5.  * doesn't really fix that, but it's a hack to show a little bit more of the
  6.  * email quick-create window, at least the email body portion. It's not pretty
  7.  * but it does show more body.
  8.  *
  9.  * I don't like to publish hacks like this. We're modifying things that are
  10.  * set up in JavaScript and it'd be best if we could use JavaScript or some
  11.  * configuration varaible to fix this. But that's isn't possible. The
  12.  * JavaScript for this is deep inside of
  13.  * jssource/src_files/include/javascript/quickCompose.js
  14.  * (I think) and it doesn't seem easily extended in an upgrade-safe way.
  15.  */
  16. .yui3-widget #htmleditordiv0 {
  17.     height:500px !important;
  18. }
  19. .yui3-widget .yui-layout-bd {
  20.     height:500px !important;
  21. }
  22. .yui3-widget .yui-layout-doc {
  23.     height:500px !important;   
  24. }
  25. .yui3-widget .bd {
  26.     overflow:visible !important;
  27. }
  28. .yui3-widget .container1_c {
  29.     overflow:visible !important;
  30. }
Add Comment
Please, Sign In to add comment