diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-15 22:55:09 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-15 22:55:09 -0700 |
commit | fb2c365d8fdaa6941b61edac26df2f3550822e6e (patch) | |
tree | 5b5037515e7a17561e3895094b0c31bd312bbaa6 /modules/organize/js | |
parent | dcfa74e2d9084a4dd9ac56333c47d6fdbee46707 (diff) |
Fix outstanding issues in the organize dialog. Tighten up the layout a bit so that more microthumbs will display.
Diffstat (limited to 'modules/organize/js')
-rw-r--r-- | modules/organize/js/organize.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/organize/js/organize.js b/modules/organize/js/organize.js index e8e09acd..a7fe1ad2 100644 --- a/modules/organize/js/organize.js +++ b/modules/organize/js/organize.js @@ -122,7 +122,7 @@ mouse_move_handler: function(event) { if ($(".g-drag-helper").length) { - $(".g-organize-microthumb-grid-cell").css({borderStyle: "hidden", margin: "4px"}); + $(".g-organize-microthumb-grid-cell").css({borderStyle: "hidden", margin: "6px"}); $(".currentDropTarget").removeClass("currentDropTarget"); var borderStyle = event.pageX < $(this).offset().left + $(this).width() / 2 ? {borderLeftStyle: "solid", marginLeft: "2px"} : {borderRightStyle: "solid", marginRight: "2px"}; @@ -141,8 +141,8 @@ $("#g-dialog").dialog("option", "zIndex", 70); $("#g-dialog").bind("dialogopen", function(event, ui) { $("#g-organize").height($("#g-dialog").innerHeight() - 20); - $("#g-organize-microthumb-panel").height($("#g-dialog").innerHeight() - 90); - $("#g-organize-tree-container").height($("#g-dialog").innerHeight() - 59); + $("#g-organize-microthumb-grid").height($("#g-dialog").innerHeight() - 91); + $("#g-organize-tree-container").height($("#g-dialog").innerHeight() - 60); }); $("#g-dialog").bind("dialogclose", function(event, ui) { |