mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-24 08:46:56 +01:00
Fix size of the attachment preview frame (#1484758)
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
CHANGELOG RoundCube Webmail
|
||||
---------------------------
|
||||
|
||||
2008/02/06 (thomasb)
|
||||
2008/02/07 (thomasb)
|
||||
----------
|
||||
- Remember decision to display images for a certain message during session (#1484754)
|
||||
- Truncte attachment filenames to 55 characters due to an IE bug (#1484757)
|
||||
- Fix size of the attachment preview frame (#1484758)
|
||||
|
||||
2008/02/05 (thomasb)
|
||||
----------
|
||||
|
||||
@@ -152,15 +152,12 @@ td.formlinks a:visited
|
||||
|
||||
#messagepartframe
|
||||
{
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 1px solid #999999;
|
||||
background-color: #F9F9F9;
|
||||
/* css hack for IE */
|
||||
height: expression(parseInt(document.getElementById('messagepartcontainer').offsetHeight)+'px');
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
|
||||
<div id="messagepartcontainer">
|
||||
<roundcube:object name="messagePartFrame" id="messagepartframe" width="100%" height="85%" />
|
||||
<roundcube:object name="messagePartFrame" id="messagepartframe" width="100%" height="100%" />
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user