mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-17 07:19:54 -04:00
Fix outstanding issues in the organize dialog. Tighten up the layout a bit so that more microthumbs will display.
This commit is contained in:
@@ -7,35 +7,31 @@
|
||||
</script>
|
||||
<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>
|
||||
<div class="g-first g-left">
|
||||
<h3><?= t("Albums") ?></h3>
|
||||
</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 id="g-organize-content-pane">
|
||||
<div id="g-organize-tree-container" class="g-left ui-helper-clearfix">
|
||||
<h3><?= t("Albums") ?></h3>
|
||||
<ul id="g-organize-album-tree">
|
||||
<?= $album_tree ?>
|
||||
</ul>
|
||||
</div>
|
||||
<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 ?>
|
||||
<div id="g-organize-detail" class="g-left ui-helper-clearfix">
|
||||
<div id="g-organize-microthumb-panel"
|
||||
ref="<?= url::site("organize/album/__ITEM_ID__/__OFFSET__") ?>">
|
||||
<div id="g-action-status" class="g-message-block g-info">
|
||||
<?= t("Drag and drop photos to re-order or move between albums") ?>
|
||||
</div>
|
||||
<ul id="g-organize-microthumb-grid">
|
||||
<?= $micro_thumb_grid ?>
|
||||
</ul>
|
||||
</div>
|
||||
<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">
|
||||
<?= $micro_thumb_grid ?>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="g-organize-controls">
|
||||
<a id="g-organize-close" href="#" ref="done"
|
||||
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) ?>
|
||||
<?= form::dropdown(array("id" => "g-organize-sort-order"), array("ASC" => "Ascending", "DESC" => "Descending"), $album->sort_order) ?>
|
||||
</form>
|
||||
</div>
|
||||
<div id="g-organize-controls">
|
||||
<a id="g-organize-close" href="#" ref="done"
|
||||
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) ?>
|
||||
<?= form::dropdown(array("id" => "g-organize-sort-order"), array("ASC" => "Ascending", "DESC" => "Descending"), $album->sort_order) ?>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user