I had a user complaining about the size of the font when composing a message in imp so I changed the 75% to 100% in /imp/lib/UI/Compose.php. This probably causes problems elsewhere but if not it might be useful for others? I think it makes the font appear the same size whether you are using imp or dimp. Helps those of us with poor vision. :-) Please advise if it causes any dire consequences or if there is a better way. Thanks!

Original:
           case 'imp':
$params['config']['pageStyle'] = 'body{font-size:75%;}.imp-signature{background-color: #eee;}';
               break;

           case 'dimp':
$params['config']['height'] = '@[EMAIL PROTECTED](\'messageParent\').getHeight() - DimpCompose.mp_padding';
               $params['no_autoload'] = true;
               break;
           }

Modified:

           case 'imp':
$params['config']['pageStyle'] = 'body{font-size:100%;}.imp-signature{background-color: #eee;}';
               break;

           case 'dimp':
$params['config']['height'] = '@[EMAIL PROTECTED](\'messageParent\').getHeight() - DimpCompose.mp_padding';
               $params['no_autoload'] = true;
               break;
           }
--
IMP mailing list - Join the hunt: http://horde.org/bounties/#imp
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: [EMAIL PROTECTED]

Reply via email to