summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-02-12 01:12:33 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-02-12 01:12:33 +0000
commit6adf661ca7927a1cf8dc0c1e87c2739bd8762a7f (patch)
treeb4d82c888c1bf8d4d6ad13fb5cf9805fb08939a7
parentfbfa2336f931ba9f024648dd181be368672ba7f6 (diff)
Change the size of the text and and some odd/even coloring. Hopefully
some one will be so disgusted with these colors, they will change them :-).
-rw-r--r--modules/exif/views/exif_dialog.html.php54
1 files changed, 29 insertions, 25 deletions
diff --git a/modules/exif/views/exif_dialog.html.php b/modules/exif/views/exif_dialog.html.php
index 3f123303..d7985a30 100644
--- a/modules/exif/views/exif_dialog.html.php
+++ b/modules/exif/views/exif_dialog.html.php
@@ -1,29 +1,33 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
+<style>
+ #gExifData {font-size: .85em;}
+ .gOdd {background: #BDD2FF;}
+ .gEven {background: #DFEFFC;}
+</style>
<h1 style="display: none;"><?= t("Photo Detail") ?></h1>
<div id="gExifData">
- <table>
- <tbody>
- <? for ($i = 0; $i < count($details); $i++): ?>
- <tr>
- <td class="gEven">
- <?= $details[$i]["caption"] ?>
- </td>
- <td class="gOdd">
- <?= $details[$i]["value"] ?>
- </td>
- <? if (!empty($details[++$i])): ?>
- <td class="gEven">
- <?= $details[$i]["caption"] ?>
- </td>
- <td class="gOdd">
- <?= $details[$i]["value"] ?>
- </td>
- <? else: ?>
- <td class="gEven"></td><td class="gOdd"></td>
- <? endif ?>
- </td>
- </tr>
- <? endfor ?>
- </tbody>
- </table>
+ <table class="gMetadata" >
+ <tbody>
+ <? for ($i = 0; $i < count($details); $i++): ?>
+ <tr>
+ <td class="gEven">
+ <?= $details[$i]["caption"] ?>
+ </td>
+ <td class="gOdd">
+ <?= $details[$i]["value"] ?>
+ </td>
+ <? if (!empty($details[++$i])): ?>
+ <td class="gEven">
+ <?= $details[$i]["caption"] ?>
+ </td>
+ <td class="gOdd">
+ <?= $details[$i]["value"] ?>
+ </td>
+ <? else: ?>
+ <td class="gEven"></td><td class="gOdd"></td>
+ <? endif ?>
+ </tr>
+ <? endfor ?>
+ </tbody>
+ </table>
</div>