summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2009-05-02 06:34:05 +0000
committerChad Kieffer <chad@2tbsp.com>2009-05-02 06:34:05 +0000
commiteb9162f6c425f41d8d4a862b093a8071dc1751e2 (patch)
treef30506f8fdac515d4f9694f147c582358b417522
parent88c0ede495ae14b010338d89e76a63ffc195d93c (diff)
Remove angled ends of edit drawer handle.
-rw-r--r--modules/organize/controllers/organize.php5
-rw-r--r--modules/organize/css/organize.css4
-rw-r--r--modules/organize/css/organize_edit_drawer.pngbin464 -> 0 bytes
-rw-r--r--modules/organize/views/organize.html.php2
4 files changed, 4 insertions, 7 deletions
diff --git a/modules/organize/controllers/organize.php b/modules/organize/controllers/organize.php
index 3059d8e9..baa7dc59 100644
--- a/modules/organize/controllers/organize.php
+++ b/modules/organize/controllers/organize.php
@@ -139,7 +139,10 @@ class Organize_Controller extends Controller {
$type = $task->get("type");
switch ($type) {
case "albumCover":
- $task->status = t("Album cover set");
+ $task->status = t("Album cover set for '%album'", array("album" => $item->title));
+ break;
+ case "delete":
+ $task->status = t("Selection deleted");
break;
case "move":
$task->status = t("Move to '%album' completed", array("album" => $item->title));
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css
index 8c36bcdc..368fa240 100644
--- a/modules/organize/css/organize.css
+++ b/modules/organize/css/organize.css
@@ -147,8 +147,6 @@
*/
#gOrganizeEditDrawer {
background-color: #13A;
- //float: left;
- //margin: 0 5% 10px;
width: 90%;
}
@@ -167,7 +165,6 @@
background-color: #FFF;
float: left;
height: 30px;
- //margin: 2px 0 0;
width: 15px;
}
@@ -199,7 +196,6 @@
background-position: -15px 0;
float: right;
height: 30px;
- //margin: 2px 0 0;
width: 15px;
}
diff --git a/modules/organize/css/organize_edit_drawer.png b/modules/organize/css/organize_edit_drawer.png
deleted file mode 100644
index 34735a00..00000000
--- a/modules/organize/css/organize_edit_drawer.png
+++ /dev/null
Binary files differ
diff --git a/modules/organize/views/organize.html.php b/modules/organize/views/organize.html.php
index 0b17a6ad..fd2caaa1 100644
--- a/modules/organize/views/organize.html.php
+++ b/modules/organize/views/organize.html.php
@@ -50,11 +50,9 @@
<?= $edit_form ?>
</div>
<div id="gOrganizeEditDrawerHandle">
- <div id="gOrganizeEditHandleLeft"></div>
<div id="gOrganizeEditHandleButtonsLeft">
<?= $button_pane ?>
</div>
- <div id="gOrganizeEditHandleRight"></div>
<div id="gOrganizeEditHandleButtonsRight">
<a id="gMicroThumbSelectAll" href="#" ref="select-all" class="gButtonLink ui-corner-all ui-state-default"><?= t("Select all") ?></a>
<a id="gMicroThumbUnselectAll" href="#" ref="unselect-all" style="display: none" class="gButtonLink ui-corner-all ui-state-default"><?= t("Deselect all") ?></a>