禁用默认右键

This commit is contained in:
YHH
2025-10-15 20:23:55 +08:00
parent 619abcbfbc
commit 171805debf
6 changed files with 94 additions and 19 deletions

View File

@@ -272,6 +272,24 @@
transform: translateX(-50%) translateY(0);
}
/* Scrollbar */
.console-content::-webkit-scrollbar {
width: 10px;
}
.console-content::-webkit-scrollbar-track {
background: var(--color-bg-elevated);
}
.console-content::-webkit-scrollbar-thumb {
background: var(--color-border-default);
border-radius: 5px;
}
.console-content::-webkit-scrollbar-thumb:hover {
background: var(--color-text-secondary);
}
@media (prefers-reduced-motion: reduce) {
.console-btn,
.console-filter-btn,