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.

This commit is contained in:
Chad Kieffer
2009-10-04 00:27:22 -06:00
parent 9145331fd4
commit 3e6ba7acc3
148 changed files with 1277 additions and 1316 deletions
@@ -4,11 +4,11 @@
var START_URL = "<?= url::site("server_add/start?item_id={$item->id}&csrf=$csrf") ?>";
</script>
<div id="gServerAdd">
<div id="g-server-add">
<h1 style="display: none;"><?= t("Add Photos to '%title'", array("title" => html::purify($item->title))) ?></h1>
<p id="gDescription"><?= t("Photos will be added to album:") ?></p>
<ul class="gBreadcrumbs">
<p id="g-description"><?= t("Photos will be added to album:") ?></p>
<ul class="g-breadcrumbs">
<? foreach ($item->parents() as $parent): ?>
<li>
<?= html::purify($parent->title) ?>
@@ -19,35 +19,35 @@
</li>
</ul>
<ul id="gServerAddTree" class="gCheckboxTree">
<ul id="g-server-add-tree" class="g-checkbox-tree">
<?= $tree ?>
</ul>
<div id="gServerAddProgress" style="display: none">
<div class="gProgressBar"></div>
<div id="gStatus"></div>
<div id="g-server-add-progress" style="display: none">
<div class="g-progress-bar"></div>
<div id="g-status"></div>
</div>
<span>
<button id="gServerAddAddButton" class="ui-state-default ui-state-disabled ui-corner-all"
<button id="g-server-add-add-button" class="ui-state-default ui-state-disabled ui-corner-all"
disabled="disabled">
<?= t("Add") ?>
</button>
<button id="gServerAddPauseButton" class="ui-state-default ui-corner-all" style="display:none">
<button id="g-server-add-pause-button" class="ui-state-default ui-corner-all" style="display:none">
<?= t("Pause") ?>
</button>
<button id="gServerAddContinueButton" class="ui-state-default ui-corner-all" style="display:none">
<button id="g-server-add-continue-button" class="ui-state-default ui-corner-all" style="display:none">
<?= t("Continue") ?>
</button>
<button id="gServerAddCloseButton" class="ui-state-default ui-corner-all">
<button id="g-server-addCloseButton" class="ui-state-default ui-corner-all">
<?= t("Close") ?>
</button>
</span>
<script type="text/javascript">
$("#gServerAdd").ready(function() {
$("#gServerAdd").gallery_server_add();
$("#g-server-add").ready(function() {
$("#g-server-add").gallery_server_add();
});
</script>