added portals, quest tracking, discord monitor etc etc

This commit is contained in:
erik 2025-06-23 19:26:44 +00:00
parent 72de9b0f7f
commit dffd295091
312 changed files with 4130 additions and 7 deletions

View file

@ -606,6 +606,30 @@ body.noselect, body.noselect * {
left: 0;
pointer-events: none;
}
#portals {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
}
.portal-icon {
position: absolute;
width: 6px;
height: 6px;
font-size: 6px;
line-height: 1;
transform: translate(-50%, -50%);
z-index: 50;
opacity: 0.9;
text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.portal-icon::before {
content: '🌀';
display: block;
}
.trail-path {
fill: none;
stroke-width: 2px;
@ -1304,6 +1328,25 @@ body.noselect, body.noselect * {
user-select: none;
}
.portal-toggle {
margin: 0 0 12px;
padding: 6px 12px;
background: var(--card);
border: 1px solid #9c4aff;
border-radius: 4px;
font-size: 0.9rem;
}
.portal-toggle input {
margin-right: 8px;
cursor: pointer;
}
.portal-toggle label {
cursor: pointer;
user-select: none;
}
/* Inventory search link styling */
.inventory-search-link {
margin: 0 0 12px;
@ -1389,6 +1432,34 @@ body.noselect, body.noselect * {
margin: -2px -4px;
}
.quest-status-link {
margin: 0 0 12px;
padding: 8px 12px;
background: var(--card);
border: 1px solid #ffab4a;
border-radius: 4px;
text-align: center;
}
.quest-status-link a {
color: #ffab4a;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
display: block;
cursor: pointer;
user-select: none;
transition: all 0.2s ease;
}
.quest-status-link a:hover {
color: #fff;
background: rgba(255, 171, 74, 0.1);
border-radius: 2px;
padding: 2px 4px;
margin: -2px -4px;
}
/* Sortable column styles for inventory tables */
.sortable {
cursor: pointer;