diff --git a/templates/2k11/admin/entries.tpl b/templates/2k11/admin/entries.tpl
index 3faebf72..29b5ee49 100644
--- a/templates/2k11/admin/entries.tpl
+++ b/templates/2k11/admin/entries.tpl
@@ -15,6 +15,12 @@
+
{$CONST.CATEGORIES}
diff --git a/templates/2k11/admin/serendipity_editor.js.tpl b/templates/2k11/admin/serendipity_editor.js.tpl
index 04c29945..24c7221b 100644
--- a/templates/2k11/admin/serendipity_editor.js.tpl
+++ b/templates/2k11/admin/serendipity_editor.js.tpl
@@ -1073,7 +1073,7 @@ $(function() {
// Show category selector
{if $use_popups}
if($('#serendipityEntry').length > 0) {
- $('#select_category').click(function(e) {
+ $('#select_category, #category_list').click(function(e) {
$('#edit_entry_category').toggleClass('mfp-hide');
$('#toggle_metadata').click();
});
@@ -1091,6 +1091,10 @@ $(function() {
}
}
});
+
+ $('#category_list').click(function(e) {
+ $('#select_category').trigger('click');
+ });
}
{/if}
diff --git a/templates/2k11/admin/style.css b/templates/2k11/admin/style.css
index 83801ec8..775128c8 100644
--- a/templates/2k11/admin/style.css
+++ b/templates/2k11/admin/style.css
@@ -1660,14 +1660,18 @@ form > .button_link:first-of-type,
padding-bottom: .583335em;
}
+#category_list:hover {
+ cursor: pointer;
+}
+
#category_list h3 {
float: left;
line-height: 1.5em;
- margin: 0 2em .75em 0;
+ margin: .375em 2em .375em 0;
}
#category_list ul {
- margin: 0 0 .75em;
+ margin: .375em 0;
line-height: 1.5em;
}