1
0

Add visual indicator for relocated folders and update commit logic to handle missing folders

This commit is contained in:
2025-05-25 03:01:36 +02:00
parent d78576056c
commit c8b8ac8dda
4 changed files with 98 additions and 24 deletions

View File

@@ -84,6 +84,23 @@
border-style: solid !important;
border-color: gold !important;
}
.needs-relocation {
opacity: 0.5;
pointer-events: auto; /* Wichtig: trotzdem klickbar lassen! */
position: relative;
}
.needs-relocation::after {
content: "!";
color: #e11d48;
font-weight: bold;
font-size: 1.2em;
position: absolute;
left: 8px;
top: 8px;
background: #fff1f2;
border-radius: 50%;
padding: 0 5px;
}
#currentTitle {
/* erlauben, dass der Text umbricht */
@@ -211,11 +228,11 @@
<!-- Interaction Bar -->
<div class="w-full h-16 flex items-center p-4 interaction-bar"
style="background: var(--bg-sidebar); border-top: 1px solid var(--border)">
<button id="commitBtn"
<!--<button id="commitBtn"
class="ml-auto px-4 py-2 border rounded font-semibold"
style="background: var(--accent); color: #fff; border-color: var(--border)">
Commit
</button>
</button>-->
</div>
<script src="renderer.js"></script>