diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-04-10 05:40:56 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-04-10 05:40:56 +0000 |
commit | 9f488446d9dde9e485da2287a81fa14df1c5af0d (patch) | |
tree | afc8b1f6ae900b2e5705a9744c6e1c825fc67d85 | |
parent | 91bc1292da0c4e01c475272a64030bb8097367b0 (diff) |
Fix up microthumb grid, changed unselect to deselect all, white space fixes.
-rw-r--r-- | modules/organize/css/organize.css | 8 | ||||
-rw-r--r-- | modules/organize/views/organize.html.php | 2 | ||||
-rw-r--r-- | modules/organize/views/organize_thumb_grid.html.php | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index 725cc338..c6c052bc 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -14,6 +14,10 @@ margin-left: -1em !important; } +#gMicroThumbGrid li div div { + float: left; +} + #gMicroThumbContainer #gMicroThumbGrid { margin: 0; } @@ -90,7 +94,7 @@ #gOrganizeFormThumbs { padding: .5em; - height: 7em; + height: 7em; overflow: hidden; } @@ -116,5 +120,3 @@ .gOrganizeReorderDropTargetHover { visibility: visible; } - - diff --git a/modules/organize/views/organize.html.php b/modules/organize/views/organize.html.php index bac61df5..5f26603e 100644 --- a/modules/organize/views/organize.html.php +++ b/modules/organize/views/organize.html.php @@ -15,7 +15,7 @@ <div id="yui-main"> <div class="yui-b"> <a id="gMicroThumbSelectAll" href="#"><?= t("select all") ?></a> - <a id="gMicroThumbUnselectAll" href="#" style="display: none"><?= t("unselect all") ?></a> + <a id="gMicroThumbUnselectAll" href="#" style="display: none"><?= t("deselect all") ?></a> <div id="gMicroThumbContainer" class="yui-u first" ref="<?= url::site("organize/content/__ITEM_ID__?width=__WIDTH__&height=__HEIGHT__&offset=__OFFSET__") ?>"> <ul id="gMicroThumbGrid"> diff --git a/modules/organize/views/organize_thumb_grid.html.php b/modules/organize/views/organize_thumb_grid.html.php index 1f63f034..cdfd00bb 100644 --- a/modules/organize/views/organize_thumb_grid.html.php +++ b/modules/organize/views/organize_thumb_grid.html.php @@ -9,12 +9,10 @@ <? endif ?> <li> <div> - <div class="gOrganizeReorderDropTarget" ref="<?= $child->id ?>"> - </div> - <div id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>"> - <?= $child->thumb_tag(array("class" => "gThumbnail"), $thumbsize, true) ?> - </div> + <div class="gOrganizeReorderDropTarget" ref="<?= $child->id ?>"> </div> + <div id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>"> + <?= $child->thumb_tag(array("class" => "gThumbnail"), $thumbsize, true) ?> </div> + </div> </li> <? endforeach ?> - |