[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[2293] trunk
- Subject: SF.net SVN: ledger-smb:[2293] trunk
- From: ..hidden..
- Date: Thu, 21 Aug 2008 03:01:50 +0000
Revision: 2293
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2293&view=rev
Author: einhverfr
Date: 2008-08-21 03:01:49 +0000 (Thu, 21 Aug 2008)
Log Message:
-----------
Adding highlighting for tr.active rows in tables. For example, used to show which line is being edited out of several.
Modified Paths:
--------------
trunk/UI/Contact/contact.html
trunk/css/ledgersmb.css
Modified: trunk/UI/Contact/contact.html
===================================================================
--- trunk/UI/Contact/contact.html 2008-08-21 02:45:34 UTC (rev 2292)
+++ trunk/UI/Contact/contact.html 2008-08-21 03:01:49 UTC (rev 2293)
@@ -740,13 +740,6 @@
</div>
<div id="notes_div">
<div class="listtop"><?lsmb text('Notes') ?></div>
-<?lsmb FOREACH n = notes ?>
-<div class="note">
-<div class="timestamp"><?lsmb text('Entered at: [_1]', n.created) ?></div>
-<div class="author"><?lsmb text("Author: [_1]", n.created_by) ?></div>
-<div class="note_contents"><?lsmb n.note ?></div>
-</div>
-<?lsmb END ?>
<form action="<?lsmb script ?>" method="post">
<?lsmb PROCESS input element_data = {
type="hidden"
@@ -782,7 +775,14 @@
} ?>
</form>
+<?lsmb FOREACH n = notes ?>
+<div class="note">
+<div class="timestamp"><?lsmb text('Entered at: [_1]', n.created) ?></div>
+<div class="author"><?lsmb text("Author: [_1]", n.created_by) ?></div>
+<div class="note_contents"><?lsmb n.note ?></div>
</div>
<?lsmb END ?>
+</div>
+<?lsmb END ?>
</body>
</html>
Modified: trunk/css/ledgersmb.css
===================================================================
--- trunk/css/ledgersmb.css 2008-08-21 02:45:34 UTC (rev 2292)
+++ trunk/css/ledgersmb.css 2008-08-21 03:01:49 UTC (rev 2293)
@@ -207,6 +207,10 @@
overflow: auto;
}
+tr.active {
+ background-color: #ddd;
+}
+
/* media stuff */
@media screen {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.