-
Notifications
You must be signed in to change notification settings - Fork 5
/
userChrome.css
1223 lines (976 loc) · 36.4 KB
/
userChrome.css
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
/*::::Firefox Halo::::*/
/* The code here is honestly super disorganzied. If you organize it, I will be greatful, but I will probably do so in the future */
/* Removes the little bar over the active tab when you hover */
.tab-line{background-color: transparent !important;}
/* Removes the tiny line in the bookmarks bar */
toolbarseparator {
appearance: auto;
-moz-default-appearance: separator;
margin: 3px 4px;
display: none !important;
}
/* Removes the little "look at other tabs" thing */
#alltabs-button {
list-style-image: url(chrome://global/skin/icons/arrow-down.svg);
display: none !important;
}
/* Changes the little sheild icon animation in the URL bar */
#tracking-protection-icon-box:not([hasException])[active] > #tracking-protection-icon-animatable-box > #tracking-protection-icon-animatable-image {
/* Overrides the default 'display: -moz-box' to prevent icon shifting issue
with scaled text, see Bug 1591049 */
background-image: url("svg/tracking-protection-animation.svg") !important;
}
/* Changes the three sound icons */
.tab-icon-overlay[soundplaying] {
list-style-image: url("svg/audio/tab-audio-playing-small.svg") !important;
}
.tab-icon-overlay[muted] {
list-style-image: url("svg/audio/tab-audio-muted-small.svg") !important;
}
.tab-icon-overlay[activemedia-blocked] {
list-style-image: url("svg/audio/tab-audio-blocked-small.svg") !important;
}
.tab-icon-overlay[crashed] {
list-style-image: url("svg/audio/crashed.svg") !important;
}
.tab-icon-sound[activemedia-blocked] {
list-style-image: url(svg/audio/tab-audio-playing.svg) !important;
}
.tab-icon-sound[muted] {
list-style-image: url(svg/audio/tab-audio-muted.svg) !important;
}
.tab-icon-sound[activemedia-blocked] {
list-style-image: url(svg/audio/tab-audio-blocked.svg) !important;
}
/* Changes the color of "You have not granted this site any special permissions." text */
#identity-popup-permissions-content > description,
#protections-popup-content > description {
color: #b24747 !important;
}
/* changes the logo in the URL bar to Halo when you're on a Firefox page */
#identity-box[pageproxystate="valid"].chromeUI #identity-icon {
list-style-image: url("firefox_halo_red_with_paw_48.png") !important;
}
/* These three remove the white color around the firefox logo in the URLbar*/
#identity-box[pageproxystate="valid"].notSecureText > .identity-box-button, #identity-box[pageproxystate="valid"].chromeUI > .identity-box-button, #identity-box[pageproxystate="valid"].extensionPage > .identity-box-button, #urlbar-label-box {
background-color: transparent !important;
}
#identity-box[pageproxystate="valid"].notSecureText > .identity-box-button:hover:not([open]), #identity-box[pageproxystate="valid"].chromeUI > .identity-box-button:hover:not([open]), #identity-box[pageproxystate="valid"].extensionPage > .identity-box-button:hover:not([open]) {
background-color: transparent !important;
}
#identity-box[pageproxystate="valid"].notSecureText > .identity-box-button:hover:active, #identity-box[pageproxystate="valid"].notSecureText > .identity-box-button[open="true"], #identity-box[pageproxystate="valid"].chromeUI > .identity-box-button:hover:active, #identity-box[pageproxystate="valid"].chromeUI > .identity-box-button[open="true"], #identity-box[pageproxystate="valid"].extensionPage > .identity-box-button:hover:active, #identity-box[pageproxystate="valid"].extensionPage > .identity-box-button[open="true"] {
background-color: transparent !important;
}
/* Removes the dumb line above the search items along with their padding */
/* Top one */
#urlbar[open] > .urlbarView > .urlbarView-body-outer > .urlbarView-body-inner {
border-top: none !important;
}
.urlbarView-results {
padding-block: 0px !important;
}
/* Bottom one */
.urlbarView:not([noresults]) > .search-one-offs:not([hidden]) {
border-top: none !important;
}
#urlbar .search-one-offs:not([hidden]) {
padding-block: 0px !important;
}
/* Changes the color of the border of the zoom button in the URL bar */
#urlbar-zoom-button {
border: 1px solid #b24747 !important;
padding: 0px 7px !important;
}
/* This block autohides the bookmarks bar */
#PersonalToolbar {
visibility: collapse !important;
margin-bottom: -20px !important;
transition: all .4s ease .5s !important;
}
#navigator-toolbox:hover > #PersonalToolbar {
visibility: visible !important;
margin-bottom: 0px !important;
transition: all .4s ease .5s !important;
}
/* ENDBLOCK */
/* This stops the URL bar from shifting up and to the right */
#urlbar[breakout],
#urlbar[breakout][breakout-extend] {
--urlbar-height: 28px !important;
--urlbar-toolbar-height: 30px !important;
width: 100% !important;
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
left: 0 !important;
}
/* Changes the color of the focused URLbar*/
#urlbar[focused="true"]:not([suppress-focus-border]) > #urlbar-background,
#searchbar:focus-within {
outline-color: #b24747 !important;
border-color: transparent;
}
/* This stops the URL bar from enlarging */
#urlbar[breakout][breakout-extend] > #urlbar-input-container,
#urlbar-input-container {
height: var(--urlbar-height) !important;
width: 100% !important;
padding-block: unset !important;
padding-inline: unset !important;
transition: none !important;
}
/* Removes the "Added to library" dialogue */
#confirmation-hint {
display: none !important;
}
/* Changes the color of links in the URL bar */
.urlbarView-url {
overflow: hidden;
color: #d28888 !important;
}
/* Changes the general link color */
.text-link {
color: #b24747 !important;
}
/* Changes the "Search with <Engine>" text color */
.urlbarView-title:not(:empty) ~ .urlbarView-action {
color: #d28888 !important;
}
/* Gets rid of the ugly white when hovering */
.urlbarView-row:not([type="tip"], [type="dynamic"], [has-help]):hover > .urlbarView-row-inner, .urlbarView-row[has-help] > .urlbarView-row-inner:not([selected]):hover {
background-color: transparent !important;
}
.urlbarView-row:not([type="tip"], [type="dynamic"], [has-help]):hover > .urlbarView-row-inner, .urlbarView-row[has-help] > .urlbarView-row-inner:not([selected]) {
background-color: transparent !important;
}
.urlbarView-row:not([type="tip"], [type="dynamic"])[selected] > .urlbarView-row-inner, .urlbarView-row-inner[selected] {
background-color: transparent !important;
color: #b24747 !important;
}
.searchbar-engine-one-off-item:not([selected]):hover {
background-color: transparent !important;
color: inherit;
}
:root:not(:-moz-lwtheme) #urlbar:not([focused="true"]) {
--urlbar-box-bgcolor: #1a1a1a !important;
}
#urlbar:is([focused="true"], [open]) > #urlbar-background, #searchbar:focus-within {
background-color: #1a1a1a !important;
}
/* Inverts the red and grey when you select text in the URL bar */
::selection {
background: #b24747 !important;
color: #131313 !important;
}
/* Centers bookmarks in the bookmark toolbar */
#PlacesToolbarItems{ -moz-box-pack: center }
/* Changes the color of the space to the right of open tabs */
#tabbrowser-tabs {
background-color: #none !important;
}
/* Changes the little arrow that some times appears to red*/
#tabbrowser-arrowscrollbox::part(scrollbutton-up), #tabbrowser-arrowscrollbox::part(scrollbutton-down) {
fill: #b24747 !important;
}
/* Changes the color of the star button on websites you can bookmark */
#star-button {
fill: #b24747 !important;
}
/* Changes the color of the animation when you bookmark a page */
#star-button[starred][animate] + #star-button-animatable-box > #star-button-animatable-image {
stroke: #b24747 !important;
fill: #b24747 !important;
color: #b24747 !important;
}
/* This removes the flash of blue on tab load */
.tabbrowser-tab .tab-loading-burst {
display: none !important;
}
/* These two make it so that the throbber (the thing that goes back and forth during page loading) is the correct color*/
/* The first one also changes the text's color for some reason */
.tab-content[selected="true"]
{
border-radius: 9px !important;
border: solid #000000 !important;
background-color: #1a1a1a !important;
font-weight: bold !important;
color: #b24747 !important;
}
#tabbrowser-tabs {
--tab-loading-fill: #b24747 !important;
}
/* Changes the color behind of traffic light buttons and margin (mac) */
.titlebar-buttonbox {
margin-left: 12px !important;
margin-right: 12px !important;
}
toolbar#TabsToolbar
{
-moz-appearance: none !important;
background-color: #000000 !important;
}
#TabsToolbar .toolbarbutton-1 {
margin: 0 0 var(--tabs-navbar-shadow-size) !important;
padding: 2px !important;
}
#TabsToolbar .toolbarbutton-1:hover {
margin: 0 0 var(--tabs-navbar-shadow-size) !important;
padding: 2px !important;
background-color: #000000 !important;
}
/* Gets rid of the space on the top of the window that's not taken up by tabs */
.titlebar-spacer[type="pre-tabs"],
.titlebar-spacer[type="post-tabs"] {
display: none !important;
width: 0px !important;
max-width: 0px !important;
}
/* Changes the text color when you type something into the URL bar */
#urlbar{
box-shadow: none !important;
background-color: #b24747 !important;
background: #1a1a1a !important;
border: none !important;
color : #b24747 !important;
font-weight: bold !important;
}
/* Removes the faint line above the URL bar */
#nav-bar {
box-shadow: none !important;
border-top: none !important;
}
/* Changes the new tab favicon */
.tabbrowser-tab[label^="New Tab"] .tab-icon-image {
list-style-image: none !important;
width: 0 !important;
padding-left: 16px !important;
background: url("firefox_halo_red_with_paw_48.png") !important;
background-size: 16px 16px !important;
background-repeat: no-repeat !important;
}
/* Changes the new private tab favicon */
.tabbrowser-tab[label^="Private Browsing"] .tab-icon-image {
list-style-image: none !important;
width: 0 !important;
padding-left: 16px !important;
background: url("firefox_halo_with_paw_private_favicon.png") !important;
background-size: 16px 16px !important;
background-repeat: no-repeat !important;
}
/* Changes the color of the bookmarks toolbar */
#PersonalToolbar {
background-color: #1a1a1a !important;
color: #b24747 !important;
}
#PersonalToolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover, #tabbrowser-arrowscrollbox:not([scrolledtostart="true"])::part(scrollbutton-up):hover, #tabbrowser-arrowscrollbox:not([scrolledtoend="true"])::part(scrollbutton-down):hover, toolbarbutton.bookmark-item:not(.subviewbutton, [disabled="true"], [open]):hover, toolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover > .toolbarbutton-icon, toolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover > .toolbarbutton-text, toolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover > .toolbarbutton-badge-stack {
background-color: green;
color: inherit;
}
#PersonalToolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover, #tabbrowser-arrowscrollbox:not([scrolledtostart="true"])::part(scrollbutton-up):hover, #tabbrowser-arrowscrollbox:not([scrolledtoend="true"])::part(scrollbutton-down):hover, toolbarbutton.bookmark-item:not(.subviewbutton, [disabled="true"], [open]):hover, toolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover > .toolbarbutton-icon, toolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover > .toolbarbutton-text, toolbar .toolbarbutton-1:not([disabled="true"], [checked], [open], :active):hover > .toolbarbutton-badge-stack {
background-color: #1a1a1a !important;
color: #b24747 !important;
}
#PersonalToolbar .toolbarbutton-1:not([disabled="true"]):is([open], [checked], :hover:active), #tabbrowser-arrowscrollbox:not([scrolledtostart="true"])::part(scrollbutton-up):hover:active, #tabbrowser-arrowscrollbox:not([scrolledtoend="true"])::part(scrollbutton-down):hover:active, toolbarbutton.bookmark-item:hover:active:not(.subviewbutton, [disabled="true"]), toolbarbutton.bookmark-item[open="true"], toolbar .toolbarbutton-1:not([disabled="true"]):is([open], [checked], :hover:active) > .toolbarbutton-icon, toolbar .toolbarbutton-1:not([disabled="true"]):is([open], [checked], :hover:active) > .toolbarbutton-text, toolbar .toolbarbutton-1:not([disabled="true"]):is([open], [checked], :hover:active) > .toolbarbutton-badge-stack {
background-color: #1a1a1a !important;
color: #b24747 !important;
}
/* Changes the color of the bookmark stars */
.urlbarView-row[type=bookmark] > .urlbarView-row-inner > .urlbarView-no-wrap > .urlbarView-type-icon {
fill: #b24747 !important;
}
/* This makes it so that on start-up the screen doesn't flash */
#browser vbox#appcontent tabbrowser,
#content,
#tabbrowser-tabpanels,
browser[type=content-primary],
browser[type=content] > html{
background: #1a1a1a !important;
}
/* Removes weird line between the stacks and profile */
#PanelUI-button {
border:none !important;
margin-inline-start: 0px !important;
padding-inline-start: 0px !important;
}
/* This mess makes it so that there's no hover over the toolbar icons */
.urlbar-icon,
.urlbar-icon-wrapper,
#tabbrowser-tabs toolbarbutton,
toolbar toolbarbutton > .toolbarbutton-icon,
toolbar toolbarbutton > .toolbarbutton-badge-stack,
.titlebar-button,
#identity-box,
#tracking-protection-icon-container,
.findbar-textbox~toolbarbutton,
toolbarbutton.scrollbutton-up,
toolbarbutton.scrollbutton-down {
background-color: transparent !important;
}
/* Removes the border below the bookmarks toolbar */
#navigator-toolbox {
border: none !important;
}
/* Changes the colors in the URL bar */
#urlbar-background {background-color: #1a1a1a !important; border-color:#b24747 !important;}
#urlbar-input-container {color: #b24747 !important;}
#urlbar {
background-color: #1a1a1a !important;
}
/* Fixes the reload animation color */
.toolbarbutton-animatable-box, .toolbarbutton-1 {
fill: #b24747 !important;
}
/* removes the weird shape of the background hover over tabs */
.tab-background {
display: none !important;
}
/* Removes the line between tabs */
.tabbrowser-tab::before,
.tabbrowser-tab::after{
display: none !important;
}
/* These two remove the weird vertical color bars between tabs*/
:root:not([lwtheme-mozlightdark]) #TabsToolbar:not([brighttext]) #tabbrowser-tabs:not([noshadowfortests]) .tabbrowser-tab:is([visuallyselected="true"], [multiselected]) > .tab-stack > .tab-background:-moz-lwtheme {
display: none;
}
#TabsToolbar:not([brighttext]) #tabbrowser-tabs:not([noshadowfortests]) .tabbrowser-tab:is([visuallyselected="true"], [multiselected]) > .tab-stack > .tab-background {
display: none;
}
/* Removes the weird spaces between tabs*/
.tabbrowser-tab {
padding-inline: 0 !important;
}
/* Changes the tab topline color */
.tabbrowser-tab {
--tab-line-color: #b24747 !important;
color: #b24747 !important;
}
/* Changes the colors of the area behind the tabs */
#tabbrowser-tabs {
background-color: #000000 !important;
}
/* Changes toolbar button colors */
.toolbarbutton-1 {
fill: #b24747 !important;
background-color: #1a1a1a !important;
}
/* This block changes the animation and colors of the download button */
#downloads-button[attention="success"]>.toolbarbutton-badge-stack>#downloads-indicator-anchor>#downloads-indicator-icon,
#downloads-button[attention="success"]>.toolbarbutton-badge-stack>#downloads-indicator-anchor>#downloads-indicator-progress-outer {
fill: #b24747 !important;
}
#downloads-button[notification="start"]>.toolbarbutton-badge-stack>#downloads-indicator-anchor>#downloads-indicator-icon,
#downloads-notification-anchor[notification="start"]>#downloads-indicator-notification {
fill: #b24747 !important;
}
#downloads-button[progress]>.toolbarbutton-badge-stack>#downloads-indicator-anchor>#downloads-indicator-icon,
#downloads-button[progress]>#downloads-indicator-anchor>#downloads-indicator-progress-outer {
fill: #b24747 !important;
}
#downloads-button>.toolbarbutton-badge-stack>#downloads-indicator-anchor>#downloads-indicator-progress-outer>#downloads-indicator-progress-inner {
fill: red !important;
border: 1px !important;
border-color: #b24747 !important;
}
/* ENDBLOCK */
/*This block changes colors inside of the downloads menu*/
/* This removes the line above "Show All Downloads" */
.panel-footer > xul|button {
border-top: 1px solid none !important;
/* !important overrides :hover and :active colors from button.css: */
color: #b24747 !important;
}
/*Changes the color of the area around "Show All Downloads" and changes the "Show All Downloads" text color*/
.panel-footer {
background-color: #1a1a1a !important;
font-weight: bold !important;
color: #b24747 !important;
}
:root {
--arrowpanel-background: #1a1a1a !important;
--arrowpanel-color: #b24747 !important;
--arrowpanel-dimmed: none !important;
--arrowpanel-field-background: #1a1a1a !important;
--panel-separator-color: #b24747 !important;
--toolbarbutton-icon-fill-attention: var(--lwt-toolbarbutton-icon-fill-attention, #b24747) !important;
}
/* ENDBLOCK */
/* This block makes the tabs seamless with the rest of the config's color */
tab
{
height:3rem;
background-color: #000000 !important;
font-weight: thin !important;
color: #b24747 !important;
}
#nav-bar-customization-target {
background-color: #b24747 !important;
}
/* ENDBLOCK */
/* This block changes the tracking protection menu */
/* Changes the little arrow going to the URL bar */
/* This is not working right now for some reason */
#protections-popup[mainviewshowing][side=top]::part(arrow) {
fill: #1a1a1a !important;
}
/* Changes the background colors and some text colors */
#protections-popup-mainView-panel-header-section {
color: #b24747 !important;
background: radial-gradient(circle farthest-side at top right, #333333, #1a1a1a) !important;
}
/* Changes the color of most of the text*/
#protections-popup-message {
background-image: url(svg/hero-message-background.svg) !important;
color: #b24747 !important;
}
/* Changes the color of the circle of the binary switch */
.protections-popup-tp-switch::before {
background: #1a1a1a !important;
}
/* The 6 of these change the background color both not and on hover */
.protections-popup-tp-switch {
background-color: #b24747 !important;
border: 1px solid #1a1a1a !important;
}
.protections-popup-tp-switch::before {
background: #1a1a1a !important;
outline: 1px solid b24747 !important;
}
.protections-popup-tp-switch[enabled]:hover {
background-color: #b24747 !important;
}
.protections-popup-tp-switch[enabled]:hover:active {
background-color: #b24747 !important;
}
.protections-popup-tp-switch:not([enabled]):hover {
background-color: #b24747 !important;
}
.protections-popup-tp-switch:not([enabled]):hover:active {
background-color: #b24747 !important;
}
/* The two of these change the "caution" section color*/
#protections-popup[hasException] #protections-popup-tp-switch-section {
background: repeating-linear-gradient(
-56deg,
#333333,
#333333 10px,
transparent 10px,
transparent 20px
) !important;
}
:root[lwt-popup-brighttext] #protections-popup[hasException] #protections-popup-tp-switch-section {
background: repeating-linear-gradient(
-56deg,
#333333,
#333333 10px,
transparent 10px,
transparent 20px
) !important;
}
/* Changes the "No known trackers..." text color */
#protections-popup-no-trackers-found-description {
color: #b24747!important;
}
/* These two change the "Custom" and "# Blocked" text */
#protections-popup-trackers-blocked-counter-description {
color: #b24747 !important;
}
#protections-popup-footer-protection-type-label {
color: #b24747 !important;
}
/* ENDBLOCK */
/* Changes the color of the empty area around the nav bar */
#nav-bar-customization-target {
background-color: #1a1a1a !important;
}
/* This block changes the colors in the hamburger and other menus */
.PanelUI-subView, .panel-subview-body {
--newtab-search-icon-color: #b24747;
--arrowpanel-background: none !important;
--arrowpanel-color: #b24747 !important;
--lwt-accent-color: #b24747 !important;
--lwt-text-color: #b24747 !important;
color: #B24747 !important;
background-color: #1a1a1a !important;
border: 1px solid #b24747 !important;
}
.PanelUI-remotetabs-clientcontainer > label[itemtype="client"] {
color: #b24747 !important;
}
/* ENDBLOCK */
/* Account Settings Color */
#fxa-menu-header-description {
color: #b24747 !important;
}
#fxa-menu-header-title {
color: #b24747 !important;
font-weight: bold !important;
}
.PanelUI-remotetabs-clientcontainer > label[itemtype="client"] {
font-weight: bold !important;
}
/* Firefox Services Color */
.subview-subheader {
color: #b24747 !important;
font-weight: bold !important;
}
/* Sync animation color */
#PanelUI-fxa-menu-syncnow-button[syncstatus="active"] > .toolbarbutton-icon,
#PanelUI-remotetabs-syncnow[syncstatus="active"] > .toolbarbutton-icon {
fill: #b24747 !important;
}
/* Send tab to device color */
.subviewbutton[disabled="true"] {
color: #b24747 !important;
}
/* ENDBLOCK */
/* Changes the zoom reset color */
#appMenu-zoomReset-button {
min-height: unset;
border: none !important;
border-radius: 10000px;
padding: 1px 8px;
background-color: #d28888 !important;
}
/* Changes the text color in the bookmarks bar */
#personal-bookmarks .bookmark-item > .toolbarbutton-text {
text-color: #b24747 !important;
color: #b24747 !important;
background-color: none !important
}
/* This block changes the colors of the "Edit This Bookmark" popup */
.panel-footer > xul|button:not([disabled])[default] {
color: #1a1a1a !important;
background-color: #b24747 !important;
}
.panel-footer > xul|button:not([disabled])[default]:hover {
background-color: #b24747 !important;
}
.panel-footer > xul|button:not([disabled])[default]:hover:active {
background-color: #b24747 !important;
}
/* Changes the text & border color of some elements*/
#editBookmarkPanelRows > vbox > html|input,
#editBookmarkPanelRows > vbox > hbox > html|input {
background-color: #1a1a1a !important;
border: 1px solid #b24747 !important;
}
/* ENDBLOCK */
/* Hides the private browsing indicator */
.private-browsing-indicator {
display: none !important;
}
/* The block below changes icons for various different sites to match Halo's theme */
/* YouTube */
.bookmark-item[image^="page-icon:https://www.youtube.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/youtube_icon.png")!important;
background-size: cover!important;
}
/* Twitter */
.bookmark-item[image^="page-icon:https://twitter.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/twitter_icon.png")!important;
background-size: cover!important;
}
/* Reddit */
.bookmark-item[image^="page-icon:https://www.reddit.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/reddit_icon.png")!important;
background-size: cover!important;
}
/* Pinterest */
.bookmark-item[image^="page-icon:https://www.pinterest.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/pinterest_icon.png")!important;
background-size: cover!important;
}
/* Pinterest */
.bookmark-item[image^="page-icon:https://www.pinterest.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/pinterest_icon.png")!important;
background-size: cover!important;
}
/* Facebook */
.bookmark-item[image^="page-icon:https://www.facebook.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/facebook_icon.png")!important;
background-size: cover!important;
}
/* Tumblr */
.bookmark-item[image^="page-icon:https://www.tumblr.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/tumblr_icon.png")!important;
background-size: cover!important;
}
/* Instagram */
.bookmark-item[image^="page-icon:https://www.instagram.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/instagram_icon.png")!important;
background-size: cover!important;
}
/* LinkedIn */
.bookmark-item[image^="page-icon:https://www.linkedin.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/linkedin_icon.png")!important;
background-size: cover!important;
}
/* NextDoor */
.bookmark-item[image^="page-icon:https://www.nextdoor.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/nextdoor_icon.png")!important;
background-size: cover!important;
}
/* DeviantArt */
.bookmark-item[image^="page-icon:https://www.deviantart.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/deviantart_icon.png")!important;
background-size: cover!important;
}
/* Discord */
.bookmark-item[image^="page-icon:https://discord.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/discord_icon.png")!important;
background-size: cover!important;
}
/* TikTok */
.bookmark-item[image^="page-icon:https://www.tiktok.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/tiktok_icon.png")!important;
background-size: cover!important;
}
/* Wikipedia */
.bookmark-item[image^="page-icon:https://en.wikipedia.org"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/wikipedia_icon.png")!important;
background-size: cover!important;
}
/* Amazon */
.bookmark-item[image^="page-icon:https://www.amazon.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/amazon_icon.png")!important;
background-size: cover!important;
}
/* Disney Plus */
.bookmark-item[image^="page-icon:https://www.disneyplus.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/disneyplus_icon.png")!important;
background-size: cover!important;
}
/* Yelp */
.bookmark-item[image^="page-icon:https://www.yelp.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/yelp_icon.png")!important;
background-size: cover!important;
}
/* Netflix */
.bookmark-item[image^="page-icon:http://www.netflix.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/netflix_icon.png")!important;
background-size: cover!important;
}
.bookmark-item[image^="page-icon:https://www.netflix.com/browse"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/netflix_icon.png")!important;
background-size: cover!important;
}
/* Drive */
.bookmark-item[image^="page-icon:https://drive.google.com"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/drive_icon.png")!important;
background-size: cover!important;
}
/* IMDb */
.bookmark-item[image^="page-icon:https://www.imdb.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/imdb_icon.png")!important;
background-size: cover!important;
}
/* Fandom */
.bookmark-item[image^="page-icon:https://www.fandom.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/fandom_icon.png")!important;
background-size: cover!important;
}
/* Tripadvisor */
.bookmark-item[image^="page-icon:https://www.tripadvisor.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/tripadvisor_icon.png")!important;
background-size: cover!important;
}
/* Craigslist */
.bookmark-item[image^="page-icon:https://craigslist.org/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/craigslist_icon.png")!important;
background-size: cover!important;
}
/* Ebay */
.bookmark-item[image^="page-icon:https://www.ebay.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/ebay_icon.png")!important;
background-size: cover!important;
}
/* Indeed */
.bookmark-item[image^="page-icon:https://www.indeed.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/indeed_icon.png")!important;
background-size: cover!important;
}
/* Etsy */
.bookmark-item[image^="page-icon:https://www.etsy.com/"] > .toolbarbutton-icon {
width: 0px!important;
height: 0px!important;
padding: 0 0 16px 16px!important;
background-image: url("icon/etsy_icon.png")!important;
background-size: cover!important;
}
/* Apple */