Added new highlighting color
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 17 Mar 2005 04:04:15 +0000 (04:04 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 17 Mar 2005 04:04:15 +0000 (04:04 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9052 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php
themes/default_theme.php

index 5a1ed49b648702ca9fefa11267cfe49b7a5b0744..04b1c566cffa214e229fe0b6b88210ed36c0a32d 100644 (file)
@@ -318,7 +318,10 @@ function printMessageInfo($aMsg) {
         // highlighting of checked rows
         //
         //$clickedColor = '';
-        $clickedColor = $color[2];
+        if (!empty($color[16]))
+           $clickedColor = $color[16];
+        else
+           $clickedColor = $color[2];
 
         $row_extra .= ' onmouseover="setPointer(this, ' . $t . ', \'over\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');" onmouseout="setPointer(this, ' . $t . ', \'out\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');" onmousedown="setPointer(this, ' . $t . ', \'click\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');"';
 
index 6bb286780b503b1d8f2099538be8316a0e61ba81..9e092ddd0e372abda5585c35e969972dee258fcf 100644 (file)
@@ -35,4 +35,5 @@
     $color[13]  = '#800000'; // (dark red)       Color for quoted text -- > 1 quote
     $color[14]  = '#ff0000'; // (red)            Color for quoted text -- >> 2 or more
     $color[15]  = '#002266'; // (dark blue)      Unselectable folders
-?>
\ No newline at end of file
+    $color[16]  = '#FF9933'; // (orange)         Highlight color
+?>