[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[4360] trunk



Revision: 4360
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4360&view=rev
Author:   einhverfr
Date:     2012-02-24 14:37:30 +0000 (Fri, 24 Feb 2012)
Log Message:
-----------
Added +/- indicators to menu.  Not as pretty as I would like yet though

Modified Paths:
--------------
    trunk/Changelog
    trunk/css/ledgersmb.css

Modified: trunk/Changelog
===================================================================
--- trunk/Changelog	2012-02-24 13:27:28 UTC (rev 4359)
+++ trunk/Changelog	2012-02-24 14:37:30 UTC (rev 4360)
@@ -9,6 +9,7 @@
 * Project/department mechanism generalized to support funds, etc (Chris T)
 * Removed the Config::Std dependency and moved to Config::General (Chris T)
 * Improved error handling using Try::Tiny and die (Chris T)
+* Added +/- selection indicators to menu CSS (Chris T)
 
 Customer/Vendor Handling 
 * Added sales tax id and license number fields for companies (Chris T)

Modified: trunk/css/ledgersmb.css
===================================================================
--- trunk/css/ledgersmb.css	2012-02-24 13:27:28 UTC (rev 4359)
+++ trunk/css/ledgersmb.css	2012-02-24 14:37:30 UTC (rev 4360)
@@ -101,6 +101,18 @@
   padding-left: 5px;
 }
 
+.menu_open, .menu_closed {
+    list-style: none;
+}
+.menu_open:before {
+    content: '-';
+}
+
+.menu_closed:before {
+    content: '+';
+}
+
+
 .menuOut a {
   cursor: pointer;
   margin: 0px;

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.