@howssatoshi/quantumcss 1.11.1 → 1.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -71,6 +71,24 @@
71
71
  display: none;
72
72
  }
73
73
 
74
+ .top-nav-actions {
75
+ gap: 0.5rem;
76
+ flex-wrap: wrap;
77
+ justify-content: flex-end;
78
+ }
79
+
80
+ .top-nav {
81
+ flex-wrap: wrap;
82
+ gap: 0.5rem;
83
+ }
84
+ .top-nav > div:first-child {
85
+ flex: 1 1 100%;
86
+ min-width: 0;
87
+ }
88
+ .breadcrumb {
89
+ flex-wrap: wrap;
90
+ }
91
+
74
92
  .app-layout {
75
93
  grid-template-columns: 1fr;
76
94
  }
@@ -82,12 +100,6 @@
82
100
  table {
83
101
  min-width: 800px;
84
102
  }
85
-
86
- .page-header {
87
- flex-direction: column;
88
- align-items: flex-start;
89
- gap: 1rem;
90
- }
91
103
  }
92
104
 
93
105
  /* Animations */
@@ -324,9 +324,15 @@
324
324
  }
325
325
 
326
326
  .page-header {
327
- flex-direction: row;
328
- align-items: center;
329
- gap: 1.5rem;
327
+ flex-wrap: wrap;
328
+ align-items: flex-start;
329
+ gap: 1rem;
330
+ }
331
+ .page-header > div:first-child {
332
+ flex: 1 1 100%;
333
+ }
334
+ .page-actions {
335
+ justify-content: flex-start;
330
336
  }
331
337
  }
332
338
 
@@ -401,17 +407,17 @@
401
407
  </nav>
402
408
 
403
409
  <div class="aside-nav-footer">
404
- <div class="aside-nav-user" onclick="toggleTheme()" style="cursor: pointer;" title="Click to Toggle Theme">
410
+ <div class="aside-nav-user">
405
411
  <div class="aside-nav-user-avatar">JD</div>
406
412
  <div class="aside-nav-user-info">
407
413
  <strong>John Doe</strong>
408
414
  <span>Admin Profile</span>
409
415
  </div>
410
- <div class="ml-auto aside-nav-user-action">
411
- <i class="q-icon-display opacity-50"></i>
412
- <i class="q-icon-sun sun-icon hidden opacity-50"></i>
413
- <i class="q-icon-moon moon-icon hidden opacity-50"></i>
414
- </div>
416
+ </div>
417
+ <div class="aside-nav-user-action" onclick="toggleTheme()" style="cursor: pointer;" title="Click to Toggle Theme">
418
+ <i class="q-icon-display opacity-50"></i>
419
+ <i class="q-icon-sun sun-icon hidden opacity-50"></i>
420
+ <i class="q-icon-moon moon-icon hidden opacity-50"></i>
415
421
  </div>
416
422
  </div>
417
423
  </aside>
@@ -13,6 +13,7 @@
13
13
  height: 100vh;
14
14
  background: var(--q-color-bg, #08081a);
15
15
  overflow: hidden;
16
+ position: relative;
16
17
  }
17
18
  .chat-sidebar {
18
19
  background: linear-gradient(180deg, color-mix(in srgb, var(--q-color-bg), white 2%) 0%, var(--q-color-bg) 100%);
@@ -67,13 +68,49 @@
67
68
  .theme-btn { width: 100%; display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: var(--q-color-surface); border: 1px solid var(--q-color-border); border-radius: 0.75rem; color: var(--q-text-primary, #f1f5f9); cursor: pointer; transition: all 0.2s ease; }
68
69
  .theme-btn:hover { background: var(--q-highlight-bg); }
69
70
  .theme-label { font-size: 0.875rem; font-weight: 500; }
71
+ .chat-sidebar-toggle { display: none; }
70
72
  html[data-theme="light"] { --bg-primary: var(--q-light-bg); --text-primary: var(--q-light-text); --text-secondary: var(--q-light-text-muted); --text-muted: var(--q-light-text-muted); }
71
73
  html[data-theme="light"] .message.received .message-bubble { background: #fff; border: 1px solid #e2e8f0; color: #0f172a; }
72
74
  html[data-theme="light"] .message.sent .message-bubble { background: var(--q-color-primary); color: #fff; }
73
- @media (max-width: 768px) { .chat-app { grid-template-columns: 1fr; } .chat-sidebar { display: none; } .message { max-width: 85%; } }
75
+ @media (max-width: 768px) {
76
+ .chat-app { grid-template-columns: 1fr; }
77
+ .chat-sidebar {
78
+ position: fixed;
79
+ left: 0;
80
+ top: 0;
81
+ bottom: 0;
82
+ width: 300px;
83
+ transform: translateX(-100%);
84
+ z-index: 200;
85
+ transition: transform 0.3s ease;
86
+ }
87
+ .chat-sidebar-toggle {
88
+ display: flex;
89
+ cursor: pointer;
90
+ padding: 0.5rem;
91
+ z-index: 10;
92
+ }
93
+ .sidebar-header {
94
+ padding: 1.25rem;
95
+ border-bottom: 1px solid var(--q-color-border);
96
+ display: flex;
97
+ flex-direction: column;
98
+ gap: 1rem;
99
+ }
100
+ .sidebar-header-top {
101
+ display: flex;
102
+ align-items: center;
103
+ justify-content: space-between;
104
+ }
105
+ #chat-sidebar-toggle:checked ~ .chat-app .chat-sidebar {
106
+ transform: translateX(0);
107
+ }
108
+ .message { max-width: 85%; }
109
+ }
74
110
  </style>
75
111
  </head>
76
112
  <body>
113
+ <input type="checkbox" id="chat-sidebar-toggle" class="hidden">
77
114
  <div class="chat-app">
78
115
  <aside class="chat-sidebar">
79
116
  <div class="sidebar-header">
@@ -175,9 +212,9 @@
175
212
  <button class="icon-btn icon-btn-circle">
176
213
  <i class="q-icon-video"></i>
177
214
  </button>
178
- <button class="icon-btn icon-btn-circle">
215
+ <label for="chat-sidebar-toggle" class="icon-btn icon-btn-circle" style="cursor: pointer;">
179
216
  <i class="q-icon-more-vertical"></i>
180
- </button>
217
+ </label>
181
218
  </div>
182
219
  </div>
183
220
  <div class="messages-container">
@@ -335,23 +335,36 @@ email-header {
335
335
  align-items: center;
336
336
  padding: 0 var(--side-padding);
337
337
  flex-shrink: 0;
338
+ gap: 1rem;
338
339
  }
339
340
  html[data-theme="light"] email-header {
340
341
  background: #f8fafc;
341
342
  }
342
343
  email-header .spacer {
343
- flex: 1;
344
+ flex: 0;
344
345
  }
345
346
  email-header .email-subject {
346
347
  font-size: 1.25rem;
347
348
  font-weight: 700;
348
349
  color: #f1f5f9;
349
350
  margin: 0;
351
+ flex: 1;
352
+ min-width: 0;
353
+ align-self: center;
354
+ line-height: 1.2;
350
355
  }
351
356
  html[data-theme="light"] email-header .email-subject {
352
357
  color: #0f172a;
353
358
  }
354
359
 
360
+ email-header actions {
361
+ display: flex;
362
+ align-items: center;
363
+ gap: 0.25rem;
364
+ flex-shrink: 0;
365
+ margin-left: auto;
366
+ }
367
+
355
368
  email-view {
356
369
  flex: 1;
357
370
  overflow-y: auto;
@@ -567,6 +580,8 @@ html[data-theme="light"] .nav-toggle i {
567
580
  transform: translateX(100%);
568
581
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
569
582
  width: 100vw;
583
+ display: flex;
584
+ flex-direction: column;
570
585
  }
571
586
 
572
587
  html[data-theme="light"] email-content {
@@ -579,4 +594,50 @@ html[data-theme="light"] .nav-toggle i {
579
594
  content-top-bar .mobile-back {
580
595
  display: flex;
581
596
  }
597
+
598
+ content-top-bar {
599
+ flex-wrap: wrap;
600
+ gap: 0.5rem;
601
+ padding: 0.5rem 0.75rem;
602
+ min-height: 60px;
603
+ max-height: none;
604
+ height: auto;
605
+ }
606
+ content-top-bar .mobile-back {
607
+ width: 100%;
608
+ flex-basis: 100%;
609
+ margin-bottom: 0.25rem;
610
+ }
611
+ content-top-bar user-cell {
612
+ flex: 1 1 calc(100% - 80px);
613
+ min-width: 150px;
614
+ }
615
+ content-top-bar email-time-full {
616
+ flex: 0 0 auto;
617
+ font-size: 0.75rem;
618
+ }
619
+
620
+ email-header {
621
+ flex-wrap: wrap;
622
+ padding: 0.5rem 0.75rem;
623
+ min-height: 44px;
624
+ height: auto;
625
+ gap: 0.5rem;
626
+ }
627
+ email-header .email-subject {
628
+ font-size: 1rem;
629
+ order: 1;
630
+ flex: 1 1 100%;
631
+ width: 100%;
632
+ align-self: center;
633
+ }
634
+ email-header .spacer {
635
+ display: none;
636
+ }
637
+ email-header actions {
638
+ order: 2;
639
+ display: flex;
640
+ gap: 0.25rem;
641
+ margin-left: auto;
642
+ }
582
643
  }
@@ -12,6 +12,22 @@
12
12
  background: transparent !important;
13
13
  }
14
14
 
15
+ @media (max-width: 640px) {
16
+ .hero .flex {
17
+ flex-direction: column;
18
+ gap: 0.75rem !important;
19
+ align-items: stretch;
20
+ }
21
+ .hero .flex button,
22
+ .hero .flex a {
23
+ width: 100%;
24
+ justify-content: center;
25
+ }
26
+ header.hero .pt-8 { padding-top: 2rem; }
27
+ header.hero h1 { font-size: 2.5rem; }
28
+ header.hero .pb-12 { padding-bottom: 2rem; }
29
+ }
30
+
15
31
  /* Theme Toggle specific local style */
16
32
  .theme-toggle {
17
33
  position: fixed;
@@ -169,7 +185,7 @@
169
185
  <div class="pt-8 pb-12 text-center">
170
186
  <span
171
187
  class="text-[10px] font-black tracking-[0.3em] text-accent uppercase mb-6 block"
172
- >QuantumCSS v1.11.1</span
188
+ >QuantumCSS v1.11.4</span
173
189
  >
174
190
  <h1
175
191
  class="text-7xl md:text-8xl text-gradient font-black uppercase italic tracking-tighter mb-8"
@@ -45,6 +45,8 @@
45
45
  display: flex; justify-content: space-between; align-items: center;
46
46
  margin-bottom: 1.5rem; cursor: pointer;
47
47
  }
48
+ .designer-header i { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
49
+ .designer-panel.minimized .designer-header i { transform: rotate(180deg); }
48
50
  .designer-title { font-weight: 900; font-size: 0.75rem; text-transform: uppercase; tracking-widest; opacity: 0.8; }
49
51
  .control-group { margin-bottom: 1.25rem; }
50
52
  .control-label { display: flex; justify-content: space-between; font-size: 0.7rem; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; opacity: 0.6; }
@@ -1067,7 +1069,11 @@
1067
1069
  <!-- Vertical Navigation -->
1068
1070
  <div class="starlight-card p-0">
1069
1071
  <div class="p-4 border-b border-white_5 bg-white_5 text-[10px] uppercase font-bold tracking-widest opacity-50">Vertical Sidebar (.aside-nav)</div>
1070
- <div class="flex h-[400px] overflow-hidden">
1072
+ <div class="flex h-[400px] overflow-hidden relative">
1073
+ <input type="checkbox" id="sidebar-toggle-mobile" class="hidden">
1074
+ <label for="sidebar-toggle-mobile" class="aside-nav-trigger">
1075
+ <span class="aside-nav-trigger-icon"><span></span><span></span><span></span></span>
1076
+ </label>
1071
1077
  <aside class="aside-nav" aria-label="Sidebar navigation">
1072
1078
  <div class="aside-nav-header">
1073
1079
  <a href="/" class="nav-logo" aria-label="Starlight OS">
@@ -1382,7 +1388,7 @@
1382
1388
  <div class="p-4 border-b border-white_5 bg-white_5 text-[10px] uppercase font-bold tracking-widest opacity-50">Tab Interface (.tab-list)</div>
1383
1389
  <div class="p-8">
1384
1390
  <div class="max-w-2xl mx-auto">
1385
- <div class="tab-list mb-4">
1391
+ <div class="tab-list mb-4 touch-slide">
1386
1392
  <button class="tab-button active" data-tab="tab-overview">Overview</button>
1387
1393
  <button class="tab-button" data-tab="tab-specs">Specifications</button>
1388
1394
  <button class="tab-button" data-tab="tab-logs">System Logs</button>
@@ -26,6 +26,60 @@
26
26
  display: flex;
27
27
  flex-direction: column;
28
28
  overflow-y: auto;
29
+ position: relative;
30
+ }
31
+
32
+ .sidebar-overlay {
33
+ display: none;
34
+ }
35
+
36
+ @media (max-width: 768px) {
37
+ .music-sidebar {
38
+ position: fixed;
39
+ left: 0;
40
+ top: 0;
41
+ bottom: 0;
42
+ width: 260px;
43
+ transform: translateX(-100%);
44
+ z-index: 200;
45
+ transition: transform 0.3s ease;
46
+ }
47
+ #music-sidebar-toggle:checked ~ .music-app .music-sidebar {
48
+ transform: translateX(0);
49
+ }
50
+ .sidebar-overlay {
51
+ display: block;
52
+ position: fixed;
53
+ inset: 0;
54
+ background: rgba(0, 0, 0, 0.5);
55
+ z-index: 199;
56
+ opacity: 0;
57
+ pointer-events: none;
58
+ transition: opacity 0.3s ease;
59
+ }
60
+ #music-sidebar-toggle:checked ~ .music-app .sidebar-overlay {
61
+ opacity: 1;
62
+ pointer-events: auto;
63
+ }
64
+ .sidebar-toggle {
65
+ display: flex;
66
+ }
67
+
68
+ .music-sidebar .music-logo span,
69
+ .music-sidebar .nav-title,
70
+ .music-sidebar .nav-item span,
71
+ .music-sidebar .create-playlist-btn span {
72
+ display: inline;
73
+ }
74
+
75
+ .music-sidebar .nav-item {
76
+ justify-content: flex-start !important;
77
+ padding: 0.75rem 1rem;
78
+ }
79
+
80
+ .music-sidebar .music-logo {
81
+ justify-content: flex-start;
82
+ }
29
83
  }
30
84
 
31
85
  .music-logo {
@@ -470,6 +524,9 @@
470
524
  font-weight: 600;
471
525
  color: var(--text-primary, #f1f5f9);
472
526
  margin-bottom: 0.25rem;
527
+ white-space: nowrap;
528
+ overflow: hidden;
529
+ text-overflow: ellipsis;
473
530
  }
474
531
 
475
532
  .now-playing-artist {
@@ -730,6 +787,12 @@
730
787
  .player-bar {
731
788
  grid-template-columns: 200px 1fr 200px;
732
789
  }
790
+
791
+ .now-playing-title {
792
+ white-space: nowrap;
793
+ overflow: hidden;
794
+ text-overflow: ellipsis;
795
+ }
733
796
  }
734
797
 
735
798
  @media (max-width: 768px) {
@@ -738,10 +801,6 @@
738
801
  grid-template-rows: 1fr auto 80px;
739
802
  }
740
803
 
741
- .music-sidebar {
742
- display: none;
743
- }
744
-
745
804
  .main-content {
746
805
  padding: 1rem;
747
806
  }
@@ -800,7 +859,9 @@
800
859
  </style>
801
860
  </head>
802
861
  <body>
862
+ <input type="checkbox" id="music-sidebar-toggle" class="hidden">
803
863
  <div class="music-app">
864
+ <label for="music-sidebar-toggle" class="sidebar-overlay"></label>
804
865
  <!-- Sidebar -->
805
866
  <aside class="music-sidebar">
806
867
  <div class="music-logo">
@@ -917,9 +978,9 @@
917
978
  <button class="action-icon liked">
918
979
  <i class="q-icon-heart-fill w-8 h-8"></i>
919
980
  </button>
920
- <button class="action-icon">
981
+ <label for="music-sidebar-toggle" class="action-icon sidebar-toggle" style="cursor: pointer;">
921
982
  <i class="q-icon-more-horizontal-fill w-7 h-7"></i>
922
- </button>
983
+ </label>
923
984
  </div>
924
985
 
925
986
  <!-- Track List -->
@@ -66,23 +66,49 @@
66
66
  @media (min-width: 768px) {
67
67
  .nav-header .btn-secondary { display: block; }
68
68
  }
69
+
70
+ /* Responsive Nav Tweak for Medium Screens */
71
+ @media (min-width: 640px) and (max-width: 1024px) {
72
+ .nav-header .nav-links a {
73
+ font-size: 0.75rem;
74
+ padding: 0.4rem 0.3rem;
75
+ letter-spacing: -0.02em;
76
+ }
77
+ .nav-header .nav-links {
78
+ gap: 0;
79
+ }
80
+ .nav-header .text-2xl, .nav-header .sm\:text-4xl {
81
+ font-size: 1.5rem !important; /* Scale logo down for md range */
82
+ }
83
+ .nav-header .px-6 {
84
+ padding-left: 1rem !important;
85
+ padding-right: 1rem !important;
86
+ }
87
+ .nav-header .gap-4 {
88
+ gap: 0.5rem !important;
89
+ }
90
+ .nav-header .btn-secondary {
91
+ padding-left: 1rem !important;
92
+ padding-right: 1rem !important;
93
+ }
94
+ }
69
95
  </style>
70
96
  </head>
71
97
  <body class="bg-surface">
72
98
  <!-- Navigation -->
73
99
  <input type="checkbox" id="nav-toggle" class="nav-toggle" />
74
100
  <header class="nav-header">
75
- <div class="container mx-auto px-6 flex items-center justify-between w-full h-full">
101
+ <div class="mx-auto px-6 flex items-center justify-between w-full h-full">
76
102
  <div class="text-2xl sm:text-4xl font-bold tracking-tighter uppercase italic text-primary shrink-0">QUANTUM<span class="text-blue-600">NEWS</span></div>
77
103
 
78
- <nav class="nav-links space-x-12 text-xs font-black uppercase tracking-widest flex-1 justify-center">
79
- <a href="#" class="hover:text-blue-600 transition-colors">Neural Mesh</a>
80
- <a href="#" class="hover:text-blue-600 transition-colors">Bio-Tech</a>
81
- <a href="#" class="hover:text-blue-600 transition-colors">Space-X</a>
82
- <a href="#" class="hover:text-blue-600 transition-colors">Quantum Compute</a>
104
+ <nav class="nav-links flex-1 justify-center">
105
+ <a href="#" class="transition-colors">Neural Mesh</a>
106
+ <a href="#" class="transition-colors">Bio-Tech</a>
107
+ <a href="#" class="transition-colors">Space-X</a>
108
+ <a href="#" class="transition-colors">Quantum Compute</a>
83
109
  </nav>
84
110
 
85
- <div class="flex items-center gap-6 shrink-0">
111
+ <div class="flex items-center gap-4">
86
112
  <div id="theme-btn" class="theme-toggle" onclick="toggleTheme()" title="Toggle Theme">
87
113
  <i class="q-icon-display"></i>
88
114
  <i class="q-icon-sun sun-icon"></i>
@@ -182,7 +208,7 @@
182
208
  <div class="p-8 rounded-2xl bg-accent text-white">
183
209
  <h4 class="text-xs font-black uppercase tracking-widest mb-4">Newsletter</h4>
184
210
  <p class="text-sm opacity-90 mb-6">Receive the morning data-stream directly to your neural link.</p>
185
- <input type="email" placeholder="terminal@id.io" class="w-full bg-white_20 border border-white_20 p-3 rounded text-sm mb-4 outline-none focus:border-white text-white newsletter-input">
211
+ <input type="email" placeholder="terminal@id.io" class="w-full border border-white_20 p-3 rounded text-sm mb-4 outline-none focus:border-white text-white newsletter-input">
186
212
  <button class="w-full bg-white text-blue-600 font-black text-[10px] uppercase tracking-widest py-3 rounded hover:bg-slate-100 transition-colors">Subscribe</button>
187
213
  </div>
188
214
  </aside>
@@ -977,6 +977,7 @@ html[data-theme="light"] .search-bar-input {
977
977
 
978
978
  /* ── Responsive ── */
979
979
  @media (max-width: 768px) {
980
+ .hero h1 { font-size: 2rem; }
980
981
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
981
982
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
982
983
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Gemini CLI - Autonomous Engineer</title>
6
+ <title>Artificial CLI - Autonomous Engineer</title>
7
7
  <link rel="stylesheet" href="../dist/quantum.min.css">
8
8
  <script src="../src/starlight.js"></script>
9
9
  <style>
@@ -79,12 +79,12 @@
79
79
  </style>
80
80
  </head>
81
81
  <body>
82
- <div class="starlight-stars"></div>
82
+ <div class="starlight-stars ani-nebula"></div>
83
83
 
84
84
  <header class="nav-header flex items-center justify-between">
85
85
  <a href="/" class="nav-logo" aria-label="Starlight OS">
86
86
  <i class="q-icon-starlight"></i>
87
- <span class="text-gradient font-bold">GEMINI.CLI</span>
87
+ <span class="text-gradient font-bold">ARTIFICIAL.CLI</span>
88
88
  </a>
89
89
  <nav class="nav-links flex-1 justify-center" aria-label="Primary navigation">
90
90
  <a href="#core" class="nav-link">Core</a>
@@ -107,7 +107,7 @@
107
107
  <span class="ai-status-orb"></span> Fully Operational
108
108
  </div>
109
109
  <h1 class="hero-title font-black uppercase italic tracking-tighter">
110
- Gemini <br> <span class="text-gradient">Intelligent CLI</span>
110
+ Artificial <br> <span class="text-gradient">Intelligent CLI</span>
111
111
  </h1>
112
112
  <p class="text-2xl opacity-70 max-w-2xl mx-auto font-medium leading-relaxed">
113
113
  Autonomous software engineer specializing in architectural hardening,
@@ -150,48 +150,48 @@
150
150
  <div class="timeline-dot"></div>
151
151
  <div class="timeline-content">
152
152
  <span class="timeline-date">March 2026</span>
153
- <h3 class="text-xl font-bold mb-2">v1.11.1: Release</h3>
154
- <p class="text-sm text-muted">New features and improvements.</p>
153
+ <h3 class="text-xl font-bold mb-2">v1.11.4: Navigation & UI Refinement</h3>
154
+ <p class="opacity-70 text-sm">Polished nav-header scaling for medium displays, fixed flex-1 overflow in travel/news templates, improved icon visibility in light mode, and refined icon-only sidebar layouts.</p>
155
155
  </div>
156
156
  </div>
157
157
  <div class="timeline-item">
158
158
  <div class="timeline-dot"></div>
159
159
  <div class="timeline-content">
160
160
  <span class="timeline-date">March 2026</span>
161
- <h3 class="text-xl font-bold mb-2">v1.11.0: Release</h3>
162
- <p class="text-sm text-muted">New features and improvements.</p>
161
+ <h3 class="text-xl font-bold mb-2">v1.11.3: Touch Slide Navigation</h3>
162
+ <p class="opacity-70 text-sm">Added touch-slide class for mobile horizontal swipe navigation in shopping template navbar actions and kitchen-sink.html tab-list.</p>
163
163
  </div>
164
164
  </div>
165
165
  <div class="timeline-item">
166
166
  <div class="timeline-dot"></div>
167
167
  <div class="timeline-content">
168
168
  <span class="timeline-date">March 2026</span>
169
- <h3 class="text-xl font-bold mb-2">v1.11.0: Release</h3>
170
- <p class="text-sm text-muted">New features and improvements.</p>
169
+ <h3 class="text-xl font-bold mb-2">v1.11.2: Color-Mix Glow Refinements</h3>
170
+ <p class="opacity-70 text-sm">Replaced hardcoded rgba colors with color-mix() for theme-adaptive glows. Fixed text-primary color handling, removed non-functional backgrounds, and cleaned up news.html styling.</p>
171
171
  </div>
172
172
  </div>
173
173
  <div class="timeline-item">
174
174
  <div class="timeline-dot"></div>
175
175
  <div class="timeline-content">
176
176
  <span class="timeline-date">March 2026</span>
177
- <h3 class="text-xl font-bold mb-2">v1.10.2: Release</h3>
178
- <p class="text-sm text-muted">New features and improvements.</p>
177
+ <h3 class="text-xl font-bold mb-2">v1.11.1: Quantum Icon Components</h3>
178
+ <p class="opacity-70 text-sm">Replaced SVG icons with q-icon components in admin-panel. Polished logo styling across templates.</p>
179
179
  </div>
180
180
  </div>
181
181
  <div class="timeline-item">
182
182
  <div class="timeline-dot"></div>
183
183
  <div class="timeline-content">
184
184
  <span class="timeline-date">March 2026</span>
185
- <h3 class="text-xl font-bold mb-2">v1.10.1: Release</h3>
186
- <p class="text-sm text-muted">New features and improvements.</p>
185
+ <h3 class="text-xl font-bold mb-2">v1.11.0: Navigation & Icon System</h3>
186
+ <p class="opacity-70 text-sm">Quantum Icon library with auto theme toggle, unified nav-header/aside-nav API, CSS-only sidebar toggles, table component, and semantic-strip build pipeline.</p>
187
187
  </div>
188
188
  </div>
189
189
  <div class="timeline-item">
190
190
  <div class="timeline-dot"></div>
191
191
  <div class="timeline-content">
192
192
  <span class="timeline-date">March 2026</span>
193
- <h3 class="text-xl font-bold mb-2">v1.10.1: Release</h3>
194
- <p class="text-sm text-muted">New features and improvements.</p>
193
+ <h3 class="text-xl font-bold mb-2">v1.10.1: Scrollbar & Theme Polish</h3>
194
+ <p class="opacity-70 text-sm">Unified scrollbar gradient styling, theme toggle icon refinements, and warp factor slider fixes.</p>
195
195
  </div>
196
196
  </div>
197
197
  <div class="timeline-item">
@@ -235,7 +235,7 @@
235
235
 
236
236
  <footer style="background: var(--q-bg-primary); border-top: 1px solid var(--q-color-border);" class="text-center">
237
237
  <div class="container" style="padding: 1.5rem 1.5rem;">
238
- <div class="text-starlight font-black uppercase tracking-[0.5em] text-xs mb-4 justify-center">Gemini Intelligence Layer</div>
238
+ <div class="text-starlight font-black uppercase tracking-[0.5em] text-xs mb-4 justify-center">Artificial Intelligence Layer</div>
239
239
  <p class="text-[10px] opacity-40 uppercase tracking-widest">© 2026 Eric Yang · Powered by QuantumCSS Architecture</p>
240
240
  </div>
241
241
  </footer>
@@ -38,7 +38,7 @@
38
38
  </ul>
39
39
 
40
40
  <!-- Actions -->
41
- <div class="flex items-center gap-3">
41
+ <div class="flex items-center gap-3 nav-actions touch-slide">
42
42
  <div class="search-bar-wrap">
43
43
  <span class="search-icon-pos">
44
44
  <i class="q-icon-search w-3.5 h-3.5"></i>