Changeset 4a509a5 in github


Ignore:
Timestamp:
Oct 10, 2008 4:53:52 AM (5 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
8e83075
Parents:
d99b935
Message:
  • Fix 'Empty' link visibility for some languages e.g. Slovak (#1485489)
  • Fix messages count bar overlapping (#1485270)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r6eb8586 r4a509a5  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42008/10/10 (alec) 
     5---------- 
     6- Fix 'Empty' link visibility for some languages e.g. Slovak (#1485489) 
     7- Fix messages count bar overlapping (#1485270) 
    38 
    492008/10/09 (alec) 
  • skins/default/mail.css

    re51ef05 r4a509a5  
    8484{ 
    8585  background-color: #ddd; 
    86 } 
    87  
    88 #listcontrols 
    89 { 
    90   position: absolute; 
    91   left: 200px; 
    92   bottom: 20px; 
    93   height: 16px; 
    94   width: 500px; 
    95   font-size: 11px; 
    9686} 
    9787 
     
    412402 
    413403 
    414 #mailboxcontrols 
     404#mailfooter 
    415405{ 
    416406  position: absolute; 
    417407  left: 20px; 
    418   width: 185px; 
    419   bottom: 20px; 
    420   height: 16px; 
    421   overflow: hidden; 
     408  right: 20px; 
     409  bottom: 18px; 
     410  height: 20px; 
     411  /* css hack for IE */ 
     412  width: expression((parseInt(document.documentElement.clientWidth)-40)+'px'); 
     413} 
     414 
     415#mailfooter table tr td 
     416{ 
     417  white-space: nowrap; 
     418  vertical-align: bottom; 
     419} 
     420 
     421#mailboxcontrols, 
     422#listcontrols, 
     423#countcontrols 
     424{ 
     425  white-space: nowrap; 
    422426  font-size: 11px; 
    423427} 
     
    624628/** message view styles */ 
    625629 
    626  
    627630#messageframe 
    628631{ 
  • skins/default/templates/mail.html

    r5f660cd r4a509a5  
    7676</div> 
    7777 
    78 <div id="mailboxcontrols"> 
     78<div id="mailfooter"> 
     79<table cellpadding="1" cellspacing="0"> 
     80<tr> 
     81<td width="99%"> 
     82<span id="mailboxcontrols"> 
    7983<roundcube:label name="folder" />:&nbsp; 
    8084<roundcube:button command="expunge" label="compact" classAct="active" />&nbsp; 
    8185<roundcube:button command="purge" label="empty" classAct="active" />&nbsp; 
    82 </div> 
    83  
    84  
    85 <div id="listcontrols"> 
     86</span> 
     87<span id="listcontrols"> 
    8688<roundcube:label name="select" />:&nbsp; 
    8789<roundcube:button command="select-all" label="all" classAct="active" />&nbsp; 
    8890<roundcube:button command="select-all" prop="unread" label="unread" classAct="active" />&nbsp; 
    89 <roundcube:button command="select-none" label="none" classAct="active" /> &nbsp;&nbsp;&nbsp; 
     91<roundcube:button command="select-none" label="none" classAct="active" /> &nbsp; 
    9092<roundcube:if condition="env:quota" /> 
    9193<roundcube:label name="quota" />: <roundcube:object name="quotaDisplay" display="image" width="100" id="quotadisplay" /> 
    9294<roundcube:endif /> 
    93 </div> 
    94  
    95 <div id="messagecountbar"> 
     95</span> 
     96</td> 
     97<td width="1%"> 
     98<span id="countcontrols"> 
    9699<roundcube:button command="firstpage" imageSel="/images/buttons/first_sel.png" imageAct="/images/buttons/first_act.png" imagePas="/images/buttons/first_pas.png" width="11" height="11" title="firstmessages" /> 
    97100<roundcube:button command="previouspage" imageSel="/images/buttons/previous_sel.png" imageAct="/images/buttons/previous_act.png" imagePas="/images/buttons/previous_pas.png" width="11" height="11" title="previousmessages" /> 
     
    99102<roundcube:button command="nextpage" imageSel="/images/buttons/next_sel.png" imageAct="/images/buttons/next_act.png" imagePas="/images/buttons/next_pas.png" width="11" height="11" title="nextmessages" /> 
    100103<roundcube:button command="lastpage" imageSel="/images/buttons/last_sel.png" imageAct="/images/buttons/last_act.png" imagePas="/images/buttons/last_pas.png" width="11" height="11" title="lastmessages" /> 
     104</span> 
     105</td> 
     106</tr> 
     107</table> 
    101108</div> 
    102109 
Note: See TracChangeset for help on using the changeset viewer.