auto-git:
[change] renderer.js
This commit is contained in:
31
renderer.js
31
renderer.js
@@ -82,24 +82,23 @@ window.addEventListener('DOMContentLoaded', async () => {
|
|||||||
].join(' ');
|
].join(' ');
|
||||||
|
|
||||||
li.innerHTML = `
|
li.innerHTML = `
|
||||||
<div class="flex items-center space-x-2 overflow-hidden flex-1 min-w-0">
|
<div class="flex items-center space-x-2 overflow-hidden">
|
||||||
<svg ...></svg>
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
|
class="h-5 w-5 flex-shrink-0"
|
||||||
|
fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M3 7a2 2 0 012-2h4l2 2h6a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V7"/>
|
||||||
|
</svg>
|
||||||
<span class="truncate text-sm font-medium">${basename(folder)}</span>
|
<span class="truncate text-sm font-medium">${basename(folder)}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center space-x-1 ml-2">
|
<button class="remove-btn">
|
||||||
<button class="pause-play-btn hover:bg-gray-200 p-1 rounded" title="${isMonitoring ? 'Monitoring pausieren' : 'Monitoring starten'}">
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
${isMonitoring
|
class="h-5 w-5"
|
||||||
? `<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><rect x="6" y="5" width="4" height="14" rx="1" fill="currentColor"/><rect x="14" y="5" width="4" height="14" rx="1" fill="currentColor"/></svg>`
|
fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
: `<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><polygon points="7,5 19,12 7,19" fill="currentColor"/></svg>`
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
}
|
d="M6 18L18 6M6 6l12 12"/>
|
||||||
</button>
|
</svg>
|
||||||
<button class="remove-btn hover:bg-gray-200 p-1 rounded ml-1" title="Ordner entfernen">
|
</button>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
||||||
d="M6 18L18 6M6 6l12 12"/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
// play/pause Button korrekt initialisieren
|
// play/pause Button korrekt initialisieren
|
||||||
|
|||||||
Reference in New Issue
Block a user