diff --git a/public/css/default.css b/public/css/default.css
index b8b7105a..91861752 100644
--- a/public/css/default.css
+++ b/public/css/default.css
@@ -536,19 +536,8 @@ a#previous_photo:hover, a#next_photo:hover {
margin-bottom: 0.75em;
margin-right: 0.75em;
}
-
-.photo_meta {
- background-color: var(--bs-body-bg);
- box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
-}
-.photo_meta li {
- padding: 0.6rem 1rem;
-}
-.photo_meta h4 {
- font-family: 'Coda', sans-serif;
- font-size: inherit;
- font-weight: bold;
- margin: 0;
+#sub_photo .tag-list .input-group-text {
+ color: inherit;
}
diff --git a/templates/PhotoPage.php b/templates/PhotoPage.php
index 83c9ebef..b74e4201 100644
--- a/templates/PhotoPage.php
+++ b/templates/PhotoPage.php
@@ -134,21 +134,21 @@ class PhotoPage extends Template
echo '
-
-
';
}
@@ -202,19 +202,16 @@ class PhotoPage extends Template
const newListItem = document.createElement("li");
newListItem.id = "tag-" + item.id_tag;
- const newLink = document.createElement("a");
- newLink.href = item.url;
- newLink.title = "View all posts tagged " + item.label;
- newListItem.appendChild(newLink);
-
const newInputGroup = document.createElement("div");
newInputGroup.className = "input-group";
- newLink.appendChild(newInputGroup);
+ newListItem.appendChild(newInputGroup);
- const newLabel = document.createElement("span");
- newLabel.className = "input-group-text";
- newLabel.textContent = item.label;
- newInputGroup.appendChild(newLabel);
+ const newLink = document.createElement("a");
+ newLink.className = "input-group-text";
+ newLink.href = item.url;
+ newLink.title = "View all posts tagged " + item.label;
+ newLink.textContent = item.label;
+ newInputGroup.appendChild(newLink);
const removeLink = document.createElement("a");
removeLink.className = "delete-tag btn btn-danger px-1";