Changeset 948

Show
Ignore:
Timestamp:
12/16/07 13:06:55 (10 months ago)
Author:
rats
Message:

* Fixed: Error in admin/add_admin.php
* Fixed: Templates of Squirrelmail (new template version) 2/4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r947 r948  
    77\_________________________________________________________________/ 
    88 
    9 2007-23-15 Benedikt Heintel 
     92007-12-15 Benedikt Heintel 
     10        - GUI: 
     11                * Fixed: Error in admin/add_admin.php 
     12        - TOOLS: 
     13                * Fixed: Templates of Squirrelmail (new template version) 
     14 
     152007-12-15 Benedikt Heintel 
    1016        - TOOLS: 
    1117                * Fixed #714: undefined index in pma-style sheet (thanks to joximu) 
    1218                * Update Squirrelmail to version 1.4.13 (#932) 
    13  
    1419 
    15202007-12-13 Benedikt Heintel 
  • trunk/configs/awstats/awstats.ispcp_tpl.conf

    r918 r948  
    257257# Default: 2 
    258258# 
    259 AllowFullYearView=2 
     259AllowFullYearView=3 
    260260 
    261261 
  • trunk/gui/admin/add_admin.php

    r772 r948  
    192192                            'PHONE' => clean_input($_POST['phone']), 
    193193                            'FAX' => clean_input($_POST['fax']), 
    194                             'VL_MALE' => (isset($_POST['gender']) && $_POST['gender'] == 'M')? 'checked' : ''
    195                             'VL_FEMALE' => (isset($_POST['gender']) && $_POST['gender'] == 'F')? 'checked' : '' 
     194                            'VL_MALE' => ((isset($_POST['gender']) && $_POST['gender'] == 'M')? 'checked' : '')
     195                            'VL_FEMALE' => ((isset($_POST['gender']) && $_POST['gender'] == 'F')? 'checked' : '') 
    196196                        ) 
    197197                ); 
  • trunk/gui/tools/webmail/config/config.php

    r831 r948  
    3939 * @global string $org_logo 
    4040 */ 
    41 $org_logo = SM_PATH . 'images/logo.jpg'; 
     41$org_logo = SM_PATH . 'skins/omega/logo.gif'; 
    4242 
    4343/** 
     
    533533 * @global bool $hide_sm_attributions 
    534534 */ 
    535 $hide_sm_attributions = true; 
     535$hide_sm_attributions = false; 
    536536 
    537537/** 
  • trunk/gui/tools/webmail/functions/page_header.php

    r946 r948  
    1010 * @version $Id: page_header.php 12538 2007-07-14 19:04:00Z kink $ 
    1111 * @package squirrelmail 
     12 * 
     13 * @modified by ispCP Omega Team http://isp-control.net 
    1214 */ 
    1315 
  • trunk/gui/tools/webmail/plugins/login_auto/functions.php

    r331 r948  
    11<?php 
     2/** 
     3 *  @modified by ispCP Omega Team http://isp-control.net 
     4 */ 
    25 
    36// include compatibility plugin 
     
    4851         $user = $_COOKIE['user']; 
    4952      } 
    50        
     53 
    5154      if (isset($_COOKIE['pass'])) { 
    5255         $pass = $_COOKIE['pass']; 
     
    7174      global $auto_pass, $auto_user, $user, $login_doc, $login_link; 
    7275 
    73       // note that we get $user as well as all config  
     76      // note that we get $user as well as all config 
    7477      // variables from the hook before this 
    7578 
     
    9093         echo "<input type=checkbox name=cb_auto_pass value=true>\n"; 
    9194         echo "</td><td valign=center nowrap>\n"; 
    92          echo "<small><font size=-2 color='#c0c0c0'>" . _("Remember Username & Password") . "</font><small>\n"; 
     95                 // Modified by ispCP Omega - http://isp-control.net 
     96                 echo "<small><font size=-2 color='#000000'>" . _("Remember Username & Password") . "</font><small>\n"; 
     97                 // End modification 
     98         //echo "<small><font size=-2 color='#c0c0c0'>" . _("Remember Username & Password") . "</font><small>\n"; 
    9399         echo "</td></tr>\n"; 
    94100      } 
     
    104110 
    105111      if (($auto_user || $auto_pass) && $login_doc!='') { 
    106          if (!isset($login_link) || $login_link=='')  
     112         if (!isset($login_link) || $login_link=='') 
    107113         //   $login_link=_("What's this?"); 
    108114         echo "<tr><td colspan='2' valign=center align=center><a href=$login_doc>$login_link</a></td></tr>\n"; 
     
    117123   function login_auto_get_pass_do() { 
    118124 
    119       global $auto_pass, $auto_key, $secretkey, $just_logged_in,  
     125      global $auto_pass, $auto_key, $secretkey, $just_logged_in, 
    120126             $user, $pass, $login_username; 
    121127 
     
    159165   function login_auto_set_cookies_do() { 
    160166 
    161       global $auto_user, $auto_pass, $auto_key, $user, $login_username,  
    162              $pass, $auto_expire_days, $auto_expire_hours, $auto_expire_minutes,   
     167      global $auto_user, $auto_pass, $auto_key, $user, $login_username, 
     168             $pass, $auto_expire_days, $auto_expire_hours, $auto_expire_minutes, 
    163169             $base_uri, $secretkey; 
    164   
     170 
    165171      // note that we get $user and $pass as well as all config 
    166172      // variables from the hook before this 
    167173 
    168       $auto_expire = $auto_expire_days*86400 + $auto_expire_hours*3600  
     174      $auto_expire = $auto_expire_days*86400 + $auto_expire_hours*3600 
    169175                   + $auto_expire_minutes*60; 
    170176 
     
    211217    */ 
    212218 
    213    function MD5Keycrypt($txt,$key)  
    214    {  
     219   function MD5Keycrypt($txt,$key) 
     220   { 
    215221    for ($i=0,$j=0,$val='',$key=md5($key),$keylen=strlen($key),$txtlen=strlen($txt);$i<$txtlen;$i++) { 
    216222        $val.=substr($txt,$i,1)^substr($key,($j==$keylen)?$j*=0:$j++,1); 
    217     }  
    218     return $val;  
    219    }  
    220  
    221    function MD5Encrypt($txt,$key)  
    222    {  
     223    } 
     224    return $val; 
     225   } 
     226 
     227   function MD5Encrypt($txt,$key) 
     228   { 
    223229    if (is_array($key)) { 
    224230        for ($i=0,$alen=sizeof($key);$i<$alen;$i++) { 
     
    227233        return $txt; 
    228234    } 
    229     srand((double)microtime()*1000000);  
     235    srand((double)microtime()*1000000); 
    230236    $cryptkey=md5(rand(0,32000)); 
    231237    for ($i=0,$j=0,$val='',$keylen=strlen($cryptkey),$txtlen=strlen($txt);$i<$txtlen;$i++) { 
    232238        $val.=substr($cryptkey,$j,1).(substr($txt,$i,1)^substr($cryptkey,($j==$keylen)?$j*=0:$j++,1)); 
    233     }  
    234     return MD5Keycrypt($val,$key);  
    235    }  
    236  
    237    function MD5Decrypt($txt,$key)  
    238    {  
     239    } 
     240    return MD5Keycrypt($val,$key); 
     241   } 
     242 
     243   function MD5Decrypt($txt,$key) 
     244   { 
    239245    if (is_array($key)) { 
    240246        for ($i=sizeof($key)-1;$i>=0;$i--) { 
     
    245251    for ($i=0,$val='',$txt=MD5Keycrypt($txt,$key),$txtlen=strlen($txt);$i<$txtlen;$i++) { 
    246252        $val.=(substr($txt,$i+1,1)^substr($txt,$i++,1)); 
    247     }  
    248     return $val;  
    249    }  
     253    } 
     254    return $val; 
     255   } 
    250256 
    251257?> 
  • trunk/gui/tools/webmail/src/left_main.php

    r946 r948  
    1111 * @version $Id: left_main.php 12537 2007-07-14 18:34:04Z kink $ 
    1212 * @package squirrelmail 
     13 * 
     14 * @modified by ispCP Omega Team http://isp-control.net 
    1315 */ 
    1416 
     
    180182            'href="left_main.php?'; 
    181183    if ($boxes[$boxnum]['collapse'] == SM_BOX_COLLAPSED) { 
    182         $link .= "unfold=$mailbox\">+"; 
     184                // Modified by ispCP Omega - http://isp-control.net 
     185        $link .= "unfold=$mailbox\"><img src=\"../images/plus.png\" border=\"0\">"; 
     186        // End Modification 
    183187    } else { 
    184         $link .= "fold=$mailbox\">-"; 
     188        // Modified by ispCP Omega - http://isp-control.net 
     189        $link .= "fold=$mailbox\"><img src=\"../images/minus.png\" border=\"0\">"; 
     190            // End Modification 
    185191    } 
    186192    $link .= '</a>'; 
     
    343349    $boxes = sqimap_mailbox_list($imapConnection,true); 
    344350} 
    345  
    346 echo "\n<body bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n"; 
     351// Modified by ispCP Omega - http://isp-control.net 
     352echo "\n<body class=\"left\" bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n"; 
     353// End Modification 
    347354 
    348355do_hook('left_main_before'); 
    349356 
     357// 
     358// Modified by ispCP Omega - http://isp-control.net 
     359// 
     360/**** commented out 
    350361echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) . 
    351362    html_tag( 'tr' ) . 
     
    355366    html_tag( 'td', '', 'center' ) . 
    356367    '<font size="4"><b>'. _("Folders") . "</b><br /></font>\n\n"; 
     368*/ 
     369//===============Code for left top header======= 
     370 
     371echo "\n\n" . html_tag( 'table', 
     372                html_tag( 'tr', 
     373                        html_tag( 'td', 
     374                                html_tag( 'div', 
     375                                        '<img src="'.$org_logo.'" />' . "\n\n" 
     376                                        , NULL, NULL, 'id="left_logo"' 
     377                                ), 
     378                                'center', NULL, NULL 
     379                         ) 
     380                ), 
     381                NULL, NULL, 'border="0" cellspacing="0" cellpadding="0" width="100%"' 
     382                ); 
     383 
     384// ========Quota Plugin enable here ========= 
     385/* 
     386echo html_tag( 'div', 
     387        do_hook('quota_plugin_left'), 
     388        '', '', 'id="quota"' 
     389         ); 
     390*/ 
     391// ==========End Quota Plugin========= 
     392 
     393echo html_tag ( 'div', 
     394                html_tag ('p', 
     395                        _("Folders") . sprintf( ' <a href="../src/left_main.php" target="left" id="refresh"><img src="../images/%s" align="absmiddle" border="0"></a>', $GLOBALS['refresh_button'] ). 
     396                        sprintf( ' <a href="#" onclick="reveal(\'folders\');" class="minimize"><img src="../images/%s" align="absmiddle" border="0"></a>', $GLOBALS['minimize_button'] ) 
     397                ), 
     398                NULL, NULL, 'id="folders_top"' 
     399        ) . 
     400        html_tag ( 'div', 
     401                html_tag ( 'table', 
     402                        html_tag ( 'tr', 
     403                                html_tag ( 'td', 
     404                                        html_tag ( 'div', 
     405                                                '', 
     406                                                'left', NULL, NULL 
     407                                        ), 
     408                                'center', NULL, 'valign="top"' 
     409                                ) 
     410                        ), 
     411                        NULL, NULL, 'width="99%" border="0" cellpadding="0" cellspacing="0"' 
     412                ), 
     413                NULL, NULL, 'id="folders"' 
     414        ); 
     415 
     416//=====end Header code========= 
     417 
     418// @todo finish Implementation 
     419// 
     420// End Modification 
     421// 
    357422 
    358423if ($date_format != 6) { 
  • trunk/gui/tools/webmail/src/login.php

    r946 r948  
    1111 * @version $Id: login.php 12768 2007-11-19 04:20:34Z jangliss $ 
    1212 * @package squirrelmail 
     13 * 
     14 * @modified by ispCP Omega Team http://isp-control.net 
    1315 */ 
    1416 
     
    8486 *         $custom_session_handlers[5] 
    8587 *     ); 
    86  *  
     88 * 
    8789 * We need to replicate that code once here because PHP has 
    8890 * long had a bug that resets the session handler mechanism 
     
    9092 * bug, even administrators who define custom session handlers 
    9193 * via a PHP pre-load defined in php.ini (auto_prepend_file) 
    92  * will still need to define the $custom_session_handlers array  
     94 * will still need to define the $custom_session_handlers array 
    9395 * in config_local.php. 
    9496 */ 
     
    109111if (!empty($sel)) { 
    110112    sqsession_register($sel, 'session_expired_location'); 
    111     if (!empty($sep))  
     113    if (!empty($sep)) 
    112114        sqsession_register($sep, 'session_expired_post'); 
    113115} 
     
    185187} 
    186188 
     189// 
     190// Modified by ispCP Omega - http://isp-control.net 
     191// 
     192 
     193echo html_tag ( 'div', 
     194                html_tag ( 'h1', sprintf (_("%s Webmail Login"), $org_name) ) . 
     195                html_tag ( 'fieldset', 
     196                        html_tag ( 'p', 
     197                                _("Username:") . addInput($username_form_name, $loginname_value) . '<br />' ."\n" . 
     198                                _("Password:") . addPwField($password_form_name) . '<br />' ."\n" . 
     199                                addHidden('js_autodetect_results', SMPREF_JS_OFF) . $mailtofield . addHidden('just_logged_in', '1'), 
     200                                NULL, NULL, 'class="login"' 
     201                        ) . 
     202                        html_tag ( 'p', 
     203                                addSubmit(_("Login")), 
     204                                NULL, NULL, 'class="login"' 
     205                        ) . 
     206                        html_tag ( 'p', 
     207                                ( (isset($hide_sm_attributions) && $hide_sm_attributions) ? '' : 
     208                sprintf(_("SquirrelMail version %s"), $version) . '<br />' . "\n"), 
     209                                NULL, NULL, 'class="login small"' 
     210                        ), 
     211                        NULL, NULL, 'class="login"' 
     212        ), 
     213                NULL, NULL, 'id="container"' ); 
     214 
     215/**** Commented out 
    187216echo html_tag( 'table', 
    188217    html_tag( 'tr', 
     
    221250                                    addPwField($password_form_name). 
    222251                                    addHidden('js_autodetect_results', SMPREF_JS_OFF). 
    223                     $mailtofield .  
     252                    $mailtofield . 
    224253                                    addHidden('just_logged_in', '1'), 
    225254                                'left', '', 'width="70%"' ) 
     
    227256                        'center', $color[4], 'border="0" width="100%"' ) , 
    228257                    'left',$color[4] ) 
    229                 ) .  
     258                ) . 
    230259                html_tag( 'tr', 
    231260                    html_tag( 'td', 
     
    237266    ) , 
    238267'', $color[4], 'border="0" cellspacing="0" cellpadding="0" width="100%"' ); 
     268* ***/ 
     269// 
     270// End modification 
     271// 
    239272do_hook('login_form'); 
    240273echo '</form>' . "\n"; 
  • trunk/gui/tools/webmail/themes/css/omega.css

    r567 r948  
    33  text-decoration: none; 
    44} 
     5 
    56html { 
    67        font-size: 100%; 
     
    89        padding: 0; 
    910} 
     11 
    1012small { 
    1113        color: #ffffff; 
    1214        font-size: .8em; 
    1315} 
    14 body, small { 
    15   font-size: 8pt; 
    16 
     16 
    1717pre { 
    1818  font-family: verdana; 
     
    2020} 
    2121 
    22 BODY
     22body
    2323        font-family: verdana; 
    2424    background-image: url(../../skins/omega/header_right_bg.png); 
     
    2727        /* background-attachment: fixed; */ 
    2828        } 
     29 
    2930body.left { 
    3031    background-image: url(../../skins/omega/folders_bottom.gif); 
     
    3334        margin: 0; 
    3435        padding: 0; 
    35         overflow: auto;         
     36        overflow: auto; 
    3637} 
    3738 
     
    4142        border: 1px double #aaa; 
    4243} 
     44 
    4345.titletext { 
    4446        font-weight: bold; 
    4547} 
     48 
    4649td { 
    4750        font-size: 7pt; 
    4851} 
     52 
    4953.top_bar_header { 
    5054        FONT-FAMILY: verdana; 
    5155        FONT-SIZE: 13px; 
    5256        COLOR: #000000; 
    53          
    54 
     57 
     58
     59 
    5560.top_left_bar_handle { 
    5661} 
     62 
    5763.inbox_bar_header { 
    5864        FONT-FAMILY: verdana; 
     
    6268        margin: auto; 
    6369} 
     70 
    6471.inbox_left_bar_handle { 
    6572        padding: 1 1; 
    6673} 
     74 
    6775.company_text { 
    6876        FONT-FAMILY: verdana; 
     
    7179   COLOR: #C9D3E4; 
    7280} 
     81 
    7382.targetMailbox { 
    7483        font-size: 1em !important; 
     
    8089        background-color: #c0c0c0; 
    8190} 
     91 
    8292.toggle_table { 
    8393        background-color: #c0c0c0; 
    8494} 
     95 
    8596.messageinfo_table { 
    8697        background-color: #c0c0c0; 
    8798} 
     99 
    88100.mailmessage_table { 
    89101        background-color: White; 
    90102} 
     103 
    91104#company_table { 
    92105        padding: -10px 0px 0px 0px; 
     
    94107        margin: -6px 0px 0px 0px; 
    95108} 
     109 
    96110.current_folder { 
    97111        padding: 1 1; 
     
    100114        color : #ffffff; 
    101115} 
     116 
    102117.options_bar { 
    103118        padding: 1 1; 
     
    107122 
    108123} 
     124 
    109125.options_bar.a { 
    110126        color: #ffffff; 
    111127} 
     128 
    112129.read_icon_bar { 
    113130        background: url(../../skins/omega/readbar_silver.gif); 
     
    115132        color : #ffffff; 
    116133} 
     134 
    117135.topbar { 
    118136        border: 1px none #66CDAA; 
    119137} 
     138 
    120139.message_header { 
    121140        border: 0px solid #FFFFFF; 
    122141        background-color: #B3CAF7; 
    123142} 
     143 
    124144.attach_box_top { 
    125145        background-color: #B3CAF7; 
    126146} 
     147 
    127148.attach_box_bottom { 
    128149        background-color: #ECF0F4; 
    129150} 
    130 frame { border: 0px solid #6B91C3; } 
    131 #f1 { border-right-width: 0px;      border-right-color: #6B91C3;  border-right: 0px solid #6B91C3;  } 
    132 #f2 {  } 
    133 #f3 { border-top-width: thick;      border-top-color: #6B91C3;  border-top: thick solid #6B91C3;     } 
     151 
     152frame { 
     153        border: 0px solid #6B91C3; 
     154
     155 
     156#f1 { 
     157        border-right-width: 0px; 
     158        border-right-color: #6B91C3; 
     159        border-right: 0px solid #6B91C3; 
     160
     161 
     162#f2 { 
     163
     164 
     165#f3 { 
     166        border-top-width: thick; 
     167        border-top-color: #6B91C3; 
     168        border-top: thick solid #6B91C3; 
     169
     170 
    134171.mail_display_header { 
    135172        background: White; 
     
    137174        border-top: 1px solid #ABABAB; 
    138175} 
     176 
    139177.message_toggle_bar { 
    140178 
     
    144182 
    145183.blank_bar { 
    146  background-color: white; 
    147  border: 0px none; 
    148 
     184        background-color: white; 
     185        border: 0px none; 
     186
     187 
     188/** Login **/ 
     189#container { 
     190        background-image: url(../../images/bg.jpg); 
     191        background-repeat: no-repeat; 
     192        background-attachment: scroll; 
     193        background-position: center left; 
     194        margin: 20em auto 0em auto; 
     195        width: 474px; 
     196        height: 273px; 
     197        position: relative; 
     198
     199 
     200#container h1 { 
     201        text-align: right; 
     202        font-size: 1em; 
     203        color: #FFFFFF; 
     204        width: 375px; 
     205        margin: 65px 20px 0px 0px; 
     206        position: absolute; 
     207        top: -10px; 
     208        left: 25px; 
     209
     210 
     211#container fieldset { 
     212        width: 200px; 
     213        margin: 0 auto auto 190px; 
     214        text-align: right; 
     215        border: none; 
     216        position: absolute; 
     217        top: 100px; 
     218        left: 20px; 
     219
     220 
     221#container p.login { 
     222        font-size: 1em; 
     223        font-weight: bold; 
     224        color: #c0c0c0; 
     225        vertical-align: super; 
     226        margin: 3px 0 0 0; 
     227
     228 
     229#container input { 
     230        margin: 3px 12px 0px 7px; 
     231        background-color: #FFFFFF; 
     232        height: 16px; 
     233        width: 10em; 
     234        border: 1px solid #c0c0c0; 
     235        font-size: 1em; 
     236        font-weight: normal; 
     237        vertical-align: middle; 
     238
     239 
     240#container p.small { 
     241        position: fixed; 
     242        bottom: 2px; 
     243        right: 2px; 
     244        font-weight: lighter; 
     245        color: #000000; 
     246
     247/** END Login **/ 
    149248 
    150249#right_logo { 
     
    157256        cursor: hand; 
    158257} 
    159 p.button_text {  
     258 
     259p.button_text { 
    160260        margin: 55px 0px 0px 10px; 
    161261        font-size: 9px; 
     
    167267 
    168268} 
     269 
    169270#inbox_button { 
    170271        background: url(../../skins/omega/inbox.png); 
     
    189290        Color: #FFFFFF; 
    190291} 
     292 
    191293#addresses_button { 
    192294        background-image: url(../../skins/omega/address_book.png); 
     
    209311        Color: #FFFFFF; 
    210312} 
     313 
    211314#options_button { 
    212315        background-image: url(../../skins/omega/options.png); 
     
    240343        Color: #FFFFFF; 
    241344} 
     345 
    242346#todo_button { 
    243347        background-image: url(../../skins/omega/todo.gif); 
     
    271375        cursor: hand; 
    272376} 
     377 
    273378#search_button { 
    274379        background-image: url(../../skins/omega/search.gif); 
     
    298403        cursor: hand; 
    299404} 
     405 
    300406#calendar_button { 
    301407        background-image: url(../../skins/omega/calendar.gif); 
     
    307413        cursor: hand; 
    308414} 
     415 
    309416#bookmark_button { 
    310417        background-image: url(../../skins/omega/bookmarks.gif); 
     
    324431        background-color: #DAE3ED; 
    325432} 
     433 
    326434.main_header_bar { 
    327          
     435 
    328436        background-repeat: repeat-x; 
    329         } 
     437
     438 
    330439.small_header_bar { 
    331440        background-color: White; 
    332441} 
     442 
    333443.left_main { 
    334444        border: thin dashed #DCDCDC; 
    335445} 
    336  
    337446 
    338447#left_inbox_button { 
     
    346455        cursor: hand; 
    347456} 
     457 
    348458#left_drafts_button { 
    349459        background-image: url(../../skins/omega/); 
     
    356466        cursor: hand; 
    357467} 
     468 
    358469#left_sent_button { 
    359470        background-image: url(../../skins/omega/); 
     
    365476        margin: -5px 0px 0px 0px; 
    366477        cursor: hand; 
    367 }        
     478
     479 
    368480#left_trash_button { 
    369481        background-image: url(../../skins/omega/); 
     
    375487        margin: -5px 0px 0px 0px; 
    376488        cursor: hand; 
    377 }        
     489
     490 
    378491#left_folder_button { 
    379492        background-image: url(../../skins/omega/); 
     
    386499        cursor: hand; 
    387500} 
    388          
     501 
    389502#left_logo{ 
    390503        background-image: url(../../skins/omega/header_bg.png); 
     
    392505        height:117px; 
    393506        margin: 0px 0px 0px 0px; 
    394 }       
    395  
    396 .left_button_text {  
     507} 
     508 
     509.left_button_text { 
    397510        margin: -5px 0px 0px 0px; 
    398511        font: 9px; 
    399512} 
     513 
    400514#left_hook { 
    401515        padding: 0px 30px 60px 40px; 
     
    403517        margin: 20px 0px 0px 40px; 
    404518} 
     519 
    405520.mbox { 
    406         font-size: .8em;  
    407         font-weight: bold; 
    408 
     521        font-size: .8em; 
     522        font-weight: bold; 
     523
     524 
    409525.mbox_img_a { 
    410526        margin: 10px 10px 0 20px; 
    411527} 
     528 
    412529.mbox_img { 
    413530        margin: 0 10px 0 20px; 
    414531} 
     532 
    415533.mbox_trash { 
    416534        margin: 0px 16px 0px 20px; 
    417535} 
     536 
    418537#quota { 
    419538        width: 95%; 
    420539        margin-top: 15px; 
    421          
    422 
     540 
     541
     542 
    423543#folders_top { 
    424544        width: 100%; 
     
    431551        padding: 0 0 12 0; 
    432552} 
     553 
    433554#folders { 
    434555        width: 100%; 
     
    436557        background-repeat: repeat-y; 
    437558        background-position: top right; 
    438          
    439 
     559 
     560
     561 
    440562#folders_bottom { 
    441563        height: 14px; 
     
    444566        background-repeat: no-repeat; 
    445567        background-position: top right; 
    446          
     568 
    447569} 
    448570 
     
    459581        line-height: 30px; 
    460582} 
     583 
    461584#todo_top { 
    462585        width: 100%; 
     
    468591        margin-top: 10px; 
    469592} 
     593 
    470594#todo_top p { 
    471595        font-size: 12px; 
     
    478602        line-height: 30px; 
    479603} 
     604 
    480605#todo { 
    481606        width: 100%; 
     
    483608        background-repeat: repeat-y; 
    484609        background-position: top right; 
    485          
    486 
     610 
     611
     612 
    487613#todo_bottom { 
    488614        width: 100%; 
     
    490616        background-repeat: no-repeat; 
    491617        background-position: top right; 
    492          
    493 
     618 
     619
     620 
    494621#extra_top { 
    495622        width: 100%; 
     
    499626        position: relative; 
    500627} 
     628 
    501629#extra_top p { 
    502630        font-size: 12px; 
     
    509637        line-height: 30px; 
    510638} 
     639 
    511640#extra { 
    512641        width: 100%; 
     
    514643        background-repeat: repeat-y; 
    515644        background-position: top right; 
    516          
    517 
     645 
     646
     647 
    518648#extra_bottom { 
    519649        width: 100%; 
     
    521651        background-repeat: no-repeat; 
    522652        background-position: top right; 
    523          
    524 
     653 
     654
     655 
    525656#options p { 
    526657        font-weight: bold; 
    527658        margin-left: 15px; 
    528659} 
     660 
    529661#cal_top { 
    530662        width: 100%; 
    531 #     height: 30px; 
     663      height: 30px; 
    532664        background-image: url(../../skins/omega/folders_top.gif); 
    533665        background-repeat: no-repeat; 
     
    535667        position: relative; 
    536668} 
     669 
    537670#cal { 
    538671        width: 100%; 
     
    540673        background-repeat: repeat-y; 
    541674        background-position: top right; 
    542          
    543 
     675 
     676
     677 
    544678#cal_bottom { 
    545679        width: 100%; 
     
    547681        background-repeat: no-repeat; 
    548682        background-position: top right; 
    549          
    550 
     683 
     684
     685 
    551686#cal_top p { 
    552687        font-size: 12px; 
     
    557692        padding: 10; 
    558693        text-align: center; 
    559 #     line-height: 30px; 
     694      line-height: 30px; 
    560695} 
    561696 
     
    563698        font-size: 1em; 
    564699} 
     700 
    565701.cal_nav a { 
    566702        color: #f4dc6b; 
    567703        font-size: .8em; 
    568704} 
     705 
    569706.day { 
    570707        color: #f4dc6b; 
     
    573710        text-align: right; 
    574711} 
     712 
    575713.calendar a { 
    576714        font-size: .8em; 
    577715} 
     716 
    578717.calendarEventToday a { 
    579718        font-size: .8em; 
    580         color: #0BCF0B;  
    581 
     719        color: #0BCF0B; 
     720
     721 
    582722.calendarToday a { 
    583723        font-size: .8em; 
    584724        color: #f4dc6b; 
    585725} 
     726 
    586727.calendarEvent a { 
    587728        font-size: .8em; 
    588729        color: #2F59B5; 
    589         font-weight: bold;      
     730        font-weight: bold; 
    590731} 
    591732 
     
    606747        text-align: center; 
    607748} 
     749 
    608750.targetMailbox { 
    609751        font-size: 1em !important; 
     
    611753        vertical-align: middle; 
    612754} 
     755 
    613756.move_button, .forward_button { 
    614757        font-size: 1.4em; 
    615758        vertical-align: middle; 
    616759} 
     760 
    617761.flag_button, .unflag_button, .delete_button, .read_button, .unread_button { 
    618762        font-size: .8em; 
    619         vertical-align: middle;  
    620 
     763        vertical-align: middle; 
     764
     765 
    621766.flag_button { 
    622          
    623 
     767 
     768
     769 
    624770/* testing */ 
    625771.inbox_dropdown { 
    626772        background-color: transparent; 
    627773} 
     774 
    628775.move_button { 
    629776        font-family: tahoma; 
     
    640787        width: 56px; 
    641788} 
     789 
    642790.forward_button { 
    643791        font-family: tahoma; 
     
    654802        background-color: transparent; 
    655803} 
     804 
    656805.read_button { 
    657806        font-family: tahoma; 
     
    664813        background-repeat: no-repeat; 
    665814        margin: 4px; 
    666         padding: 1px 
     815        padding: 1px; 
    667816        border: 0px solid #9FA0FF; 
    668817        background-color: transparent; 
    669818} 
     819 
    670820.unread_button { 
    671821        font-family: tahoma; 
     
    678828        background-repeat: no-repeat; 
    679829        margin: 4px; 
    680         padding: 1px 
     830        padding: 1px; 
    681831        border: 0px solid #9FA0FF; 
    682832        background-color: transparent; 
    683833} 
     834 
    684835.delete_button { 
    685836        font-family: tahoma; 
     
    692843        background-repeat: no-repeat; 
    693844  &nbs