diff --git a/static/css/index.css b/static/css/index.css
index e54174e..7fa616d 100644
--- a/static/css/index.css
+++ b/static/css/index.css
@@ -138,7 +138,7 @@ button {
&>.label {
display: grid;
- grid-template-columns: min-content min-content 1fr;
+ grid-template-columns: repeat(4, min-content);
align-items: center;
padding: 5px 0px;
cursor: pointer;
@@ -149,6 +149,18 @@ button {
margin-right: 6px;
display: none;
}
+
+ img.create {
+ display: none;
+ height: 16px;
+ margin-left: 8px;
+ }
+
+ &:hover {
+ img.create {
+ display: block;
+ }
+ }
}
&>.subfolders {
diff --git a/static/js/dns.mjs b/static/js/dns.mjs
index 3148375..a4fe589 100644
--- a/static/js/dns.mjs
+++ b/static/js/dns.mjs
@@ -234,6 +234,7 @@ class Folder {
${firstLabel}${restLabels != '' ? '.' + restLabels : ''}
+