Auto-commited changes

This commit is contained in:
2026-03-18 19:58:05 +01:00
parent 4355fa78fa
commit 2b8659499a
4 changed files with 115 additions and 30 deletions

View File

@@ -34,10 +34,11 @@
<span id="page-title" class="page-title font-semibold text-gray-800 dark:text-gray-200 truncate max-w-[180px]">Clip to Memos</span>
</div>
<div class="header-actions flex space-x-1">
<button id="mode-toggle" class="icon-btn p-1.5 rounded hover:bg-gray-100 text-gray-500 transition" title="Switch clip mode">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="15" height="15">
<button id="mode-toggle" class="mode-btn flex items-center space-x-1 px-2 py-1 rounded hover:bg-gray-100 dark:hover:bg-gray-800 text-gray-500 transition text-xs" title="Switch clip mode">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="13" height="13">
<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"/>
</svg>
<span id="mode-label">Full page</span>
</button>
<button id="settings-btn" class="icon-btn p-1.5 rounded hover:bg-gray-100 text-gray-500 transition" title="Settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="15" height="15">
@@ -78,6 +79,14 @@
<div id="images-list"></div>
</div>
<!-- options row -->
<div id="options-row">
<label class="toggle-label" title="Remove hyperlinks from the clipped text, keeping only the link labels">
<input type="checkbox" id="strip-links" />
strip links
</label>
</div>
<!-- tag input -->
<div id="tags-row">
<input id="tags-input" type="text" placeholder="#tag1 #tag2 …" spellcheck="false" />
@@ -124,7 +133,7 @@
</div>
</div>
<script src="/marked.min.js" type="module"></script>
<script src="/marked.min.js"></script>
<script src="/popup.js" type="module"></script>
</body>
</html>