Enhance: Non-destructive metadata system, Korean support, and UI readability

This commit is contained in:
leeyj
2026-04-18 03:39:14 +09:00
parent c0dbeb8f18
commit 828ec07b94
5 changed files with 55 additions and 50 deletions
+12 -2
View File
@@ -65,8 +65,18 @@
/* Links & Actions */
.memo-backlinks { margin-top: 12px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: var(--muted); }
.link-item { color: var(--accent); cursor: pointer; text-decoration: none; font-weight: 600; }
.link-item:hover { text-decoration: underline; }
.link-item, .internal-link, .memo-content a {
color: #fbbf24; /* 고대비 Amber 색상 */
cursor: pointer;
text-decoration: none;
font-weight: 600;
transition: color 0.2s, opacity 0.2s;
}
.link-item:hover, .internal-link:hover, .memo-content a:hover {
color: #f59e0b;
text-decoration: underline;
}
.memo-actions { position: absolute; bottom: 10px; right: 10px; opacity: 0; transition: opacity 0.2s; display: flex; gap: 5px; }
.memo-card:hover .memo-actions { opacity: 1; }