diff --git a/photologue/static/lightgallery/css/lightgallery.css b/photologue/static/lightgallery/css/lightgallery.css
index d74d81f..fd98e44 100644
--- a/photologue/static/lightgallery/css/lightgallery.css
+++ b/photologue/static/lightgallery/css/lightgallery.css
@@ -719,3 +719,7 @@ body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object
right: 0;
left: 0;
}
+
+.lg-toolbar .lg-bi-icon {
+ padding: 5px 0 !important;
+}
diff --git a/photologue/static/lightgallery/plugins/admin/lg-admin.js b/photologue/static/lightgallery/plugins/admin/lg-admin.js
index 890c983..44a3b04 100644
--- a/photologue/static/lightgallery/plugins/admin/lg-admin.js
+++ b/photologue/static/lightgallery/plugins/admin/lg-admin.js
@@ -13,20 +13,20 @@ class lgAdmin {
}
init() {
- const adminIcon = "";
- const deleteIcon = "";;
- const reportIcon = "";
+ const adminIcon = "";
+ const deleteIcon = "";;
+ const reportIcon = "";
// Add button linking to Django admin page
- this.core.$toolbar.append(`${adminIcon}`);
+ this.core.$toolbar.append(`${adminIcon}`);
document.getElementById("lg-admin").style.display = this.isStaff ? 'block' : 'none';
// Add button to delete photo
- this.core.$toolbar.append(`${deleteIcon}`);
+ this.core.$toolbar.append(`${deleteIcon}`);
document.getElementById("lg-delete").style.display = this.isStaff ? 'block' : 'none';
// Add button to report photo
- this.core.$toolbar.append(`${reportIcon}`);
+ this.core.$toolbar.append(`${reportIcon}`);
this.core.LGel.on("lgAfterSlide.admin", this.onAfterSlide.bind(this));
}