summaryrefslogtreecommitdiff
path: root/modules/exif/views
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
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')
-rw-r--r--modules/exif/views/exif_dialog.html.php22
-rw-r--r--modules/exif/views/exif_sidebar.html.php5
2 files changed, 13 insertions, 14 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 ?>
diff --git a/modules/exif/views/exif_sidebar.html.php b/modules/exif/views/exif_sidebar.html.php
index 3c7bb517..04f72b02 100644
--- a/modules/exif/views/exif_sidebar.html.php
+++ b/modules/exif/views/exif_sidebar.html.php
@@ -1,7 +1,6 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
-<a id="gExifDataLink" href="<?= url::site("exif/show/{$item->id}") ?>" title="<?= t("Photo Details")->for_html_attr() ?>"
- class="g-dialogLink g-button ui-icon-left ui-state-default ui-corner-all">
+<a id="g-exif-data-link" href="<?= url::site("exif/show/{$item->id}") ?>" title="<?= t("Photo Details")->for_html_attr() ?>"
+ class="g-dialog-link g-button ui-icon-left ui-state-default ui-corner-all">
<span class="ui-icon ui-icon-info"></span>
<?= t("View more information") ?>
</a>
-