Removed YUI grids. Added g- prefix to selected class. Layout almost completely restored, still need to fix action-status message box

This commit is contained in:
Chad Kieffer
2009-10-28 23:34:53 -06:00
parent db35107daf
commit 66e1e32f34
4 changed files with 22 additions and 29 deletions

View File

@@ -8,21 +8,19 @@
<div id="g-organize" class="g-dialog-panel">
<h1 style="display:none"><?= t("Organize %name", array("name" => html::purify($album->title))) ?></h1>
<div id="bd">
<div class="yui-gf">
<div class="yui-u g-first">
<div>
<div class="g-first g-left">
<h3><?= t("Albums") ?></h3>
</div>
<div id="g-action-status" class="g-message-block yui-u">
<div class="g-info"><?= t("Drag and drop photos to re-order or move between albums") ?></div>
</div>
<div id="g-action-status" class="g-message-block g-info"><?= t("Drag and drop photos to re-order or move between albums") ?></div>
</div>
<div id="g-organize-content-pane" class="yui-gf">
<div id="g-organize-tree-container" class="yui-u g-first">
<ul id="g-organize-album-tree">
<div id="g-organize-content-pane">
<div id="g-organize-tree-container" class="g-first g-left">
<h3><?= t("Albums") ?></h3><ul id="g-organize-album-tree">
<?= $album_tree ?>
</ul>
</div>
<div id="g-organize-detail" class="yui-u">
<div id="g-organize-detail">
<div id="g-organize-microthumb-panel"
ref="<?= url::site("organize/album/__ITEM_ID__/__OFFSET__") ?>">
<ul id="g-organize-microthumb-grid">
@@ -31,7 +29,7 @@
</div>
<div id="g-organize-controls">
<a id="g-organize-close" href="#" ref="done"
class="g-button ui-corner-all ui-state-default"><?= t("Close") ?></a>
class="g-button g-right ui-corner-all ui-state-default"><?= t("Close") ?></a>
<form>
<?= t("Sort order") ?>
<?= form::dropdown(array("id" => "g-organize-sort-column"), album::get_sort_order_options(), $album->sort_column) ?>