DeletePost

This commit is contained in:
2026-01-28 21:22:51 +11:00
parent a7669d9014
commit 6262023aa9
2 changed files with 443 additions and 324 deletions

View File

@@ -600,6 +600,57 @@ p {
margin-right: 5px;
}
/* Options Menu */
.post-header {
position: relative;
/* Context for menu */
}
.options-menu {
position: absolute;
top: 40px;
right: 15px;
background: rgba(20, 20, 22, 0.95);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
border-radius: var(--radius-sm);
padding: 5px;
z-index: 10;
min-width: 120px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
display: none;
}
.options-menu.active {
display: block;
animation: fadeIn 0.2s ease-out;
}
.menu-btn {
width: 100%;
background: none;
border: none;
padding: 10px 15px;
text-align: left;
color: var(--text-main);
font-size: 14px;
cursor: pointer;
border-radius: 8px;
transition: background 0.2s;
display: flex;
align-items: center;
gap: 8px;
}
.menu-btn:hover {
background: rgba(255, 255, 255, 0.05);
}
.menu-btn.delete {
color: #EF4444;
}
/* Bottom Navigation */
.bottom-nav {
position: fixed;