summaryrefslogtreecommitdiff
path: root/modules/exif/views/exif_dialog.html.php
diff options
context:
space:
mode:
authorChad Kieffer <ckieffer@gmail.com>2009-10-04 00:27:22 -0600
committerChad Kieffer <ckieffer@gmail.com>2009-10-04 00:27:22 -0600
commit3e6ba7acc3291f2268cbe9c9bef0a492b557babb (patch)
tree079c1bd09ab1cfcf35524f2e541c586a95f205e4 /modules/exif/views/exif_dialog.html.php
parent9145331fd420ec3fe86833a7b9567ec42f1d84e8 (diff)
Renamed most, if not all css selectors from gName to g-name. Moved a few shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
Diffstat (limited to 'modules/exif/views/exif_dialog.html.php')
-rw-r--r--modules/exif/views/exif_dialog.html.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/exif/views/exif_dialog.html.php b/modules/exif/views/exif_dialog.html.php
index 11d1e212..b50eea1d 100644
--- a/modules/exif/views/exif_dialog.html.php
+++ b/modules/exif/views/exif_dialog.html.php
@@ -1,30 +1,30 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
-<style>
- #gExifData {font-size: .85em;}
- .gOdd {background: #BDD2FF;}
- .gEven {background: #DFEFFC;}
+<style type="text/css">
+ #g-exif-data { font-size: .85em; }
+ .g-odd { background: #bdd2ff; }
+ .g-even { background: #dfeffc; }
</style>
<h1 style="display: none;"><?= t("Photo Detail") ?></h1>
-<div id="gExifData">
- <table class="gMetadata" >
+<div id="g-exif-data">
+ <table class="g-metadata" >
<tbody>
<? for ($i = 0; $i < count($details); $i++): ?>
<tr>
- <td class="gEven">
+ <td class="g-even">
<?= $details[$i]["caption"] ?>
</td>
- <td class="gOdd">
+ <td class="g-odd">
<?= html::clean($details[$i]["value"]) ?>
</td>
<? if (!empty($details[++$i])): ?>
- <td class="gEven">
+ <td class="g-even">
<?= $details[$i]["caption"] ?>
</td>
- <td class="gOdd">
+ <td class="g-odd">
<?= html::clean($details[$i]["value"]) ?>
</td>
<? else: ?>
- <td class="gEven"></td><td class="gOdd"></td>
+ <td class="g-even"></td><td class="g-odd"></td>
<? endif ?>
</tr>
<? endfor ?>