adding some styles for left folder tree
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 31 Dec 2005 14:36:53 +0000 (14:36 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 31 Dec 2005 14:36:53 +0000 (14:36 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10523 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/stylesheet.tpl

index 3be697e59ce24c275d684d50eedebc9cfc4ea066..a62274473906c8c976f01baa2d671ddb3c9ed105 100644 (file)
@@ -13,6 +13,9 @@
  *   <li>SQM_BACKGROUND_LEFT - background of folder tree
  *   <li>SQM_TEXT_STANDARD - text color
  *   <li>SQM_TEXT_STANDARD_LEFT - text color of folder tree
+ *   <li>SQM_LINK - color of links
+ *   <li>SQM_LINK_LEFT - color of links in folder tree
+ *   <li>SQM_TEXT_SPECIAL - color of special folder links in folder tree
  *   <li>todo: other constants should be documented here
  * </ul>
  *
@@ -50,15 +53,20 @@ body.leftmain {
     background-color: <?php echo SQM_BACKGROUND_LEFT; ?>;
 }
 
-/* right links (a:link, a:visited, a:hover, a:active) */
-a {
+/* right links */
+a:link, a:visited, a:hover, a:active {
     color: <?php echo SQM_LINK; ?>;
 }
 /* left links */
-/* TODO: recheck link css */
-a.leftmain {
+.leftmain a:link, .leftmain a:visited, .leftmain a:hover, .leftmain a:active {
     color:  <?php echo SQM_LINK_LEFT; ?>;
 }
+.leftspecial, .leftspecial a:link, .leftspecial a:visited, .leftspecial a:hover, .leftspecial a:active {
+    color:  <?php echo SQM_TEXT_SPECIAL; ?>;
+}
+.leftnoselect a:link, .leftnoselect a:visited, .leftnoselect a:hover, .leftnoselect a:active {
+    color:  <?php echo SQM_TEXT_HIGHLIGHT; ?>;
+}
 
 td, th {
 <?php if($fontsize) echo '  font-size: '.$fontsize."pt;\n";?>