Style PopupsNextcloudFiles view

This commit is contained in:
the-djmaze 2022-11-10 15:26:35 +01:00
parent 3c78f9bf04
commit efbc7563ac
4 changed files with 18 additions and 4 deletions

View file

@ -155,7 +155,6 @@ const
btn.name = 'select';
btn.textContent = 'select';
btn.className = 'button-vue';
btn.style.marginLeft = '1em';
summary.append(btn);
summary.item_name = item.name;
}
@ -179,21 +178,18 @@ const
btn.name = 'select';
btn.textContent = 'select';
btn.className = 'button-vue';
btn.style.marginLeft = '1em';
li.append(btn);
btn = document.createElement('button');
btn.name = 'share-internal';
btn.textContent = '🔗 internal';
btn.className = 'button-vue';
btn.style.marginLeft = '1em';
li.append(btn);
/*
btn = document.createElement('button');
btn.name = 'share-public';
btn.textContent = '🔗 public';
btn.className = 'button-vue';
btn.style.marginLeft = '1em';
li.append(btn);
*/
parent.append(li);