Add comment threading and fix fetch authentication
- Add comment threading/reply functionality with nested display - Database migration for parent_comment_id and thread_depth columns - Recursive comment rendering with depth-based indentation - Reply form with inline UI and smooth animations - Thread collapse/expand capability - Max thread depth of 3 levels - Fix 401 authentication errors on API calls - Add credentials: 'same-origin' to all fetch calls - Affects settings.js, ticket.js, dashboard.js, advanced-search.js - Ensures session cookies are sent with requests - Enhanced comment styling - Thread connector lines for visual hierarchy - Reply button on comments (up to depth 3) - Quote block styling for replies Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -160,6 +160,215 @@ body::after {
|
||||
100% { content: '10101010'; opacity: 0.1; }
|
||||
}
|
||||
|
||||
/* ===== ENHANCED TERMINAL ANIMATIONS ===== */
|
||||
|
||||
/* Typing cursor effect for focused inputs */
|
||||
input:focus::placeholder,
|
||||
textarea:focus::placeholder {
|
||||
animation: typing-cursor 1s steps(1) infinite;
|
||||
}
|
||||
|
||||
@keyframes typing-cursor {
|
||||
0%, 50% { opacity: 1; }
|
||||
51%, 100% { opacity: 0; }
|
||||
}
|
||||
|
||||
/* Glowing border pulse on focus */
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
animation: focus-pulse 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes focus-pulse {
|
||||
0%, 100% { box-shadow: var(--glow-amber), inset 0 0 10px rgba(0, 0, 0, 0.5); }
|
||||
50% { box-shadow: var(--glow-amber-intense), inset 0 0 10px rgba(0, 0, 0, 0.5); }
|
||||
}
|
||||
|
||||
/* Boot-up fade in effect */
|
||||
@keyframes boot-up {
|
||||
0% {
|
||||
opacity: 0;
|
||||
filter: brightness(2) saturate(0);
|
||||
}
|
||||
30% {
|
||||
opacity: 1;
|
||||
filter: brightness(1.5) saturate(0.5);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
filter: brightness(1) saturate(1);
|
||||
}
|
||||
}
|
||||
|
||||
.ascii-frame-outer {
|
||||
animation: boot-up 0.8s ease-out;
|
||||
}
|
||||
|
||||
/* Phosphor text glow on important elements */
|
||||
.stat-value,
|
||||
.ticket-id,
|
||||
h1, h2, h3 {
|
||||
text-shadow: 0 0 2px currentColor, 0 0 4px currentColor;
|
||||
}
|
||||
|
||||
/* Enhanced link hover with underline animation */
|
||||
a:not(.btn) {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not(.btn)::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 1px;
|
||||
background: currentColor;
|
||||
box-shadow: 0 0 5px currentColor;
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
a:not(.btn):hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Matrix-style rain effect on hover for stats */
|
||||
.stat-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(180deg,
|
||||
transparent 0%,
|
||||
rgba(0, 255, 65, 0.03) 50%,
|
||||
transparent 100%
|
||||
);
|
||||
background-size: 100% 200%;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.stat-card:hover::before {
|
||||
opacity: 1;
|
||||
animation: matrix-rain 2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes matrix-rain {
|
||||
0% { background-position: 0 -100%; }
|
||||
100% { background-position: 0 100%; }
|
||||
}
|
||||
|
||||
/* Smooth table row selection animation */
|
||||
tbody tr {
|
||||
transition: all 0.2s ease;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
tbody tr::before {
|
||||
content: '>';
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
opacity: 0;
|
||||
color: var(--terminal-green);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
tbody tr:hover::before {
|
||||
opacity: 1;
|
||||
left: -15px;
|
||||
}
|
||||
|
||||
/* Button press effect */
|
||||
.btn {
|
||||
transition: all 0.15s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.btn::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 0;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
transition: width 0.4s, height 0.4s;
|
||||
}
|
||||
|
||||
.btn:active::before {
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
/* Terminal cursor blink for active/selected elements */
|
||||
.keyboard-selected td:first-child::before {
|
||||
content: '█';
|
||||
position: absolute;
|
||||
left: -25px;
|
||||
animation: cursor-blink 0.8s steps(1) infinite;
|
||||
color: var(--terminal-green);
|
||||
}
|
||||
|
||||
@keyframes cursor-blink {
|
||||
0%, 50% { opacity: 1; }
|
||||
51%, 100% { opacity: 0; }
|
||||
}
|
||||
|
||||
/* Neon glow effect for priority badges */
|
||||
.priority-badge {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.priority-badge::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -2px;
|
||||
border-radius: inherit;
|
||||
background: inherit;
|
||||
filter: blur(6px);
|
||||
opacity: 0.4;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
/* Smooth scrollbar styling */
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: var(--bg-primary);
|
||||
border: 1px solid var(--terminal-green);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: var(--terminal-green);
|
||||
box-shadow: 0 0 5px var(--terminal-green);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: var(--terminal-amber);
|
||||
box-shadow: 0 0 10px var(--terminal-amber);
|
||||
}
|
||||
|
||||
/* Firefox scrollbar */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: var(--terminal-green) var(--bg-primary);
|
||||
}
|
||||
|
||||
body.menu-open {
|
||||
padding-left: 260px;
|
||||
}
|
||||
@@ -711,6 +920,148 @@ h1 {
|
||||
100% { content: '|]'; }
|
||||
}
|
||||
|
||||
/* ===== SKELETON LOADING SCREENS ===== */
|
||||
.skeleton {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background: linear-gradient(90deg,
|
||||
rgba(0, 255, 65, 0.05) 0%,
|
||||
rgba(0, 255, 65, 0.1) 50%,
|
||||
rgba(0, 255, 65, 0.05) 100%
|
||||
);
|
||||
background-size: 200% 100%;
|
||||
animation: skeleton-shimmer 1.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes skeleton-shimmer {
|
||||
0% { background-position: 200% 0; }
|
||||
100% { background-position: -200% 0; }
|
||||
}
|
||||
|
||||
/* Skeleton text line */
|
||||
.skeleton-text {
|
||||
height: 1em;
|
||||
margin: 0.5em 0;
|
||||
border-radius: 0;
|
||||
border: 1px solid rgba(0, 255, 65, 0.2);
|
||||
}
|
||||
|
||||
.skeleton-text.short { width: 40%; }
|
||||
.skeleton-text.medium { width: 70%; }
|
||||
.skeleton-text.long { width: 90%; }
|
||||
|
||||
/* Skeleton table row */
|
||||
.skeleton-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 12px 8px;
|
||||
border-bottom: 1px solid rgba(0, 255, 65, 0.1);
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.skeleton-row .skeleton-cell {
|
||||
height: 1.2em;
|
||||
flex: 1;
|
||||
border: 1px solid rgba(0, 255, 65, 0.15);
|
||||
}
|
||||
|
||||
.skeleton-row .skeleton-cell:first-child { flex: 0 0 100px; }
|
||||
.skeleton-row .skeleton-cell:nth-child(2) { flex: 0 0 60px; }
|
||||
.skeleton-row .skeleton-cell:nth-child(3) { flex: 3; }
|
||||
|
||||
/* Skeleton stat card */
|
||||
.skeleton-stat {
|
||||
padding: 1rem;
|
||||
border: 2px solid rgba(0, 255, 65, 0.2);
|
||||
min-height: 80px;
|
||||
}
|
||||
|
||||
.skeleton-stat .skeleton-value {
|
||||
height: 2rem;
|
||||
width: 60%;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.skeleton-stat .skeleton-label {
|
||||
height: 1rem;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
/* Skeleton comment */
|
||||
.skeleton-comment {
|
||||
padding: 1rem;
|
||||
border: 1px solid rgba(0, 255, 65, 0.2);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.skeleton-comment-header {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.skeleton-avatar {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 0;
|
||||
border: 1px solid rgba(0, 255, 65, 0.2);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.skeleton-comment-meta {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* Terminal-style loading indicator */
|
||||
.loading-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 10, 2, 0.9);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 100;
|
||||
font-family: var(--font-mono);
|
||||
color: var(--terminal-green);
|
||||
}
|
||||
|
||||
.loading-overlay .loading-text {
|
||||
margin-top: 1rem;
|
||||
animation: blink-cursor 1s step-end infinite;
|
||||
}
|
||||
|
||||
.loading-overlay .loading-spinner {
|
||||
font-size: 2rem;
|
||||
animation: terminal-spin 0.5s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes terminal-spin {
|
||||
0% { content: '⠋'; }
|
||||
10% { content: '⠙'; }
|
||||
20% { content: '⠹'; }
|
||||
30% { content: '⠸'; }
|
||||
40% { content: '⠼'; }
|
||||
50% { content: '⠴'; }
|
||||
60% { content: '⠦'; }
|
||||
70% { content: '⠧'; }
|
||||
80% { content: '⠇'; }
|
||||
90% { content: '⠏'; }
|
||||
}
|
||||
|
||||
.loading-spinner::before {
|
||||
content: '⠋';
|
||||
animation: terminal-spin 0.8s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes blink-cursor {
|
||||
0%, 50% { opacity: 1; }
|
||||
51%, 100% { opacity: 0; }
|
||||
}
|
||||
|
||||
/* ===== MESSAGE STYLES ===== */
|
||||
.error-message {
|
||||
padding: 15px 20px;
|
||||
@@ -3324,19 +3675,59 @@ tr:hover .quick-actions {
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
padding: 1rem;
|
||||
background: var(--bg-secondary);
|
||||
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 255, 65, 0.03) 100%);
|
||||
border: 2px solid var(--terminal-green);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Corner accent */
|
||||
.stat-card::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: linear-gradient(135deg, transparent 50%, rgba(0, 255, 65, 0.1) 50%);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.stat-card:hover {
|
||||
border-color: var(--terminal-amber);
|
||||
box-shadow: var(--glow-amber);
|
||||
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 176, 0, 0.05) 100%);
|
||||
}
|
||||
|
||||
.stat-card:hover::after {
|
||||
background: linear-gradient(135deg, transparent 50%, rgba(255, 176, 0, 0.15) 50%);
|
||||
}
|
||||
|
||||
/* Critical stat card styling */
|
||||
.stat-card.stat-critical {
|
||||
border-color: var(--priority-1);
|
||||
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 77, 77, 0.08) 100%);
|
||||
}
|
||||
|
||||
.stat-card.stat-critical .stat-value {
|
||||
color: var(--priority-1);
|
||||
text-shadow: var(--glow-priority-1);
|
||||
animation: pulse-glow 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.stat-card.stat-critical::after {
|
||||
background: linear-gradient(135deg, transparent 50%, rgba(255, 77, 77, 0.15) 50%);
|
||||
}
|
||||
|
||||
.stat-icon {
|
||||
font-size: 1.5rem;
|
||||
opacity: 0.9;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.stat-card:hover .stat-icon {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.stat-content {
|
||||
|
||||
Reference in New Issue
Block a user