mirror of
https://github.com/lockfale/OSINT-Framework.git
synced 2026-09-10 03:37:45 +02:00
Add Notes and theme toggle buttons to desktop header (THE-120)
Move theme toggle from legend to header as "Light Mode"/"Dark Mode" button visible on both desktop and mobile. Add "Notes" button in header (desktop only; mobile keeps floating pill). Legend and notes content now load into a 400px slide-in side panel on desktop, matching the full-screen mobile overlay. Escape key closes notes panel. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
+126
-121
@@ -103,20 +103,51 @@ svg:active {
|
||||
}
|
||||
|
||||
#header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
font-size: var(--font-size-xl);
|
||||
font-weight: bold;
|
||||
top: 20px;
|
||||
text-align: center;
|
||||
color: var(--color-header);
|
||||
padding: var(--space-2) var(--space-4);
|
||||
}
|
||||
|
||||
#header-actions {
|
||||
position: absolute;
|
||||
right: var(--space-4);
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
display: flex;
|
||||
gap: var(--space-2);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#header-actions button {
|
||||
background: none;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-sm);
|
||||
color: var(--color-text-secondary);
|
||||
font-size: var(--font-size-sm);
|
||||
font-family: var(--font-family);
|
||||
padding: var(--space-1) var(--space-2);
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#header-actions button:hover {
|
||||
color: var(--color-text-primary);
|
||||
border-color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
.legend {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0;
|
||||
width: 330px;
|
||||
font-size: var(--font-size-sm);
|
||||
color: var(--color-legend);
|
||||
display: none;
|
||||
}
|
||||
|
||||
#notes-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.legend a {
|
||||
@@ -260,24 +291,97 @@ a {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Mobile theme toggle (hidden on desktop) */
|
||||
#mobile-theme-toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Mobile notes button (hidden on desktop) */
|
||||
/* Mobile floating notes button (hidden on desktop; header button used instead) */
|
||||
#mobile-notes-btn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Notes overlay (hidden on desktop) */
|
||||
/* Notes overlay */
|
||||
#notes-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 299;
|
||||
}
|
||||
|
||||
/* Notes panel (hidden on desktop) */
|
||||
#notes-overlay.visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Notes panel (desktop: side panel) */
|
||||
#notes-panel {
|
||||
display: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 400px;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
background: var(--color-surface);
|
||||
z-index: 300;
|
||||
transform: translateX(100%);
|
||||
transition: transform 250ms ease;
|
||||
will-change: transform;
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
#notes-panel.open {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
#notes-panel-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--space-4);
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#notes-panel-title {
|
||||
font-size: var(--font-size-lg);
|
||||
font-weight: bold;
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
#notes-panel-close {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
padding: 2px var(--space-1);
|
||||
border-radius: var(--radius-sm);
|
||||
}
|
||||
|
||||
#notes-panel-close:hover {
|
||||
color: var(--color-text-primary);
|
||||
background: var(--color-bg);
|
||||
}
|
||||
|
||||
#notes-panel-body {
|
||||
flex: 1;
|
||||
padding: var(--space-4);
|
||||
overflow-y: auto;
|
||||
font-size: var(--font-size-base);
|
||||
color: var(--color-text-primary);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
#notes-panel-body a {
|
||||
color: var(--color-node-stroke);
|
||||
}
|
||||
|
||||
#notes-panel-body h3 {
|
||||
margin-top: var(--space-4);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
#notes-panel-body h3:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* === Mobile responsive === */
|
||||
@@ -286,7 +390,6 @@ a {
|
||||
font-size: var(--font-size-lg);
|
||||
top: 0;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
padding: var(--space-2) var(--space-3);
|
||||
}
|
||||
|
||||
@@ -294,26 +397,13 @@ a {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mobile-theme-toggle {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
#header-actions {
|
||||
right: var(--space-3);
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: none;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-sm);
|
||||
color: var(--color-text-secondary);
|
||||
font-size: var(--font-size-sm);
|
||||
font-family: var(--font-family);
|
||||
padding: var(--space-1) var(--space-2);
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#mobile-theme-toggle:hover {
|
||||
color: var(--color-text-primary);
|
||||
border-color: var(--color-text-secondary);
|
||||
/* Hide desktop notes button on mobile (floating button used instead) */
|
||||
#header-notes-btn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#search-container {
|
||||
@@ -325,21 +415,12 @@ a {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* Hide legend and notes content on mobile */
|
||||
.legend {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#notes-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Maximize SVG tree viewport */
|
||||
svg {
|
||||
min-height: 60vh;
|
||||
}
|
||||
|
||||
/* Floating notes button */
|
||||
/* Floating notes button (mobile only) */
|
||||
#mobile-notes-btn {
|
||||
display: block;
|
||||
position: fixed;
|
||||
@@ -363,85 +444,9 @@ a {
|
||||
background: var(--color-bg);
|
||||
}
|
||||
|
||||
/* Notes overlay */
|
||||
#notes-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 299;
|
||||
}
|
||||
|
||||
#notes-overlay.visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Notes panel */
|
||||
/* Full-width notes panel on mobile */
|
||||
#notes-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: var(--color-surface);
|
||||
z-index: 300;
|
||||
transform: translateX(100%);
|
||||
transition: transform 250ms ease;
|
||||
will-change: transform;
|
||||
}
|
||||
|
||||
#notes-panel.open {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
#notes-panel-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--space-4);
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#notes-panel-title {
|
||||
font-size: var(--font-size-lg);
|
||||
font-weight: bold;
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
#notes-panel-close {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
padding: 2px var(--space-1);
|
||||
border-radius: var(--radius-sm);
|
||||
}
|
||||
|
||||
#notes-panel-close:hover {
|
||||
color: var(--color-text-primary);
|
||||
background: var(--color-bg);
|
||||
}
|
||||
|
||||
#notes-panel-body {
|
||||
flex: 1;
|
||||
padding: var(--space-4);
|
||||
overflow-y: auto;
|
||||
font-size: var(--font-size-base);
|
||||
color: var(--color-text-primary);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
#notes-panel-body h3 {
|
||||
margin-top: var(--space-4);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
#notes-panel-body h3:first-child {
|
||||
margin-top: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user