Changeset 3790 in subversion


Ignore:
Timestamp:
Jun 29, 2010 3:29:59 PM (3 years ago)
Author:
alec
Message:
  • css fixes
Location:
trunk/plugins
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/help/content/about.html

    r3072 r3790  
    11<div id="helpabout"> 
    2 <h3 align="center">Copyright &copy; 2005-2009, The Roundcube Dev Team</h3> 
     2<h3 align="center">Copyright &copy; 2005-2010, The Roundcube Dev Team</h3> 
    33 
    44<p>This program is free software; you can redistribute it and/or modify 
  • trunk/plugins/help/skins/default/help.css

    r3072 r3790  
    66} 
    77 
    8 #help-box 
     8.help-box 
    99{ 
    10   position: absolute; 
    11   bottom: 30px;  
    12   top: 95px; 
    13   left: 20px; 
    14   right: 20px; 
    15   border: 1px solid #999999; 
    1610  overflow: auto;   
    1711  background-color: #F2F2F2; 
    18   /* IE hack */ 
    19   height: expression((parseInt(document.documentElement.clientHeight)-125)+'px'); 
    20   width: expression((parseInt(document.documentElement.clientWight)-40)+'px'); 
    2112} 
    2213 
  • trunk/plugins/help/skins/default/templates/help.html

    r3517 r3790  
    3131</div> 
    3232 
    33 <div id="help-box"> 
     33<div id="mainscreen" class="box help-box"> 
    3434<roundcube:object name="helpcontent" id="helpcontentframe" width="100%" height="100%" frameborder="0" src="/watermark.html" /> 
    3535</div> 
    3636 
    37 <div id="rcmversion"><roundcube:object name="productname" /> <roundcube:object name="version" /></div> 
    38  
    3937</body> 
    4038</html> 
  • trunk/plugins/managesieve/skins/default/managesieve.css

    r3460 r3790  
    77  left: 20px; 
    88  top: 120px; 
    9   bottom: 30px; 
     9  bottom: 20px; 
    1010  border: 1px solid #999999; 
    1111  overflow: auto; 
    1212  /* css hack for IE */ 
    13   height: expression((parseInt(document.documentElement.clientHeight)-155)+'px'); 
     13  height: expression((parseInt(document.documentElement.clientHeight)-140)+'px'); 
    1414} 
    1515 
     
    152152  top: 120px; 
    153153  right: 20px; 
    154   bottom: 30px; 
     154  bottom: 20px; 
    155155  border: 1px solid #999999; 
    156156  overflow: hidden; 
    157157  /* css hack for IE */ 
    158   width: expression((parseInt(document.documentElement.clientWidth)-30-parseInt(document.getElementById('filterslist').offsetLeft)-parseInt(document.getElementById('filterslist').offsetWidth))+'px'); 
    159   height: expression((parseInt(document.documentElement.clientHeight)-155)+'px'); 
     158  width: expression((parseInt(document.documentElement.clientWidth)-40-parseInt(document.getElementById('filterslist').offsetWidth))+'px'); 
     159  height: expression((parseInt(document.documentElement.clientHeight)-140)+'px'); 
    160160} 
    161161 
  • trunk/plugins/password/password.php

    r3775 r3790  
    180180        $table->add(null, $input_confpasswd->show()); 
    181181 
    182         $out = html::div(array('class' => 'settingsbox', 'style' => 'margin:0'), 
     182        $out = html::div(array('class' => 'box'), 
    183183            html::div(array('id' => 'prefs-title', 'class' => 'boxtitle'), $this->gettext('changepasswd')) . 
    184184            html::div(array('class' => 'boxcontent'), $table->show() . 
Note: See TracChangeset for help on using the changeset viewer.