Changeset 1383
- Timestamp:
- 03/04/07 17:10:00 (2 years ago)
- Files:
-
- feedmelinks/img/export-off.gif (added)
- feedmelinks/img/export-on.gif (added)
- feedmelinks/img/export.gif (added)
- feedmelinks/modules/main-interface.inc.php (modified) (1 diff)
- feedmelinks/style/main.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/modules/main-interface.inc.php
r1381 r1383 15 15 ?> 16 16 <h2 style='margin-left: 6px;'> 17 You have <?= number_format( $num_links ) ?> links and <?= number_format( $num_tags ) ?> tags. 17 You have 18 <big><big><?= number_format( $num_links ) ?></big> 19 links 20 </big> 21 & 22 <big><big><a class="hot" href="/u/<?= $u ?>/tags"><?= number_format( $num_tags ) ?></big> tags</a></big>. 18 23 <p/> 19 <a href="/export">Export a copy of your links</a> 24 <a href="/export" 25 onMouseOver="document.images.export_button.src='/img/export-on.gif';" 26 onMouseOut="document.images.export_button.src='/img/export-off.gif';" 27 ><img src="/img/export.gif" name="export_button" alt="Export your links" border="0" /></a> 20 28 </h2> 21 29 <?php feedmelinks/style/main.css
r1382 r1383 96 96 a.hot, a.hot:link, a.hot:active, .hot { 97 97 color: #FF6600; 98 } 99 100 a.underhot, a.underhot:link, a.underhot:visited, .underhot { 101 border-bottom: 1px dotted #ff6600; 102 color: #FF6600; 103 } 104 105 a.underhot:active, .underhot:active, a.underhot:hover, .underhot:hover { 106 border-bottom: 1px dotted #black; 107 color: black; 108 text-decoration: none; 98 109 } 99 110