-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
3932 lines (3408 loc) · 135 KB
/
index.css
File metadata and controls
3932 lines (3408 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Import KaTeX CSS for LaTeX math rendering */
@import 'katex/dist/katex.min.css';
@import "./liquid-glass.css";
/* Import Fira Code and Tiempos fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Tiempos+Text:ital,wght@0,400;0,500;1,400&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--middle-header-height: 4.5em;
--titlebar-height: 2em;
/* Default value */
}
html {
font-size: 15px;
}
.btn,
.input {
@apply rounded-md;
}
/*Mui Switch*/
/* Constant style */
.MuiSwitch-root .MuiSwitch-track {
@apply !bg-base-100;
}
/* Online*/
.MuiSwitch-switchBase.Mui-checked {
@apply !text-success brightness-90;
}
.MuiSwitch-root.switch-checked-online .MuiSwitch-track {
@apply !bg-success;
}
/* Connecting */
.MuiSwitch-root.connecting .MuiSwitch-switchBase {
@apply !text-warning/85 brightness-75
}
.MuiSwitch-root.connecting .MuiSwitch-track {
@apply !bg-warning/70;
}
/* Offline*/
.MuiSwitch-root.offline .MuiSwitch-switchBase {
@apply !text-error/85 brightness-75
}
.MuiSwitch-root.offline .MuiSwitch-track {
@apply !bg-error/70;
}
/* Default theme */
.btn-primary {
@apply text-base-content bg-gradient-to-t from-secondary to-primary;
border-width: 0px;
transition: background 0.3s ease;
}
.btn-neutral {
@apply bg-neutral border-none;
}
.btn-neutral:hover {
@apply bg-neutral opacity-90;
}
[data-theme="light"] .btn-neutral {
@apply bg-neutral border-none text-white;
}
.btn-code-blame {
text-transform: none !important;
font-weight: 600 !important;
font-size: 1rem !important;
border-color: rgba(255, 255, 255, 0.15) !important;
border-width: 1px !important;
}
.btn-settings-upload {
min-height: 2rem;
height: 2.5rem;
max-height: 2.5rem;
}
[data-theme="dark"] .btn-code-blame {
border-color: rgba(255, 255, 255, 0.15) !important;
}
[data-theme="light"] .btn-code-blame {
border-color: rgba(0, 0, 0, 0.15) !important;
}
[data-theme="light"] .btn-code-blame.unselected {
border-color: rgba(0, 0, 0, 0.15) !important;
color: black !important;
}
.btn-file-content {
opacity: 60% !important;
}
[data-theme="light"] .btn-file-content {
opacity: 60% !important;
color: black !important;
}
[data-theme="dark"] .btn-file-content {
@apply !fill-text-primary;
opacity: 60% !important;
}
.btn-primary:hover {
@apply bg-gradient-to-t from-secondary to-primary opacity-90;
}
/* Dark theme */
[data-theme="dark"] .btn-primary {
@apply bg-gradient-to-t from-secondary to-primary;
}
[data-theme="dark"] .btn-primary:hover {
@apply bg-gradient-to-t from-secondary to-primary opacity-90;
}
/* Light theme */
[data-theme="light"] .btn-primary {
@apply bg-gradient-to-t from-secondary to-primary text-white;
}
[data-theme="light"] .btn-primary:hover {
@apply bg-gradient-to-t from-secondary to-primary opacity-90;
}
/* Iris theme */
[data-theme="iris"] .btn-primary {
@apply bg-gradient-to-t from-secondary to-primary;
}
[data-theme="iris"] .btn-primary:hover {
@apply bg-gradient-to-t from-secondary to-primary;
box-shadow: 0 0 10px var(--tw-gradient-from);
}
iframe {
@apply max-w-full;
}
/* FORCE HIDE ALL SCROLLBARS - MAXIMUM SPECIFICITY */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main, button, input, select, textarea,
*, *::before, *::after {
/* Firefox */
scrollbar-width: none !important;
/* IE/Edge */
-ms-overflow-style: none !important;
}
/* Webkit browsers - ALL elements and pseudo-elements */
html::-webkit-scrollbar, body::-webkit-scrollbar, div::-webkit-scrollbar,
*::-webkit-scrollbar, *::before::-webkit-scrollbar, *::after::-webkit-scrollbar {
width: 0 !important;
height: 0 !important;
display: none !important;
}
/* Ensure Ant Design components also hide scrollbars */
.ant-layout::-webkit-scrollbar,
.ant-layout-content::-webkit-scrollbar,
.ant-layout-sider::-webkit-scrollbar,
.ant-card::-webkit-scrollbar,
.ant-card-body::-webkit-scrollbar,
.ant-modal::-webkit-scrollbar,
.ant-modal-body::-webkit-scrollbar,
.ant-table::-webkit-scrollbar,
.ant-table-body::-webkit-scrollbar,
.ant-select-dropdown::-webkit-scrollbar,
.ant-dropdown::-webkit-scrollbar,
.ant-drawer::-webkit-scrollbar,
.ant-drawer-body::-webkit-scrollbar,
.ant-menu::-webkit-scrollbar,
.ant-list::-webkit-scrollbar,
.ant-collapse::-webkit-scrollbar,
.ant-tabs-content::-webkit-scrollbar {
width: 0 !important;
height: 0 !important;
display: none !important;
}
/* Firefox/IE for Ant Design components */
.ant-layout,
.ant-layout-content,
.ant-layout-sider,
.ant-card,
.ant-card-body,
.ant-modal,
.ant-modal-body,
.ant-table,
.ant-table-body,
.ant-select-dropdown,
.ant-dropdown,
.ant-drawer,
.ant-drawer-body,
.ant-menu,
.ant-list,
.ant-collapse,
.ant-tabs-content {
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
/* For elements that should explicitly show scrollbars, add class .show-scrollbar */
.show-scrollbar {
/* Firefox */
scrollbar-width: thin !important;
/* IE/Edge */
-ms-overflow-style: auto !important;
}
.show-scrollbar::-webkit-scrollbar {
width: 8px !important;
height: 8px !important;
display: block !important;
}
.show-scrollbar::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05) !important;
border-radius: 4px !important;
}
.show-scrollbar::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2) !important;
border-radius: 4px !important;
}
/* Custom scrollbar for FileContent component */
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.custom-scrollbar {
scrollbar-width: thin;
}
/* Utility class to prevent text selection and highlighting */
.no-highlight {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
}
/* Apply no-highlight to all UI chrome by default */
nav, header, aside, .btn, .menu, .navbar, .sidebar, .dropdown,
.modal-box, .badge, .tabs, .form-control, .input, .select,
.toggle, .checkbox, .radio, .range, .file-input, .breadcrumbs,
.pagination, .steps, .alert, .toast, .loading, .progress, .radial-progress,
.countdown, .stat, .divider, .mask, .skeleton, .collapse,
.carousel, .indicator, .swap, .tooltip, .drawer, .rating,
.artboard, .phone-mockup, .window-mockup, .browser-mockup,
.code-mockup, .kbd, .link-hover, .link-primary, .link-secondary,
.btn-group, .join, .stack, .avatar-group,
/* Profile-specific UI elements */
.followers-info, .follower-count, .follow-button, .profile-stats,
.tab-navigation, .user-actions, .profile-badges, .social-links {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
}
/* Allow text selection only in content areas */
.highlight-allowed, .prose, [role="main"] article, .post-content {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
/* Force no selection on UI elements even within highlight-allowed areas */
.highlight-allowed .no-highlight,
.highlight-allowed .btn,
.highlight-allowed .badge,
.highlight-allowed .tabs,
.highlight-allowed button,
.highlight-allowed .avatar-group,
.highlight-allowed [class*="btn-"],
.highlight-allowed [class*="flex"][class*="gap-"],
.highlight-allowed .cursor-pointer {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
-webkit-touch-callout: none !important;
-webkit-tap-highlight-color: transparent !important;
}
/* src/shared/styles/scrollbar.css */
.scrollbar-hide {
-ms-overflow-style: none;
/* Internet Explorer 10+ */
scrollbar-width: none;
/* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
/* Safari and Chrome */
}
/* Fix modal scrollbar compensation issue */
/* Reserve space for scrollbar to prevent layout shift without showing it */
html {
scrollbar-gutter: stable;
}
/* Prevent layout shift when dialog opens by maintaining overflow */
dialog[open] {
/* Ensure the dialog doesn't affect body scrollbar */
overflow: auto;
}
/* Prevent body from losing scrollbar space when modal opens */
body:has(dialog[open]) {
/* Maintain normal overflow behavior */
overflow: auto !important;
/* Prevent any margin adjustments */
margin-right: 0 !important;
}
/* Hide scrollbars completely when modals are open - cross-browser */
html:has(dialog[open])::-webkit-scrollbar {
display: none !important;
}
html:has(dialog[open]) {
/* Reserve space but hide scrollbar completely */
overflow-y: scroll !important;
scrollbar-width: none !important; /* Firefox */
-ms-overflow-style: none !important; /* IE/Edge */
}
/* Ensure body doesn't get overflow hidden when modal opens */
body:has(dialog[open]) {
overflow-y: visible !important;
}
/* modals */
.modal-box {
max-width: fit-content !important;
}
/* mui tabs */
.MuiTab-root.Mui-selected {
color: #c6c8d3 !important;
}
/* Electron window controls */
.app-drag-region {
-webkit-app-region: drag;
-webkit-user-select: none;
}
.app-no-drag {
-webkit-app-region: no-drag;
}
.safeContentBrowser {
height: calc(100vh - var(--middle-header-height));
}
.safeContentElectron {
height: calc(100vh - var(--middle-header-height) - var(--titlebar-height));
}
.searchBox {
@apply border-[--border-color] border-[2px] !rounded-md !bg-base-100
}
/* ============================================= */
/* SELECTIVE SEARCHBOX BEVEL REMOVAL */
/* ============================================= */
/* Only remove bevel effect from UserToolbar search inputs (top-right search) */
.fixed.z-50.right-5 input.bg-base-300,
.fixed.z-50.right-5 input[class*="bg-base-300"],
.fixed.z-50.right-5 .bg-base-300 input {
box-shadow: none !important;
}
/* Remove bevel effect from search page UserToolbar */
body:has(header:contains("Search")) .fixed.z-50.right-5 input.bg-base-300,
body:has(header:contains("Search")) .fixed.z-50.right-5 input[class*="bg-base-300"],
body:has(header:contains("Search")) .fixed.z-50.right-5 .bg-base-300 input {
box-shadow: none !important;
}
/* Enhanced focus state for UserToolbar search inputs */
.fixed.z-50.right-5 input:focus,
.fixed.z-50.right-5 input:focus-visible {
--tw-ring-color: var(--primary) !important;
--tw-ring-offset-color: transparent !important;
box-shadow:
0 0 0 2px var(--primary, #007AFF),
0 0 15px rgba(0, 122, 255, 0.3) !important;
outline: 2px solid var(--primary, #007AFF) !important;
outline-offset: 0 !important;
border-color: var(--primary, #007AFF) !important;
transition: all 0.2s ease !important;
}
/* Theme-specific focus glow colors */
[data-theme="liquid-glass"] .fixed.z-50.right-5 input:focus {
box-shadow:
0 0 0 2px rgba(255, 255, 255, 0.5),
0 0 20px rgba(255, 255, 255, 0.3) !important;
outline-color: rgba(255, 255, 255, 0.5) !important;
border-color: rgba(255, 255, 255, 0.5) !important;
}
[data-theme="liquid-blue"] .fixed.z-50.right-5 input:focus {
box-shadow:
0 0 0 2px rgba(0, 255, 255, 0.6),
0 0 20px rgba(0, 255, 255, 0.4) !important;
outline-color: rgba(0, 255, 255, 0.6) !important;
border-color: rgba(0, 255, 255, 0.6) !important;
}
/* Fix for FollowList search input (thread viewer) - use internal glow to prevent clipping */
.sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus,
.sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus-visible {
/* Remove external outline and ring */
outline: none !important;
--tw-ring-color: transparent !important;
--tw-ring-offset-color: transparent !important;
/* Use internal box-shadow for glow effect */
box-shadow:
inset 0 0 0 2px var(--primary, #007AFF),
inset 0 0 12px rgba(0, 122, 255, 0.25) !important;
border-color: var(--primary, #007AFF) !important;
transition: all 0.2s ease !important;
}
/* Theme-specific internal glow for FollowList search */
[data-theme="liquid-glass"] .sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus {
box-shadow:
inset 0 0 0 2px rgba(255, 255, 255, 0.5),
inset 0 0 15px rgba(255, 255, 255, 0.25) !important;
border-color: rgba(255, 255, 255, 0.5) !important;
}
[data-theme="liquid-blue"] .sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus {
box-shadow:
inset 0 0 0 2px rgba(0, 255, 255, 0.6),
inset 0 0 15px rgba(0, 255, 255, 0.35) !important;
border-color: rgba(0, 255, 255, 0.6) !important;
}
[data-theme="dark"] .sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus {
box-shadow:
inset 0 0 0 2px rgba(255, 255, 255, 0.4),
inset 0 0 12px rgba(255, 255, 255, 0.2) !important;
border-color: rgba(255, 255, 255, 0.4) !important;
}
[data-theme="dim"] .sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus {
box-shadow:
inset 0 0 0 2px rgba(255, 255, 255, 0.35),
inset 0 0 12px rgba(255, 255, 255, 0.15) !important;
border-color: rgba(255, 255, 255, 0.35) !important;
}
[data-theme="light"] .sticky.top-0.z-9 input[placeholder="Search profiles..."]:focus {
box-shadow:
inset 0 0 0 2px rgba(0, 122, 255, 0.8),
inset 0 0 12px rgba(0, 122, 255, 0.2) !important;
border-color: rgba(0, 122, 255, 0.8) !important;
}
/* Liquid Glass Theme Definition */
[data-theme="liquid-glass"] {
/* Override base colors for liquid glass theme */
--base-100: rgba(255, 255, 255, 0.02);
--base-200: rgba(255, 255, 255, 0.04);
--base-300: rgba(255, 255, 255, 0.06);
--base-content: rgba(255, 255, 255, 0.95);
--neutral: rgba(255, 255, 255, 0.05);
--neutral-content: rgba(255, 255, 255, 0.95);
--primary: #007AFF;
--secondary: #AF52DE;
--accent: #32D2FF;
--info: #30B0C7;
--success: #34C759;
--warning: #FFCC00;
--error: #FF3B30;
--border-color: rgba(255, 255, 255, 0.1);
--text-primary: rgba(255, 255, 255, 0.95);
--text-secondary: rgba(255, 255, 255, 0.75);
--text-tertiary: rgba(255, 255, 255, 0.55);
}
/* Liquid Blue Theme Definition - Tony Stark/Jarvis AI Futuristic Blue */
[data-theme="liquid-blue"] {
/* Bright Neon Turquoise/Teal Color Palette */
--primary: #00FFFF; /* Electric cyan - bright neon */
--secondary: #00FFAA; /* Neon turquoise */
--accent: #00DDFF; /* Bright neon teal */
--info: #14B8A6; /* Teal */
--success: #06B6D4; /* Cyan */
--warning: #F59E0B; /* Amber warnings */
--error: #EF4444; /* Red for errors */
/* Base colors with bright turquoise/teal tint */
--base-100: rgba(20, 184, 166, 0.08);
--base-200: rgba(94, 234, 212, 0.12);
--base-300: rgba(153, 246, 228, 0.16);
--base-content: rgba(255, 255, 255, 0.95);
--neutral: rgba(20, 184, 166, 0.1);
--neutral-content: rgba(255, 255, 255, 0.95);
/* Border and text colors with bright turquoise glow */
--border-color: rgba(20, 184, 166, 0.15);
--text-primary: rgba(255, 255, 255, 0.95); /* Keep text white */
--text-secondary: rgba(255, 255, 255, 0.9); /* Keep text white */
--text-tertiary: rgba(255, 255, 255, 0.8); /* Keep text white */
/* Futuristic tab colors - neon turquoise */
--tab-primary-rgb: 0, 255, 255; /* Electric cyan */
--tab-secondary-rgb: 0, 255, 170; /* Neon turquoise */
}
/* Beautiful gradient background */
[data-theme="liquid-glass"] html {
background: linear-gradient(135deg, var(--lg-gradient-start, #1e0033) 0%, var(--lg-gradient-end, #01579b) 100%) fixed !important;
min-height: 100vh;
color: rgba(255, 255, 255, 0.95);
}
/* LIQUID BLUE BACKGROUND ANIMATIONS - MATCHING DASHBOARD */
@keyframes liquidBackground {
0%, 100% {
opacity: 0.6;
transform: scale(1) rotate(0deg);
}
25% {
opacity: 0.8;
transform: scale(1.1) rotate(90deg);
}
50% {
opacity: 1;
transform: scale(1.2) rotate(180deg);
}
75% {
opacity: 0.8;
transform: scale(1.1) rotate(270deg);
}
}
@keyframes liquidFlow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Liquid Blue Futuristic Background - Neon Turquoise */
[data-theme="liquid-blue"] html {
background: linear-gradient(135deg,
#0d9488 0%, /* Bright teal start */
#14b8a6 25%, /* Turquoise */
#00FFFF 50%, /* Electric cyan core */
#5eead4 75%, /* Light turquoise */
#99f6e4 100% /* Very light teal */
) fixed !important;
min-height: 100vh;
color: rgba(255, 255, 255, 0.95);
position: relative;
}
/* Enhanced floating orbs for Arc Reactor Energy */
[data-theme="liquid-blue"] html::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
/* Bright neon turquoise core */
radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 1) 0%, transparent 30%),
/* Energy nodes - bright turquoise/teal */
radial-gradient(circle at 70% 30%, rgba(0, 255, 170, 0.9) 0%, transparent 35%),
radial-gradient(circle at 50% 10%, rgba(20, 184, 166, 0.8) 0%, transparent 40%),
radial-gradient(circle at 20% 40%, rgba(94, 234, 212, 0.7) 0%, transparent 45%),
radial-gradient(circle at 80% 80%, rgba(153, 246, 228, 0.6) 0%, transparent 50%),
/* Energy streams - neon turquoise */
linear-gradient(45deg, transparent 45%, rgba(0, 255, 255, 0.2) 50%, transparent 55%),
linear-gradient(-45deg, transparent 40%, rgba(0, 255, 170, 0.15) 50%, transparent 60%);
z-index: -1;
pointer-events: none;
animation: arc-reactor-glow 15s ease-in-out infinite;
}
/* Disable animation when motion setting is enabled */
[data-theme="liquid-blue"][data-disable-motion="true"] html::before {
animation: none;
}
@keyframes arc-reactor-glow {
0%, 100% {
opacity: 0.7;
filter: brightness(1.2) contrast(1.1);
}
25% {
opacity: 0.9;
filter: brightness(1.4) contrast(1.2);
}
50% {
opacity: 1;
filter: brightness(1.6) contrast(1.3);
}
75% {
opacity: 0.9;
filter: brightness(1.4) contrast(1.2);
}
}
/* Floating orbs effect overlay */
[data-theme="liquid-glass"] body {
position: relative;
min-height: 100vh;
background: transparent !important;
}
[data-theme="liquid-glass"] body::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.4) 0%, transparent 35%),
radial-gradient(circle at 85% 30%, rgba(33, 150, 243, 0.35) 0%, transparent 40%),
radial-gradient(circle at 50% 90%, rgba(124, 77, 255, 0.3) 0%, transparent 45%),
radial-gradient(circle at 20% 20%, rgba(100, 181, 246, 0.25) 0%, transparent 50%),
radial-gradient(circle at 75% 75%, rgba(94, 53, 177, 0.3) 0%, transparent 50%);
z-index: -1;
pointer-events: none;
}
/* Make backgrounds transparent to show gradient */
[data-theme="liquid-glass"] .bg-base-100,
[data-theme="liquid-glass"] .bg-base-200,
[data-theme="liquid-glass"] .bg-base-300 {
background-color: transparent !important;
}
[data-theme="liquid-glass"] main,
[data-theme="liquid-glass"] section {
background: transparent !important;
}
/* Liquid Blue Theme - Transparent Backgrounds */
[data-theme="liquid-blue"] .bg-base-100,
[data-theme="liquid-blue"] .bg-base-200,
[data-theme="liquid-blue"] .bg-base-300 {
background-color: transparent !important;
}
/* Fix ProfileHeader dark box in liquid blue theme */
[data-theme="liquid-blue"] .flex.flex-col.w-full.bg-base-200 {
background: transparent !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
/* Remove animated background effects from profile pages in liquid themes */
[data-theme="liquid-blue"] section.h-min-content html::before,
[data-theme="liquid-glass"] section.h-min-content html::before {
display: none !important;
}
[data-theme="liquid-blue"] section.h-min-content main::before,
[data-theme="liquid-blue"] section.h-min-content main::after,
[data-theme="liquid-glass"] section.h-min-content main::before,
[data-theme="liquid-glass"] section.h-min-content main::after {
display: none !important;
}
[data-theme="liquid-blue"] main,
[data-theme="liquid-blue"] section {
background: transparent !important;
}
/* Create glass effect for left sidebar WITHOUT affecting width */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end {
position: relative;
isolation: isolate;
/* NO WIDTH DECLARATIONS - let children determine width */
}
/* Glass background effect - visual only */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-radius: 0 16px 0 0;
z-index: -1;
box-shadow:
0 0 20px rgba(138, 43, 226, 0.15),
0 0 40px rgba(33, 150, 243, 0.1),
inset 0 2px 3px rgba(255, 255, 255, 0.2),
inset 0 -2px 3px rgba(0, 0, 0, 0.15),
0 12px 40px rgba(0, 0, 0, 0.2);
pointer-events: none;
}
/* Animated jelly border - visual only */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::after {
content: '';
position: absolute;
top: -3px;
left: -3px;
bottom: -3px;
right: -3px;
background: linear-gradient(
45deg,
rgba(138, 43, 226, 0.25),
rgba(33, 150, 243, 0.25),
rgba(124, 77, 255, 0.25),
rgba(138, 43, 226, 0.25)
);
background-size: 300% 300%;
border-radius: 0 19px 0 0;
z-index: -2;
filter: blur(6px);
opacity: 0.7;
animation: subtle-jelly-border 10s ease-in-out infinite;
pointer-events: none;
}
/* Disable animation when motion setting is enabled */
[data-theme="liquid-glass"][data-disable-motion="true"] .flex.flex-col.h-full.self-end::after {
animation: none;
}
@keyframes subtle-jelly-border {
0%, 100% {
background-position: 0% 50%;
}
25% {
background-position: 50% 25%;
}
50% {
background-position: 100% 50%;
}
75% {
background-position: 50% 75%;
}
}
/* Glass highlight - visual only */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end > div:first-child::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 120px;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0.12) 0%,
rgba(255, 255, 255, 0.05) 30%,
transparent 100%
);
border-radius: 0 16px 0 0;
pointer-events: none;
z-index: 2;
}
/* Make sidebars transparent to show glass effect */
[data-theme="liquid-glass"] .w-20.overflow-x-hidden.border-r,
[data-theme="liquid-glass"] .bg-base-100.sticky.h-full.left-0.top-0 {
background: transparent !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
/* Ensure content is above glass effects */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end > * {
position: relative;
z-index: 1;
}
/* Fix overflow issues and height for left sidebar glass effects */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end {
overflow: hidden;
contain: layout style paint;
/* Make sidebar fill full viewport height to eliminate black gap */
min-height: 100vh;
height: 100vh;
}
/* Prevent glass pseudo-elements from extending beyond sidebar bounds */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::before,
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::after {
contain: layout style paint;
overflow: hidden;
}
/* Reduce opacity of glass background to prevent dark areas */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::before {
background: rgba(255, 255, 255, 0.02) !important; /* Much lighter background */
}
/* Prevent glass effects from causing scrollbars by ensuring they don't extend beyond viewport */
[data-theme="liquid-glass"] *::before,
[data-theme="liquid-glass"] *::after {
box-sizing: border-box;
max-width: 100%;
max-height: 100%;
}
/* Ensure glass effects don't affect document flow */
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::before,
[data-theme="liquid-glass"] .flex.flex-col.h-full.self-end::after {
position: absolute;
pointer-events: none;
}
/* Make SideBarToolBar background transparent */
[data-theme="liquid-glass"] .flex.items-center.justify-center.h-1\/6 {
background: transparent !important;
}
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 {
background: transparent !important;
}
/* Style SideBarToolBar buttons - transparent with no borders */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button,
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 a,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 a {
background: transparent !important;
border: none !important;
box-shadow: none !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
color: rgba(255, 255, 255, 0.8) !important;
transition: box-shadow 0.2s ease !important;
}
/* SideBarToolBar glass effect on icons */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 svg,
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 a svg,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 svg,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 a svg {
opacity: 0.95;
filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4)) blur(0.5px);
transition: all 0.3s ease;
}
/* SideBarToolBar hover effects - enhanced icon glow */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:hover svg,
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 a:hover svg,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:hover svg,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 a:hover svg {
opacity: 1;
filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.5)) drop-shadow(0 0 12px rgba(33, 150, 243, 0.4)) blur(0.5px) !important;
}
/* FEEDS BUTTON ONLY (3rd position in 2x2 grid) - conjoined glow system */
/* When hovering over Feeds icon - glow both icon and text */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:nth-child(3):has(svg:hover) svg,
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:nth-child(3):has(svg:hover) span,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:nth-child(3):has(svg:hover) svg,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:nth-child(3):has(svg:hover) span {
filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.8)) drop-shadow(0 0 18px rgba(33, 150, 243, 0.7)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.6)) !important;
}
/* When hovering over Feeds text - glow both text and icon */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:nth-child(3):has(span:hover) svg,
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:nth-child(3):has(span:hover) span,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:nth-child(3):has(span:hover) svg,
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:nth-child(3):has(span:hover) span {
filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.8)) drop-shadow(0 0 18px rgba(33, 150, 243, 0.7)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.6)) !important;
}
/* NEW POST BUTTON ONLY - conjoined glow system */
/* When hovering over new post icon - glow both icon and text */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:has(div[class*="rounded-md"]:hover) div[class*="rounded-md"],
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:has(div[class*="rounded-md"]:hover) div[class*="rounded-md"] {
box-shadow: 0 0 8px rgba(138, 43, 226, 0.6), 0 0 12px rgba(33, 150, 243, 0.5), 0 0 16px rgba(255, 255, 255, 0.4) !important;
}
/* When hovering over new post text - glow both text and icon */
[data-theme="liquid-glass"] .grid.grid-cols-2.gap-2.p-2 button:has(span:hover) div[class*="rounded-md"],
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 button:has(span:hover) div[class*="rounded-md"] {
box-shadow: 0 0 8px rgba(138, 43, 226, 0.6), 0 0 12px rgba(33, 150, 243, 0.5), 0 0 16px rgba(255, 255, 255, 0.4) !important;
}
/* Hover and active states removed */
/* Active/selected state highlight removed */
/* Style the New Post button gradient background - remove borders */
[data-theme="liquid-glass"] .grid.grid-flow-col.grid-rows-2.grid-cols-2 .bg-gradient-to-t {
background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
border-radius: 0.5rem !important; /* Slightly rounder for softer look */
border: none !important;
}
/* Remove inner glow pseudo-elements - keep buttons clean */
/* Create unified jelly glass container for feed + right nav */
[data-theme="liquid-glass"] main {
position: relative;
background: transparent !important;
overflow: visible;
isolation: isolate;
align-self: stretch !important;
margin-top: 0 !important;
border-left: 1px solid rgba(255, 255, 255, 0.03);
}
/* Liquid Blue Main Container - Futuristic AI Interface */
[data-theme="liquid-blue"] main {
position: relative;
background: transparent !important;
overflow: visible;
isolation: isolate;
align-self: stretch !important;
margin-top: 0 !important;
border-left: 1px solid rgba(0, 255, 255, 0.2);
}
/* Unified glass background spanning feed and right nav */
[data-theme="liquid-glass"] main::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-radius: 0; /* Removed rounded edges */
z-index: 0;
box-shadow:
0 0 20px rgba(33, 150, 243, 0.15),
0 0 40px rgba(138, 43, 226, 0.1),