add fear tracker options

This commit is contained in:
CPTN Cosmo 2026-07-12 02:12:09 +02:00
parent e020a4efd7
commit 7a20b05c76
3 changed files with 425 additions and 11 deletions

View file

@ -103,3 +103,77 @@
border: 1px solid var(--golden, #c5a45e) !important;
box-shadow: 0 0 5px rgba(197, 164, 94, 0.5) !important;
}
/* Fear Tracker Window Customizations */
#resources.cosmo-no-title-bar header.window-header {
display: none !important;
}
#resources.cosmo-no-title-bar {
min-height: 4rem !important;
}
#resources.cosmo-position-locked .window-resize-handle {
display: none !important;
}
/* Context menu styling */
.cosmo-fear-context-menu {
background: rgba(24, 22, 46, 0.95);
backdrop-filter: blur(10px);
border: 2px solid rgb(153, 122, 79);
border-radius: 6px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
padding: 4px 0;
min-width: 150px;
font-family: inherit;
}
.cosmo-context-menu-list {
list-style: none;
margin: 0;
padding: 0;
}
.cosmo-context-menu-item {
padding: 8px 12px;
color: #d3d3d3;
font-size: 13px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: background-color 0.2s, color 0.2s;
}
.cosmo-context-menu-item:hover {
background-color: rgba(197, 164, 94, 0.2);
color: #ffffff;
}
.cosmo-context-menu-item i {
width: 16px;
text-align: center;
}
/* Reset button styling */
button.cosmo-reset-fear-pos-btn {
background: rgba(197, 164, 94, 0.1);
border: 1px solid rgb(153, 122, 79);
color: #d3d3d3;
padding: 4px 12px;
border-radius: 4px;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-family: inherit;
transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
button.cosmo-reset-fear-pos-btn:hover {
background: rgba(197, 164, 94, 0.25);
border-color: #ffffff;
color: #ffffff;
}