Changeset 948
- 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
| r947 |
r948 |
|
| 7 | 7 | \_________________________________________________________________/ |
|---|
| 8 | 8 | |
|---|
| 9 | | 2007-23-15 Benedikt Heintel |
|---|
| | 9 | 2007-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 | |
|---|
| | 15 | 2007-12-15 Benedikt Heintel |
|---|
| 10 | 16 | - TOOLS: |
|---|
| 11 | 17 | * Fixed #714: undefined index in pma-style sheet (thanks to joximu) |
|---|
| 12 | 18 | * Update Squirrelmail to version 1.4.13 (#932) |
|---|
| 13 | | |
|---|
| 14 | 19 | |
|---|
| 15 | 20 | 2007-12-13 Benedikt Heintel |
|---|
| r918 |
r948 |
|
| 257 | 257 | # Default: 2 |
|---|
| 258 | 258 | # |
|---|
| 259 | | AllowFullYearView=2 |
|---|
| | 259 | AllowFullYearView=3 |
|---|
| 260 | 260 | |
|---|
| 261 | 261 | |
|---|
| r772 |
r948 |
|
| 192 | 192 | 'PHONE' => clean_input($_POST['phone']), |
|---|
| 193 | 193 | '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' : '') |
|---|
| 196 | 196 | ) |
|---|
| 197 | 197 | ); |
|---|
| r831 |
r948 |
|
| 39 | 39 | * @global string $org_logo |
|---|
| 40 | 40 | */ |
|---|
| 41 | | $org_logo = SM_PATH . 'images/logo.jpg'; |
|---|
| | 41 | $org_logo = SM_PATH . 'skins/omega/logo.gif'; |
|---|
| 42 | 42 | |
|---|
| 43 | 43 | /** |
|---|
| … | … | |
| 533 | 533 | * @global bool $hide_sm_attributions |
|---|
| 534 | 534 | */ |
|---|
| 535 | | $hide_sm_attributions = true; |
|---|
| | 535 | $hide_sm_attributions = false; |
|---|
| 536 | 536 | |
|---|
| 537 | 537 | /** |
|---|
| r946 |
r948 |
|
| 10 | 10 | * @version $Id: page_header.php 12538 2007-07-14 19:04:00Z kink $ |
|---|
| 11 | 11 | * @package squirrelmail |
|---|
| | 12 | * |
|---|
| | 13 | * @modified by ispCP Omega Team http://isp-control.net |
|---|
| 12 | 14 | */ |
|---|
| 13 | 15 | |
|---|
| r331 |
r948 |
|
| 1 | 1 | <?php |
|---|
| | 2 | /** |
|---|
| | 3 | * @modified by ispCP Omega Team http://isp-control.net |
|---|
| | 4 | */ |
|---|
| 2 | 5 | |
|---|
| 3 | 6 | // include compatibility plugin |
|---|
| … | … | |
| 48 | 51 | $user = $_COOKIE['user']; |
|---|
| 49 | 52 | } |
|---|
| 50 | | |
|---|
| | 53 | |
|---|
| 51 | 54 | if (isset($_COOKIE['pass'])) { |
|---|
| 52 | 55 | $pass = $_COOKIE['pass']; |
|---|
| … | … | |
| 71 | 74 | global $auto_pass, $auto_user, $user, $login_doc, $login_link; |
|---|
| 72 | 75 | |
|---|
| 73 | | // note that we get $user as well as all config |
|---|
| | 76 | // note that we get $user as well as all config |
|---|
| 74 | 77 | // variables from the hook before this |
|---|
| 75 | 78 | |
|---|
| … | … | |
| 90 | 93 | echo "<input type=checkbox name=cb_auto_pass value=true>\n"; |
|---|
| 91 | 94 | 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"; |
|---|
| 93 | 99 | echo "</td></tr>\n"; |
|---|
| 94 | 100 | } |
|---|
| … | … | |
| 104 | 110 | |
|---|
| 105 | 111 | if (($auto_user || $auto_pass) && $login_doc!='') { |
|---|
| 106 | | if (!isset($login_link) || $login_link=='') |
|---|
| | 112 | if (!isset($login_link) || $login_link=='') |
|---|
| 107 | 113 | // $login_link=_("What's this?"); |
|---|
| 108 | 114 | echo "<tr><td colspan='2' valign=center align=center><a href=$login_doc>$login_link</a></td></tr>\n"; |
|---|
| … | … | |
| 117 | 123 | function login_auto_get_pass_do() { |
|---|
| 118 | 124 | |
|---|
| 119 | | global $auto_pass, $auto_key, $secretkey, $just_logged_in, |
|---|
| | 125 | global $auto_pass, $auto_key, $secretkey, $just_logged_in, |
|---|
| 120 | 126 | $user, $pass, $login_username; |
|---|
| 121 | 127 | |
|---|
| … | … | |
| 159 | 165 | function login_auto_set_cookies_do() { |
|---|
| 160 | 166 | |
|---|
| 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, |
|---|
| 163 | 169 | $base_uri, $secretkey; |
|---|
| 164 | | |
|---|
| | 170 | |
|---|
| 165 | 171 | // note that we get $user and $pass as well as all config |
|---|
| 166 | 172 | // variables from the hook before this |
|---|
| 167 | 173 | |
|---|
| 168 | | $auto_expire = $auto_expire_days*86400 + $auto_expire_hours*3600 |
|---|
| | 174 | $auto_expire = $auto_expire_days*86400 + $auto_expire_hours*3600 |
|---|
| 169 | 175 | + $auto_expire_minutes*60; |
|---|
| 170 | 176 | |
|---|
| … | … | |
| 211 | 217 | */ |
|---|
| 212 | 218 | |
|---|
| 213 | | function MD5Keycrypt($txt,$key) |
|---|
| 214 | | { |
|---|
| | 219 | function MD5Keycrypt($txt,$key) |
|---|
| | 220 | { |
|---|
| 215 | 221 | for ($i=0,$j=0,$val='',$key=md5($key),$keylen=strlen($key),$txtlen=strlen($txt);$i<$txtlen;$i++) { |
|---|
| 216 | 222 | $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 | { |
|---|
| 223 | 229 | if (is_array($key)) { |
|---|
| 224 | 230 | for ($i=0,$alen=sizeof($key);$i<$alen;$i++) { |
|---|
| … | … | |
| 227 | 233 | return $txt; |
|---|
| 228 | 234 | } |
|---|
| 229 | | srand((double)microtime()*1000000); |
|---|
| | 235 | srand((double)microtime()*1000000); |
|---|
| 230 | 236 | $cryptkey=md5(rand(0,32000)); |
|---|
| 231 | 237 | for ($i=0,$j=0,$val='',$keylen=strlen($cryptkey),$txtlen=strlen($txt);$i<$txtlen;$i++) { |
|---|
| 232 | 238 | $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 | { |
|---|
| 239 | 245 | if (is_array($key)) { |
|---|
| 240 | 246 | for ($i=sizeof($key)-1;$i>=0;$i--) { |
|---|
| … | … | |
| 245 | 251 | for ($i=0,$val='',$txt=MD5Keycrypt($txt,$key),$txtlen=strlen($txt);$i<$txtlen;$i++) { |
|---|
| 246 | 252 | $val.=(substr($txt,$i+1,1)^substr($txt,$i++,1)); |
|---|
| 247 | | } |
|---|
| 248 | | return $val; |
|---|
| 249 | | } |
|---|
| | 253 | } |
|---|
| | 254 | return $val; |
|---|
| | 255 | } |
|---|
| 250 | 256 | |
|---|
| 251 | 257 | ?> |
|---|
| r946 |
r948 |
|
| 11 | 11 | * @version $Id: left_main.php 12537 2007-07-14 18:34:04Z kink $ |
|---|
| 12 | 12 | * @package squirrelmail |
|---|
| | 13 | * |
|---|
| | 14 | * @modified by ispCP Omega Team http://isp-control.net |
|---|
| 13 | 15 | */ |
|---|
| 14 | 16 | |
|---|
| … | … | |
| 180 | 182 | 'href="left_main.php?'; |
|---|
| 181 | 183 | 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 |
|---|
| 183 | 187 | } 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 |
|---|
| 185 | 191 | } |
|---|
| 186 | 192 | $link .= '</a>'; |
|---|
| … | … | |
| 343 | 349 | $boxes = sqimap_mailbox_list($imapConnection,true); |
|---|
| 344 | 350 | } |
|---|
| 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 |
|---|
| | 352 | echo "\n<body class=\"left\" bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n"; |
|---|
| | 353 | // End Modification |
|---|
| 347 | 354 | |
|---|
| 348 | 355 | do_hook('left_main_before'); |
|---|
| 349 | 356 | |
|---|
| | 357 | // |
|---|
| | 358 | // Modified by ispCP Omega - http://isp-control.net |
|---|
| | 359 | // |
|---|
| | 360 | /**** commented out |
|---|
| 350 | 361 | echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) . |
|---|
| 351 | 362 | html_tag( 'tr' ) . |
|---|
| … | … | |
| 355 | 366 | html_tag( 'td', '', 'center' ) . |
|---|
| 356 | 367 | '<font size="4"><b>'. _("Folders") . "</b><br /></font>\n\n"; |
|---|
| | 368 | */ |
|---|
| | 369 | //===============Code for left top header======= |
|---|
| | 370 | |
|---|
| | 371 | echo "\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 | /* |
|---|
| | 386 | echo html_tag( 'div', |
|---|
| | 387 | do_hook('quota_plugin_left'), |
|---|
| | 388 | '', '', 'id="quota"' |
|---|
| | 389 | ); |
|---|
| | 390 | */ |
|---|
| | 391 | // ==========End Quota Plugin========= |
|---|
| | 392 | |
|---|
| | 393 | echo 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 | // |
|---|
| 357 | 422 | |
|---|
| 358 | 423 | if ($date_format != 6) { |
|---|
| r946 |
r948 |
|
| 11 | 11 | * @version $Id: login.php 12768 2007-11-19 04:20:34Z jangliss $ |
|---|
| 12 | 12 | * @package squirrelmail |
|---|
| | 13 | * |
|---|
| | 14 | * @modified by ispCP Omega Team http://isp-control.net |
|---|
| 13 | 15 | */ |
|---|
| 14 | 16 | |
|---|
| … | … | |
| 84 | 86 | * $custom_session_handlers[5] |
|---|
| 85 | 87 | * ); |
|---|
| 86 | | * |
|---|
| | 88 | * |
|---|
| 87 | 89 | * We need to replicate that code once here because PHP has |
|---|
| 88 | 90 | * long had a bug that resets the session handler mechanism |
|---|
| … | … | |
| 90 | 92 | * bug, even administrators who define custom session handlers |
|---|
| 91 | 93 | * 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 |
|---|
| 93 | 95 | * in config_local.php. |
|---|
| 94 | 96 | */ |
|---|
| … | … | |
| 109 | 111 | if (!empty($sel)) { |
|---|
| 110 | 112 | sqsession_register($sel, 'session_expired_location'); |
|---|
| 111 | | if (!empty($sep)) |
|---|
| | 113 | if (!empty($sep)) |
|---|
| 112 | 114 | sqsession_register($sep, 'session_expired_post'); |
|---|
| 113 | 115 | } |
|---|
| … | … | |
| 185 | 187 | } |
|---|
| 186 | 188 | |
|---|
| | 189 | // |
|---|
| | 190 | // Modified by ispCP Omega - http://isp-control.net |
|---|
| | 191 | // |
|---|
| | 192 | |
|---|
| | 193 | echo 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 |
|---|
| 187 | 216 | echo html_tag( 'table', |
|---|
| 188 | 217 | html_tag( 'tr', |
|---|
| … | … | |
| 221 | 250 | addPwField($password_form_name). |
|---|
| 222 | 251 | addHidden('js_autodetect_results', SMPREF_JS_OFF). |
|---|
| 223 | | $mailtofield . |
|---|
| | 252 | $mailtofield . |
|---|
| 224 | 253 | addHidden('just_logged_in', '1'), |
|---|
| 225 | 254 | 'left', '', 'width="70%"' ) |
|---|
| … | … | |
| 227 | 256 | 'center', $color[4], 'border="0" width="100%"' ) , |
|---|
| 228 | 257 | 'left',$color[4] ) |
|---|
| 229 | | ) . |
|---|
| | 258 | ) . |
|---|
| 230 | 259 | html_tag( 'tr', |
|---|
| 231 | 260 | html_tag( 'td', |
|---|
| … | … | |
| 237 | 266 | ) , |
|---|
| 238 | 267 | '', $color[4], 'border="0" cellspacing="0" cellpadding="0" width="100%"' ); |
|---|
| | 268 | * ***/ |
|---|
| | 269 | // |
|---|
| | 270 | // End modification |
|---|
| | 271 | // |
|---|
| 239 | 272 | do_hook('login_form'); |
|---|
| 240 | 273 | echo '</form>' . "\n"; |
|---|
| r567 |
r948 |
|
| 3 | 3 | text-decoration: none; |
|---|
| 4 | 4 | } |
|---|
| | 5 | |
|---|
| 5 | 6 | html { |
|---|
| 6 | 7 | font-size: 100%; |
|---|
| … | … | |
| 8 | 9 | padding: 0; |
|---|
| 9 | 10 | } |
|---|
| | 11 | |
|---|
| 10 | 12 | small { |
|---|
| 11 | 13 | color: #ffffff; |
|---|
| 12 | 14 | font-size: .8em; |
|---|
| 13 | 15 | } |
|---|
| 14 | | body, small { |
|---|
| 15 | | font-size: 8pt; |
|---|
| 16 | | } |
|---|
| | 16 | |
|---|
| 17 | 17 | pre { |
|---|
| 18 | 18 | font-family: verdana; |
|---|
| … | … | |
| 20 | 20 | } |
|---|
| 21 | 21 | |
|---|
| 22 | | BODY{ |
|---|
| | 22 | body { |
|---|
| 23 | 23 | font-family: verdana; |
|---|
| 24 | 24 | background-image: url(../../skins/omega/header_right_bg.png); |
|---|
| … | … | |
| 27 | 27 | /* background-attachment: fixed; */ |
|---|
| 28 | 28 | } |
|---|
| | 29 | |
|---|
| 29 | 30 | body.left { |
|---|
| 30 | 31 | background-image: url(../../skins/omega/folders_bottom.gif); |
|---|
| … | … | |
| 33 | 34 | margin: 0; |
|---|
| 34 | 35 | padding: 0; |
|---|
| 35 | | overflow: auto; |
|---|
| | 36 | overflow: auto; |
|---|
| 36 | 37 | } |
|---|
| 37 | 38 | |
|---|
| … | … | |
| 41 | 42 | border: 1px double #aaa; |
|---|
| 42 | 43 | } |
|---|
| | 44 | |
|---|
| 43 | 45 | .titletext { |
|---|
| 44 | 46 | font-weight: bold; |
|---|
| 45 | 47 | } |
|---|
| | 48 | |
|---|
| 46 | 49 | td { |
|---|
| 47 | 50 | font-size: 7pt; |
|---|
| 48 | 51 | } |
|---|
| | 52 | |
|---|
| 49 | 53 | .top_bar_header { |
|---|
| 50 | 54 | FONT-FAMILY: verdana; |
|---|
| 51 | 55 | FONT-SIZE: 13px; |
|---|
| 52 | 56 | COLOR: #000000; |
|---|
| 53 | | |
|---|
| 54 | | } |
|---|
| | 57 | |
|---|
| | 58 | } |
|---|
| | 59 | |
|---|
| 55 | 60 | .top_left_bar_handle { |
|---|
| 56 | 61 | } |
|---|
| | 62 | |
|---|
| 57 | 63 | .inbox_bar_header { |
|---|
| 58 | 64 | FONT-FAMILY: verdana; |
|---|
| … | … | |
| 62 | 68 | margin: auto; |
|---|
| 63 | 69 | } |
|---|
| | 70 | |
|---|
| 64 | 71 | .inbox_left_bar_handle { |
|---|
| 65 | 72 | padding: 1 1; |
|---|
| 66 | 73 | } |
|---|
| | 74 | |
|---|
| 67 | 75 | .company_text { |
|---|
| 68 | 76 | FONT-FAMILY: verdana; |
|---|
| … | … | |
| 71 | 79 | COLOR: #C9D3E4; |
|---|
| 72 | 80 | } |
|---|
| | 81 | |
|---|
| 73 | 82 | .targetMailbox { |
|---|
| 74 | 83 | font-size: 1em !important; |
|---|
| … | … | |
| 80 | 89 | background-color: #c0c0c0; |
|---|
| 81 | 90 | } |
|---|
| | 91 | |
|---|
| 82 | 92 | .toggle_table { |
|---|
| 83 | 93 | background-color: #c0c0c0; |
|---|
| 84 | 94 | } |
|---|
| | 95 | |
|---|
| 85 | 96 | .messageinfo_table { |
|---|
| 86 | 97 | background-color: #c0c0c0; |
|---|
| 87 | 98 | } |
|---|
| | 99 | |
|---|
| 88 | 100 | .mailmessage_table { |
|---|
| 89 | 101 | background-color: White; |
|---|
| 90 | 102 | } |
|---|
| | 103 | |
|---|
| 91 | 104 | #company_table { |
|---|
| 92 | 105 | padding: -10px 0px 0px 0px; |
|---|
| … | … | |
| 94 | 107 | margin: -6px 0px 0px 0px; |
|---|
| 95 | 108 | } |
|---|
| | 109 | |
|---|
| 96 | 110 | .current_folder { |
|---|
| 97 | 111 | padding: 1 1; |
|---|
| … | … | |
| 100 | 114 | color : #ffffff; |
|---|
| 101 | 115 | } |
|---|
| | 116 | |
|---|
| 102 | 117 | .options_bar { |
|---|
| 103 | 118 | padding: 1 1; |
|---|
| … | … | |
| 107 | 122 | |
|---|
| 108 | 123 | } |
|---|
| | 124 | |
|---|
| 109 | 125 | .options_bar.a { |
|---|
| 110 | 126 | color: #ffffff; |
|---|
| 111 | 127 | } |
|---|
| | 128 | |
|---|
| 112 | 129 | .read_icon_bar { |
|---|
| 113 | 130 | background: url(../../skins/omega/readbar_silver.gif); |
|---|
| … | … | |
| 115 | 132 | color : #ffffff; |
|---|
| 116 | 133 | } |
|---|
| | 134 | |
|---|
| 117 | 135 | .topbar { |
|---|
| 118 | 136 | border: 1px none #66CDAA; |
|---|
| 119 | 137 | } |
|---|
| | 138 | |
|---|
| 120 | 139 | .message_header { |
|---|
| 121 | 140 | border: 0px solid #FFFFFF; |
|---|
| 122 | 141 | background-color: #B3CAF7; |
|---|
| 123 | 142 | } |
|---|
| | 143 | |
|---|
| 124 | 144 | .attach_box_top { |
|---|
| 125 | 145 | background-color: #B3CAF7; |
|---|
| 126 | 146 | } |
|---|
| | 147 | |
|---|
| 127 | 148 | .attach_box_bottom { |
|---|
| 128 | 149 | background-color: #ECF0F4; |
|---|
| 129 | 150 | } |
|---|
| 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 | |
|---|
| | 152 | frame { |
|---|
| | 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 | |
|---|
| 134 | 171 | .mail_display_header { |
|---|
| 135 | 172 | background: White; |
|---|
| … | … | |
| 137 | 174 | border-top: 1px solid #ABABAB; |
|---|
| 138 | 175 | } |
|---|
| | 176 | |
|---|
| 139 | 177 | .message_toggle_bar { |
|---|
| 140 | 178 | |
|---|
| … | … | |
| 144 | 182 | |
|---|
| 145 | 183 | .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 **/ |
|---|
| 149 | 248 | |
|---|
| 150 | 249 | #right_logo { |
|---|
| … | … | |
| 157 | 256 | cursor: hand; |
|---|
| 158 | 257 | } |
|---|
| 159 | | p.button_text { |
|---|
| | 258 | |
|---|
| | 259 | p.button_text { |
|---|
| 160 | 260 | margin: 55px 0px 0px 10px; |
|---|
| 161 | 261 | font-size: 9px; |
|---|
| … | … | |
| 167 | 267 | |
|---|
| 168 | 268 | } |
|---|
| | 269 | |
|---|
| 169 | 270 | #inbox_button { |
|---|
| 170 | 271 | background: url(../../skins/omega/inbox.png); |
|---|
| … | … | |
| 189 | 290 | Color: #FFFFFF; |
|---|
| 190 | 291 | } |
|---|
| | 292 | |
|---|
| 191 | 293 | #addresses_button { |
|---|
| 192 | 294 | background-image: url(../../skins/omega/address_book.png); |
|---|
| … | … | |
| 209 | 311 | Color: #FFFFFF; |
|---|
| 210 | 312 | } |
|---|
| | 313 | |
|---|
| 211 | 314 | #options_button { |
|---|
| 212 | 315 | background-image: url(../../skins/omega/options.png); |
|---|
| … | … | |
| 240 | 343 | Color: #FFFFFF; |
|---|
| 241 | 344 | } |
|---|
| | 345 | |
|---|
| 242 | 346 | #todo_button { |
|---|
| 243 | 347 | background-image: url(../../skins/omega/todo.gif); |
|---|
| … | … | |
| 271 | 375 | cursor: hand; |
|---|
| 272 | 376 | } |
|---|
| | 377 | |
|---|
| 273 | 378 | #search_button { |
|---|
| 274 | 379 | background-image: url(../../skins/omega/search.gif); |
|---|
| … | … | |
| 298 | 403 | cursor: hand; |
|---|
| 299 | 404 | } |
|---|
| | 405 | |
|---|
| 300 | 406 | #calendar_button { |
|---|
| 301 | 407 | background-image: url(../../skins/omega/calendar.gif); |
|---|
| … | … | |
| 307 | 413 | cursor: hand; |
|---|
| 308 | 414 | } |
|---|
| | 415 | |
|---|
| 309 | 416 | #bookmark_button { |
|---|
| 310 | 417 | background-image: url(../../skins/omega/bookmarks.gif); |
|---|
| … | … | |
| 324 | 431 | background-color: #DAE3ED; |
|---|
| 325 | 432 | } |
|---|
| | 433 | |
|---|
| 326 | 434 | .main_header_bar { |
|---|
| 327 | | |
|---|
| | 435 | |
|---|
| 328 | 436 | background-repeat: repeat-x; |
|---|
| 329 | | } |
|---|
| | 437 | } |
|---|
| | 438 | |
|---|
| 330 | 439 | .small_header_bar { |
|---|
| 331 | 440 | background-color: White; |
|---|
| 332 | 441 | } |
|---|
| | 442 | |
|---|
| 333 | 443 | .left_main { |
|---|
| 334 | 444 | border: thin dashed #DCDCDC; |
|---|
| 335 | 445 | } |
|---|
| 336 | | |
|---|
| 337 | 446 | |
|---|
| 338 | 447 | #left_inbox_button { |
|---|
| … | … | |
| 346 | 455 | cursor: hand; |
|---|
| 347 | 456 | } |
|---|
| | 457 | |
|---|
| 348 | 458 | #left_drafts_button { |
|---|
| 349 | 459 | background-image: url(../../skins/omega/); |
|---|
| … | … | |
| 356 | 466 | cursor: hand; |
|---|
| 357 | 467 | } |
|---|
| | 468 | |
|---|
| 358 | 469 | #left_sent_button { |
|---|
| 359 | 470 | background-image: url(../../skins/omega/); |
|---|
| … | … | |
| 365 | 476 | margin: -5px 0px 0px 0px; |
|---|
| 366 | 477 | cursor: hand; |
|---|
| 367 | | } |
|---|
| | 478 | } |
|---|
| | 479 | |
|---|
| 368 | 480 | #left_trash_button { |
|---|
| 369 | 481 | background-image: url(../../skins/omega/); |
|---|
| … | … | |
| 375 | 487 | margin: -5px 0px 0px 0px; |
|---|
| 376 | 488 | cursor: hand; |
|---|
| 377 | | } |
|---|
| | 489 | } |
|---|
| | 490 | |
|---|
| 378 | 491 | #left_folder_button { |
|---|
| 379 | 492 | background-image: url(../../skins/omega/); |
|---|
| … | … | |
| 386 | 499 | cursor: hand; |
|---|
| 387 | 500 | } |
|---|
| 388 | | |
|---|
| | 501 | |
|---|
| 389 | 502 | #left_logo{ |
|---|
| 390 | 503 | background-image: url(../../skins/omega/header_bg.png); |
|---|
| … | … | |
| 392 | 505 | height:117px; |
|---|
| 393 | 506 | margin: 0px 0px 0px 0px; |
|---|
| 394 | | } |
|---|
| 395 | | |
|---|
| 396 | | .left_button_text { |
|---|
| | 507 | } |
|---|
| | 508 | |
|---|
| | 509 | .left_button_text { |
|---|
| 397 | 510 | margin: -5px 0px 0px 0px; |
|---|
| 398 | 511 | font: 9px; |
|---|
| 399 | 512 | } |
|---|
| | 513 | |
|---|
| 400 | 514 | #left_hook { |
|---|
| 401 | 515 | padding: 0px 30px 60px 40px; |
|---|
| … | … | |
| 403 | 517 | margin: 20px 0px 0px 40px; |
|---|
| 404 | 518 | } |
|---|
| | 519 | |
|---|
| 405 | 520 | .mbox { |
|---|
| 406 | | font-size: .8em; |
|---|
| 407 | | font-weight: bold; |
|---|
| 408 | | } |
|---|
| | 521 | font-size: .8em; |
|---|
| | 522 | font-weight: bold; |
|---|
| | 523 | } |
|---|
| | 524 | |
|---|
| 409 | 525 | .mbox_img_a { |
|---|
| 410 | 526 | margin: 10px 10px 0 20px; |
|---|
| 411 | 527 | } |
|---|
| | 528 | |
|---|
| 412 | 529 | .mbox_img { |
|---|
| 413 | 530 | margin: 0 10px 0 20px; |
|---|
| 414 | 531 | } |
|---|
| | 532 | |
|---|
| 415 | 533 | .mbox_trash { |
|---|
| 416 | 534 | margin: 0px 16px 0px 20px; |
|---|
| 417 | 535 | } |
|---|
| | 536 | |
|---|
| 418 | 537 | #quota { |
|---|
| 419 | 538 | width: 95%; |
|---|
| 420 | 539 | margin-top: 15px; |
|---|
| 421 | | |
|---|
| 422 | | } |
|---|
| | 540 | |
|---|
| | 541 | } |
|---|
| | 542 | |
|---|
| 423 | 543 | #folders_top { |
|---|
| 424 | 544 | width: 100%; |
|---|
| … | … | |
| 431 | 551 | padding: 0 0 12 0; |
|---|
| 432 | 552 | } |
|---|
| | 553 | |
|---|
| 433 | 554 | #folders { |
|---|
| 434 | 555 | width: 100%; |
|---|
| … | … | |
| 436 | 557 | background-repeat: repeat-y; |
|---|
| 437 | 558 | background-position: top right; |
|---|
| 438 | | |
|---|
| 439 | | } |
|---|
| | 559 | |
|---|
| | 560 | } |
|---|
| | 561 | |
|---|
| 440 | 562 | #folders_bottom { |
|---|
| 441 | 563 | height: 14px; |
|---|
| … | … | |
| 444 | 566 | background-repeat: no-repeat; |
|---|
| 445 | 567 | background-position: top right; |
|---|
| 446 | | |
|---|
| | 568 | |
|---|
| 447 | 569 | } |
|---|
| 448 | 570 | |
|---|
| … | … | |
| 459 | 581 | line-height: 30px; |
|---|
| 460 | 582 | } |
|---|
| | 583 | |
|---|
| 461 | 584 | #todo_top { |
|---|
| 462 | 585 | width: 100%; |
|---|
| … | … | |
| 468 | 591 | margin-top: 10px; |
|---|
| 469 | 592 | } |
|---|
| | 593 | |
|---|
| 470 | 594 | #todo_top p { |
|---|
| 471 | 595 | font-size: 12px; |
|---|
| … | … | |
| 478 | 602 | line-height: 30px; |
|---|
| 479 | 603 | } |
|---|
| | 604 | |
|---|
| 480 | 605 | #todo { |
|---|
| 481 | 606 | width: 100%; |
|---|
| … | … | |
| 483 | 608 | background-repeat: repeat-y; |
|---|
| 484 | 609 | background-position: top right; |
|---|
| 485 | | |
|---|
| 486 | | } |
|---|
| | 610 | |
|---|
| | 611 | } |
|---|
| | 612 | |
|---|
| 487 | 613 | #todo_bottom { |
|---|
| 488 | 614 | width: 100%; |
|---|
| … | … | |
| 490 | 616 | background-repeat: no-repeat; |
|---|
| 491 | 617 | background-position: top right; |
|---|
| 492 | | |
|---|
| 493 | | } |
|---|
| | 618 | |
|---|
| | 619 | } |
|---|
| | 620 | |
|---|
| 494 | 621 | #extra_top { |
|---|
| 495 | 622 | width: 100%; |
|---|
| … | … | |
| 499 | 626 | position: relative; |
|---|
| 500 | 627 | } |
|---|
| | 628 | |
|---|
| 501 | 629 | #extra_top p { |
|---|
| 502 | 630 | font-size: 12px; |
|---|
| … | … | |
| 509 | 637 | line-height: 30px; |
|---|
| 510 | 638 | } |
|---|
| | 639 | |
|---|
| 511 | 640 | #extra { |
|---|
| 512 | 641 | width: 100%; |
|---|
| … | … | |
| 514 | 643 | background-repeat: repeat-y; |
|---|
| 515 | 644 | background-position: top right; |
|---|
| 516 | | |
|---|
| 517 | | } |
|---|
| | 645 | |
|---|
| | 646 | } |
|---|
| | 647 | |
|---|
| 518 | 648 | #extra_bottom { |
|---|
| 519 | 649 | width: 100%; |
|---|
| … | … | |
| 521 | 651 | background-repeat: no-repeat; |
|---|
| 522 | 652 | background-position: top right; |
|---|
| 523 | | |
|---|
| 524 | | } |
|---|
| | 653 | |
|---|
| | 654 | } |
|---|
| | 655 | |
|---|
| 525 | 656 | #options p { |
|---|
| 526 | 657 | font-weight: bold; |
|---|
| 527 | 658 | margin-left: 15px; |
|---|
| 528 | 659 | } |
|---|
| | 660 | |
|---|
| 529 | 661 | #cal_top { |
|---|
| 530 | 662 | width: 100%; |
|---|
| 531 | | # height: 30px; |
|---|
| | 663 | height: 30px; |
|---|
| 532 | 664 | background-image: url(../../skins/omega/folders_top.gif); |
|---|
| 533 | 665 | background-repeat: no-repeat; |
|---|
| … | … | |
| 535 | 667 | position: relative; |
|---|
| 536 | 668 | } |
|---|
| | 669 | |
|---|
| 537 | 670 | #cal { |
|---|
| 538 | 671 | width: 100%; |
|---|
| … | … | |
| 540 | 673 | background-repeat: repeat-y; |
|---|
| 541 | 674 | background-position: top right; |
|---|
| 542 | | |
|---|
| 543 | | } |
|---|
| | 675 | |
|---|
| | 676 | } |
|---|
| | 677 | |
|---|
| 544 | 678 | #cal_bottom { |
|---|
| 545 | 679 | width: 100%; |
|---|
| … | … | |
| 547 | 681 | background-repeat: no-repeat; |
|---|
| 548 | 682 | background-position: top right; |
|---|
| 549 | | |
|---|
| 550 | | } |
|---|
| | 683 | |
|---|
| | 684 | } |
|---|
| | 685 | |
|---|
| 551 | 686 | #cal_top p { |
|---|
| 552 | 687 | font-size: 12px; |
|---|
| … | … | |
| 557 | 692 | padding: 10; |
|---|
| 558 | 693 | text-align: center; |
|---|
| 559 | | # line-height: 30px; |
|---|
| | 694 | line-height: 30px; |
|---|
| 560 | 695 | } |
|---|
| 561 | 696 | |
|---|
| … | … | |
| 563 | 698 | font-size: 1em; |
|---|
| 564 | 699 | } |
|---|
| | 700 | |
|---|
| 565 | 701 | .cal_nav a { |
|---|
| 566 | 702 | color: #f4dc6b; |
|---|
| 567 | 703 | font-size: .8em; |
|---|
| 568 | 704 | } |
|---|
| | 705 | |
|---|
| 569 | 706 | .day { |
|---|
| 570 | 707 | color: #f4dc6b; |
|---|
| … | … | |
| 573 | 710 | text-align: right; |
|---|
| 574 | 711 | } |
|---|
| | 712 | |
|---|
| 575 | 713 | .calendar a { |
|---|
| 576 | 714 | font-size: .8em; |
|---|
| 577 | 715 | } |
|---|
| | 716 | |
|---|
| 578 | 717 | .calendarEventToday a { |
|---|
| 579 | 718 | font-size: .8em; |
|---|
| 580 | | color: #0BCF0B; |
|---|
| 581 | | } |
|---|
| | 719 | color: #0BCF0B; |
|---|
| | 720 | } |
|---|
| | 721 | |
|---|
| 582 | 722 | .calendarToday a { |
|---|
| 583 | 723 | font-size: .8em; |
|---|
| 584 | 724 | color: #f4dc6b; |
|---|
| 585 | 725 | } |
|---|
| | 726 | |
|---|
| 586 | 727 | .calendarEvent a { |
|---|
| 587 | 728 | font-size: .8em; |
|---|
| 588 | 729 | color: #2F59B5; |
|---|
| 589 | | font-weight: bold; |
|---|
| | 730 | font-weight: bold; |
|---|
| 590 | 731 | } |
|---|
| 591 | 732 | |
|---|
| … | … | |
| 606 | 747 | text-align: center; |
|---|
| 607 | 748 | } |
|---|
| | 749 | |
|---|
| 608 | 750 | .targetMailbox { |
|---|
| 609 | 751 | font-size: 1em !important; |
|---|
| … | … | |
| 611 | 753 | vertical-align: middle; |
|---|
| 612 | 754 | } |
|---|
| | 755 | |
|---|
| 613 | 756 | .move_button, .forward_button { |
|---|
| 614 | 757 | font-size: 1.4em; |
|---|
| 615 | 758 | vertical-align: middle; |
|---|
| 616 | 759 | } |
|---|
| | 760 | |
|---|
| 617 | 761 | .flag_button, .unflag_button, .delete_button, .read_button, .unread_button { |
|---|
| 618 | 762 | font-size: .8em; |
|---|
| 619 | | vertical-align: middle; |
|---|
| 620 | | } |
|---|
| | 763 | vertical-align: middle; |
|---|
| | 764 | } |
|---|
| | 765 | |
|---|
| 621 | 766 | .flag_button { |
|---|
| 622 | | |
|---|
| 623 | | } |
|---|
| | 767 | |
|---|
| | 768 | } |
|---|
| | 769 | |
|---|
| 624 | 770 | /* testing */ |
|---|
| 625 | 771 | .inbox_dropdown { |
|---|
| 626 | 772 | background-color: transparent; |
|---|
| 627 | 773 | } |
|---|
| | 774 | |
|---|
| 628 | 775 | .move_button { |
|---|
| 629 | 776 | font-family: tahoma; |
|---|
| … | … | |
| 640 | 787 | width: 56px; |
|---|
| 641 | 788 | } |
|---|
| | 789 | |
|---|
| 642 | 790 | .forward_button { |
|---|
| 643 | 791 | font-family: tahoma; |
|---|
| … | … | |
| 654 | 802 | background-color: transparent; |
|---|
| 655 | 803 | } |
|---|
| | 804 | |
|---|
| 656 | 805 | .read_button { |
|---|
| 657 | 806 | font-family: tahoma; |
|---|
| … | … | |
| 664 | 813 | background-repeat: no-repeat; |
|---|
| 665 | 814 | margin: 4px; |
|---|
| 666 | | padding: 1px |
|---|
| | 815 | padding: 1px; |
|---|
| 667 | 816 | border: 0px solid #9FA0FF; |
|---|
| 668 | 817 | background-color: transparent; |
|---|
| 669 | 818 | } |
|---|
| | 819 | |
|---|
| 670 | 820 | .unread_button { |
|---|
| 671 | 821 | font-family: tahoma; |
|---|
| … | … | |
| 678 | 828 | background-repeat: no-repeat; |
|---|
| 679 | 829 | margin: 4px; |
|---|
| 680 | | padding: 1px |
|---|
| | 830 | padding: 1px; |
|---|
| 681 | 831 | border: 0px solid #9FA0FF; |
|---|
| 682 | 832 | background-color: transparent; |
|---|
| 683 | 833 | } |
|---|
| | 834 | |
|---|
| 684 | 835 | .delete_button { |
|---|
| 685 | 836 | font-family: tahoma; |
|---|
| … | … | |
| 692 | 843 | background-repeat: no-repeat; |
|---|
| 693 | 844 | &nbs |
|---|
|