Changeset c3f94de in github


Ignore:
Timestamp:
Feb 7, 2008 2:51:01 AM (5 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
606fc01
Parents:
6f2f2d0
Message:

Fix size of the attachment preview frame (#1484758)

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r6726f0c rc3f94de  
    22--------------------------- 
    33 
    4 2008/02/06 (thomasb) 
     42008/02/07 (thomasb) 
    55---------- 
    66- Remember decision to display images for a certain message during session (#1484754) 
     7- Truncte attachment filenames to 55 characters due to an IE bug (#1484757) 
     8- Fix size of the attachment preview frame (#1484758) 
    79 
    8102008/02/05 (thomasb) 
  • skins/default/mail.css

    ra02d486 rc3f94de  
    153153#messagepartframe 
    154154{ 
    155   position: absolute; 
    156   top: 0px; 
    157   left: 0px; 
    158   right: 0px; 
    159   bottom: 0px; 
    160   width: auto; 
    161   height: auto; 
     155  width: 100%; 
     156  height: 100%; 
    162157  border: 1px solid #999999; 
    163158  background-color: #F9F9F9; 
     159  /* css hack for IE */ 
     160  height: expression(parseInt(document.getElementById('messagepartcontainer').offsetHeight)+'px'); 
    164161} 
    165162 
  • skins/default/templates/messagepart.html

    re66f5b4 rc3f94de  
    1616 
    1717<div id="messagepartcontainer"> 
    18 <roundcube:object name="messagePartFrame" id="messagepartframe" width="100%" height="85%" /> 
     18<roundcube:object name="messagePartFrame" id="messagepartframe" width="100%" height="100%" /> 
    1919</div> 
    2020 
Note: See TracChangeset for help on using the changeset viewer.