forked from StylishThemes/GitHub-Dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-dark.css
13299 lines (13299 loc) · 605 KB
/
github-dark.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
/*! Github Dark v2.0.40 (2020-04-11) */
/*! Repository: https://github.com/StylishThemes/GitHub-Dark */
/*! License: https://creativecommons.org/licenses/by-sa/4.0/ */
@-moz-document regexp("^https?://((education|gist|graphql|guides|help|lab|raw|resources|status|developer|support)\\.)?github\\.com/((?!generated_pages/preview).)*$"), domain("githubusercontent.com"), domain("www.githubstatus.com") {
:root {
--bg-custom: /*[[bg-custom]]*/;
--bg-img: /*[[bg-choice]]*/ url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAAAAABURb1YAAAFnklEQVR4AWWXCY4cwXbE6h4JMhCvMPc/ov+3Ox9QsLCGpKlFHILd+UQ559AGDkBSFXWmomonqkL/XuUcIPUcONjHCJyE36KaqNiaRnVCG9TGpgIU9hIfohCBVGj24ammo04lU3Fy0NZDAyZi5AElHjgEGlRbG1WjraIt7TmADQkAaoEHsOXAAaeqat9RVTqjosyEH5W+DQCQt8BzIJMfXJI3e5tGRefSlRn3NrO3scnvNl26FN5RITGNfjm3GM/+FhQgnlQeImC+dEm8rzHVTNGL9EADVsTAIfGJBziRy7RlmcZU1IYpHIj+4JrWym8/XSwzompmFNVOFdTOAAfs61KZ6eXcp57fykQUOxNBmTesz2HpCnCg3UV/bA7VRpWGNqKtrYLTs0ilCjgxiZxjeLC5dDPBFn4Pn2ja6BRUL10DTgET4Focq8rn8casxV4E5tIlZvytqtfivCOKZrqc38G7egnkXecyPZdzubc57VtUnbfL+a0u3b1N3d9Mci7cKocHoh3xihLQ6fXUlgTOOfVkXSUFINoWHhqxE23RTmCqtoEJaITkIrUCkU9fnqpqm+40VSXS3CLaSzfGBb4rPuOSfN0ylLve6/jpcrbL2dTlnOdv5AamKjLvLN1XruMNS/cul/hx8twKpKYRaE2DOp8+c+lW7uVXVQ7Vx0x1G3HXjNocsHCac7NbWc6egwJVHu2kRTVNC2pqv2U4XNsv5/yWJlV9+NJ1C7xluInlcr7rK+Kg+qy7onQqgnbi7UHcS3qXjdw3bO5tumycYlVssMI5EXXpRnatPK362KodtVU60cm+eQT10sVLFwJYlVaf7UGSoi5dQF3DvnTX3UvXTPO8quKH7jsXhm/PxfKWZXqBM5sS33kmKtC31Q05fI095i5IPpyzRXqSy1Sr17p1F7NE8vMtnNbLpVVtk8c0OrfF0sKxHnIpYgHW4puMomTz8mgmrSjpvrxhX97l7LqLpl7bW9BH9/MNzF8XwRqL8/m7c30eFYV5VX3QTquK06XbLt16F4ks+8Z9m6gPtpcuk3OvibCekng4lzMHi9MoqZmKj9tdbQCbc7bcEA+oEJduRNNL1waf1tuI9MDBUK8t3k9uFz3rrqadO9Ln9TL/ezlwDvky3TW7ZmXfpc77TN0yhOXnP939LvVDV9s+tgLTm0TqYd1lea3PRFuVjLa562HdPbCfascGrvO3DMeIATVqVRO8vfHrbupdfo1dzlXUdkVLZsS1mLPG3rWcl+4B1l1537h0VXzU1tyLG7cCu+LSrSqo06hocy3WCcil65qHDbuEYzQN2HpT3jFt9LEFvHTP1nxbXOEkbhkKmd+6BTfVZ/I143z/Fyz6Za92o0I7I6gzfeYAHPwy/Rb43L9TLtMt8CtwW1xvQvbR1g9n7qJRNN1kdxcdH7cM58Szxq679MdLOhE72t6VNEpHHkzwRyjBcGth+dE99pIkVbWaEWmvnQ8Yl7Mp59zpRWXdNo6odrO754Zzvxf/010nP7onb1TR+bgbVPB9PcADJvH/043Kvk0UzLRxQ6UiaeTAcyxYl2lyrrvZv8v2wE7U1uVcST0821jJeIDKWuyxiqnuko7q3+zJYXJ46nV3D67EyL+lQ9F2qkr+3kUafQpwYE8T329p6y7OX1TF97fQv/c+l87zj7Hsgpig4qRLd9fMPs74rLGyCzRbhmVqpy7nqvPmTD1gvKe7b2U8u1QzmtuDuEtbgT3c8QBJveo6cueFkUwv59nVmfFw1jl4/unuOT9qERV76ers8n23z/c8/Xy7a4lwwLplmGusbRp33Up13+ZDN3KPxNVMhY62vUQyRTse6+cKHtZYjIfDh260Cjbb3Vy6R8H8SMBzqSwrsB1UTacoknlnOb8V4JD9Njfpwz/fHjpBUeevcAtcl65sqXPX9D87RUTLc/dfOgAAAABJRU5ErkJggg==");
--white-1: #1e2022;
--white-2: #303234;
--white-3: #454647;
--white-4: #616161;
--white-5: #3a3c3d;
--white-6: #524f4f;
--white-7: #767676;
--black-1: #dfdfdf;
--black-2: #b2b6bb;
--black-3: #d1d5da;
--black-3: #b5bac1;
--black-4: #969a9f;
--blue-1: #559cf8;
--blue-2: #27364a;
--blue-3: #263242;
--blue-4: #34465f;
--blue-5: #405675;
--box-shadow: #9b9b9b26;
/* Syntax highlighting */
--s-background: #282c34;
--s-context: #2c313a;
--s-chalky: #e5c07b;
--s-coral: #e06c75;
--s-cyan: #56b6c2;
--s-error: #f44747;
--s-ivory: #abb2bf;
--s-malibu: #61afef;
--s-sage: #98c379;
--s-stone: #5c6370;
--s-violet: #c678dd;
--s-whiskey: #d19a66;
}
button {
color: #b5b5b5;
}
/* https://github.com/StylishThemes/GitHub-Dark/issues/968 */
input, textarea {
color: #bebebe;
}
svg {
fill: #bebebe;
}
svg[fill="none"] {
fill: none;
}
.Popover-message::before {
border-bottom-color: #343434;
}
.Popover-message::after {
border-bottom-color: #181818;
}
.alert {
background: #182030;
border-color: #246;
}
.CircleBadge, .page-profile .user-status-container {
background: #181818;
}
body[class="page-responsive"] .list-options .list-item > .octicon {
color: #181818;
}
/* begin remap-css rules */
/* remap-css rule for "background: #fff" */
#graphiql .AvatarStack-body, #graphiql .blankslate code,
#graphiql .graphiql-container .doc-explorer,
#graphiql .graphiql-container .docExplorerWrap,
#graphiql .graphiql-container .execute-options,
#graphiql .graphiql-container .historyPaneWrap,
#graphiql .graphiql-container .toolbar-menu-items,
#graphiql .graphiql-container .toolbar-select-options,
#graphiql .markdown-body .csv-data .blob-num, #graphiql .pagination a,
#graphiql .pagination em, #graphiql .pagination span, .AvatarStack-body,
.MarketplaceEdit-body .menu-item.selected,
.ajax-pagination-form .ajax-pagination-btn, .autocomplete-results,
.blankslate code, .boxed-group-inner, .commit-group-title .octicon-git-commit,
.conversation-list-heading .inner, .dashboard-notice .coupon,
.details-overlay[open] > .dropdown-item:hover,
.discussion-timeline.team-discussion-timeline .blankslate,
.file-commit-form--full, .full-commit .commit-meta, .gist-quicksearch-results,
.manage-repo-access-icon, .markdown-body .csv-data .blob-num,
.nav-desktop-langDropdown, .nav-desktop-productDropdown,
.not-found-octocat-wrapper::after, .oauth-org-access-details,
.oauth-org-access-details .oauth-org-item.revoked,
.page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting,
.pagination a, .pagination em, .pagination span, .qr-code-table .white,
.signup-plan-card-redesign, .signup-plan-card-redesign:hover,
.signup-plan-card:hover, .suggester, .tint-box.transparent, .topic-tag-outline,
body,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-content .settings-section .field select,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item,
body.gitako-ready .markdown-body .clippy-wrapper .clippy:hover,
body.status .cpt-table .content, body.status .datepicker, body.status .es-menu,
body.zh_logged_in .CalendarDay__blocked_minimum_nights,
body.zh_logged_in .CalendarDay__blocked_minimum_nights:active,
body.zh_logged_in .CalendarDay__blocked_minimum_nights:hover,
body.zh_logged_in .CalendarDay__blocked_out_of_range,
body.zh_logged_in .CalendarDay__blocked_out_of_range:active,
body.zh_logged_in .CalendarDay__blocked_out_of_range:hover,
body.zh_logged_in .CalendarDay__default,
body.zh_logged_in .CalendarDay__outside, body.zh_logged_in .CalendarMonth,
body.zh_logged_in .CalendarMonthGrid, body.zh_logged_in .DateInput,
body.zh_logged_in .DateInput_input__focused, body.zh_logged_in .DayPicker,
body.zh_logged_in .DayPickerKeyboardShortcuts_panel,
body.zh_logged_in .DayPickerNavigation_button__verticalDefault,
body.zh_logged_in .DayPicker__horizontal,
body.zh_logged_in .DayPicker_weekHeader__verticalScrollable,
body.zh_logged_in .search-query:focus,
body.zh_logged_in .zh-epic-creator-page-visible .zh-epic-creator-container--fullscreen,
body.zh_logged_in .zh-epic-creator-tab.selected,
body.zh_logged_in .zh-epic-form-control-small:focus,
body.zh_logged_in .zh-epic-form-control:focus,
body.zh_logged_in .zh-form-control-small:focus,
body.zh_logged_in .zh-form-control:focus,
body.zh_logged_in .zh-issuecard-container, body.zh_logged_in .zh-login-status,
body.zh_logged_in .zh-login-status__sign-in-button,
body.zh_logged_in .zh-pipeline-issue-content,
body.zh_logged_in .zh-reload-update-prompt-container,
body.zh_logged_in .zh-toggle-button,
body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .search-query:focus,
body.zh_logged_in .zhc-account-details__section,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined,
body.zh_logged_in .zhc-cancel-subscription-modal__missing-features__feature .zhu-checkbox:not(:checked),
body.zh_logged_in .zhc-date-selector .DayPicker,
body.zh_logged_in .zhc-date-selector .DayPicker--horizontal,
body.zh_logged_in .zhc-edit-comment__file-upload,
body.zh_logged_in .zhc-feature-announcement, body.zh_logged_in .zhc-issue-card,
body.zh_logged_in .zhc-popover,
body.zh_logged_in .zhc-reports-date-range .DateRangePickerInput,
body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body-view--root,
body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body__subheader,
body.zh_logged_in .zhc-roadmap-body-empty, body.zh_logged_in .zhc-roadmap-row,
body.zh_logged_in .zhc-roadmap-sidebar-empty,
body.zh_logged_in .zhc-roadmap-track--expandable:not(.react-draggable-dragging):not(.zhc-roadmap-track--resizable):hover .zhc-roadmap-track__drag-handle,
body.zh_logged_in .zhc-roadmap-track__drag-handle--has-background,
body.zh_logged_in .zhc-roadmap-track__drag-handle:hover,
body.zh_logged_in .zhc-roadmap-warning,
body.zh_logged_in .zhc-shortcut-indicator,
body.zh_logged_in .zhc-sidebar-item-add,
body[class="page-responsive"] .ajax-pagination-form .ajax-pagination-btn,
body[class="page-responsive"] .bubble,
body[class="page-responsive"] .discussion-comment,
body[class="page-responsive"] .discussion-header,
body[class="page-responsive"] .discussion-sidebar-metadata-separator,
body[class="page-responsive"] .latest-commit .commit-author,
body[class="page-responsive"] .markdown-body .csv-data .blob-num,
body[class="page-responsive"] .user-bar-graph,
body[data-render-url] .click-for-more, header #search-results-container,
html[prefix] .blankslate code, html[prefix] .btn-primary .counter,
html[prefix] .card, html[prefix] .markdown-body .csv-data .blob-num,
html[prefix] .pagination > span, html[prefix] .pagination a,
html[prefix] .pagination em, image-crop .handle::before, table.files,
ul.comparison-list {
background: #181818;
}
/* remap-css rule for "background-color: #fff" */
#graphiql .AvatarStack-body .avatar, #graphiql .Box,
#graphiql .SelectMenu-blankslate, #graphiql .SelectMenu-item,
#graphiql .SelectMenu-list, #graphiql .SelectMenu-loading,
#graphiql .SelectMenu-message, #graphiql .SelectMenu-tab[aria-selected="true"],
#graphiql .SideNav-item:active, #graphiql .SideNav-item[aria-current="page"],
#graphiql .SideNav-item[aria-selected="true"],
#graphiql .TimelineItem--condensed .TimelineItem-badge,
#graphiql .TimelineItem-break, #graphiql .Toast, #graphiql .avatar-child,
#graphiql .btn-blue .Counter, #graphiql .btn-invisible, #graphiql .btn-outline,
#graphiql .btn-outline.disabled, #graphiql .btn-outline.selected .Counter,
#graphiql .btn-outline:active .Counter, #graphiql .btn-outline:disabled,
#graphiql .btn-outline:hover .Counter, #graphiql .btn-primary .Counter,
#graphiql .btn-transparent:active, #graphiql .btn-transparent:hover,
#graphiql .dropdown-menu, #graphiql .form-control,
#graphiql .form-group .form-control:focus, #graphiql .form-select,
#graphiql .graphiql-container .doc-explorer-contents,
#graphiql .graphiql-container .history-contents,
#graphiql .input-contrast:focus, #graphiql .markdown-body img,
#graphiql .markdown-body table tr, #graphiql .menu,
#graphiql .menu-item.selected, #graphiql .social-count,
#graphiql .tabnav-tab.selected, #graphiql .tabnav-tab[aria-selected=true],
#graphiql [open] > .btn-outline .Counter, #graphiql body, #q,
.AvatarStack-body .avatar, .Box, .Box--overlay, .CopyBlock:active,
.CopyBlock:focus, .CopyBlock:hover, .MarketplaceSideNav,
.SelectMenu-blankslate, .SelectMenu-item, .SelectMenu-list,
.SelectMenu-loading, .SelectMenu-message, .SelectMenu-tab[aria-selected=true],
.SideNav-item:active, .SideNav-item[aria-current="page"],
.SideNav-item[aria-current=page], .SideNav-item[aria-selected="true"],
.SideNav-item[aria-selected=true], .Tile:hover,
.TimelineItem--condensed .TimelineItem-badge, .TimelineItem-break, .Toast,
.advisory-form .form-actions, .advisory-form .form-control,
.advisory-form .previewable-comment-form, .ais-SearchBox-input,
.auth-form-body, .auto-search-group .spinner, .avatar-child,
.billing-addon-items tr.total-row,
.billing-credit-card .javascript-disabled-overlay, .branch-action-body,
.btn-blue .Counter, .btn-blurple .Counter, .btn-invisible, .btn-outline,
.btn-outline.disabled, .btn-outline.selected .Counter,
.btn-outline:active .Counter, .btn-outline:disabled,
.btn-outline:hover .Counter, .btn-outline[aria-disabled=true],
.btn-outline[aria-selected=true] .Counter, .btn-primary .Counter,
.btn-purple .Counter, .btn-transparent:active, .btn-transparent:hover,
.business-sso .business-sso-panel, .business-sso .org-sso-panel,
.choose-team-lp .landing-page-section.features, .coupons .coupon-form-body,
.credit-card.normal .signature, .dashboards-overview-cards .blankslate,
.diffbar, .discussion-timeline-actions, .dropdown-menu,
.file .image .border-wrap, .form-control, .form-group #q:focus,
.form-group .ais-SearchBox-input:focus, .form-group .form-control:focus,
.form-select, .gh-header,
.gh-header .gh-header-sticky.is-stuck + .gh-header-shadow,
.ghh-theme-github .ghh .ghh-state-verified,
.ghh-theme-github .ghh-issue-body tr, .ghh-theme-github .ghh-readme tr,
.ghh-theme-github .tooltipster-box .tooltipster-content, .input-contrast:focus,
.insights-dashboard-callout, .is-bad-file .repo-file-upload-errors,
.is-empty .repo-file-upload-errors, .is-failed .repo-file-upload-errors,
.is-hidden-file .repo-file-upload-errors, .is-too-big .repo-file-upload-errors,
.is-too-many .repo-file-upload-errors, .manage-memberships-tabs-item.selected,
.manage-repo-access-group, .markdown-body img, .markdown-body table tr, .menu,
.menu-item.selected, .menu-item[aria-current], .menu-item[aria-selected=true],
.new-discussion-timeline .composer .comment-form-head.tabnav,
.news .alert .gravatar, .news .commits li img,
.notifications-list-item.notification-unread, .org-sso .business-sso-panel,
.org-sso .org-sso-panel, .orgs-help-item-octicon, .page-preview,
.page-responsive .HeaderMenu--logged-out, .pagehead-tabs-item.selected,
.pagination-loader-container, .phone-buttons, .phone-buttons::after,
.phone-buttons::before, .plan-choice.open, .plan-choice.selected,
.pr-toolbar.is-stuck, .pricing-matrix-column-tier, .pricing-plan-tab-active,
.project-header, .projects-comment-form .comment-form-head .toolbar-commenting,
.reponav-item.selected, .review-comment .is-comment-editing,
.review-summary-form-wrapper, .review-thread-reply .inline-comment-form,
.select-menu-item, .select-menu-modal,
.select-menu-tabs .select-menu-tab-nav.selected,
.select-menu-tabs .select-menu-tab-nav[aria-selected=true],
.select-menu-tabs a.selected, .select-menu-tabs a[aria-selected=true],
.setup-info-module, .social-count, .steps li.current, .tabnav-tab.selected,
.tabnav-tab[aria-current], .tabnav-tab[aria-selected=true], .theme-picker,
.theme-picker-spinner, .thread-subscription-status, .timeline-comment,
.user-profile-nav, .user-profile-sticky-bar::after,
[open] > .btn-outline .Counter, body, body.gitako-ready .gitako-side-bar body,
body.status #uptime-tooltip .tooltip-box,
body.status ._2NFgh0Z6tkGorUToiId47k .status-dropdown__option::before,
body.status ._2NFgh0Z6tkGorUToiId47k [class^="Content__ChildWrapper"] > [class^="Content"],
body.status ._2dv0LNfUzjAAPh-wPACjXb,
body.status ._3c5eahGieigDTmRHO-d7l3 .status-dropdown__option::before,
body.status ._3c5eahGieigDTmRHO-d7l3 [class^="Content__ChildWrapper"] > [class^="Content"],
body.status .component-container,
body.status .component-statuses .component-status-container .component-dropdown-selector .status-dropdown,
body.status .cpt-pill-group button.pill,
body.status .cpt-tabs:not(.unstyled) li.active a,
body.status .cpt-tabs:not(.unstyled).mobile li a,
body.status .cpt-tabs:not(.unstyled).mobile li.active a,
body.status .cpt-tabs:not(.unstyled).mobile li:not(.active) a:hover,
body.status .cpt-toggle .bubble, body.status .dropdown .dropdown-menu,
body.status .grouped-items-selector, body.status .incident-title + .updates,
body.status .layout-content.status-internal .message-container,
body.status .layout-content.status.status-api .section .example-container .example-opener .color-secondary,
body.status .layout-content.status.status-full-history .history-nav a.current,
body.status .layout-content.status.status-full-history .uptime-calendar #uptime-tooltip,
body.status .layout-content.status.status-full-history .uptime-calendar #uptime-tooltip #box-arrow,
body.status .layout-content.status.status-full-history .uptime-calendar #uptime-tooltip .tooltip-box,
body.status .modal, body.status .panel, body.status .popover,
body.status .updates-dropdown-container .updates-dropdown,
body.status .updates-dropdown-container .updates-dropdown .updates-dropdown-section,
body.zh_logged_in .DateInput_input, body.zh_logged_in .DateRangePickerInput,
body.zh_logged_in .DateRangePicker_picker,
body.zh_logged_in .DateRangePicker_picker__fullScreenPortal,
body.zh_logged_in .DayPickerNavigation_button__default,
body.zh_logged_in .SingleDatePickerInput,
body.zh_logged_in .SingleDatePicker_picker,
body.zh_logged_in .SingleDatePicker_picker__fullScreenPortal,
body.zh_logged_in .btn.zh-multi-repo-show-all-btn:hover,
body.zh_logged_in .btn.zh-multi-repo-show-one-btn:hover,
body.zh_logged_in .new-pipeline-column,
body.zh_logged_in .roadmap-loading-state__body,
body.zh_logged_in .zh-app--board-visible .zh-app--is-fullscreen,
body.zh_logged_in .zh-board-loading-message,
body.zh_logged_in .zh-board-menu-item .btn.disabled,
body.zh_logged_in .zh-board-menu-item .btn.disabled:hover,
body.zh_logged_in .zh-collapse-control:hover,
body.zh_logged_in .zh-collapse-control__main-icon,
body.zh_logged_in .zh-dependency-manager-container.TimelineItem .zhc-dependency,
body.zh_logged_in .zh-epic-creator-title input,
body.zh_logged_in .zh-epic-issue-container.TimelineItem .zhc-epic-list,
body.zh_logged_in .zh-epic-issue-list-item-lg,
body.zh_logged_in .zh-epic-issue-list-item-md,
body.zh_logged_in .zh-epic-issue-list-item-sm,
body.zh_logged_in .zh-epic-picker-issue-placeholder:hover,
body.zh_logged_in .zh-issue-event-item-icon .zh-icon-issue-added,
body.zh_logged_in .zh-issue-event-item-icon .zh-icon-issue-removed,
body.zh_logged_in .zh-menu-header,
body.zh_logged_in .zh-mergetool-pipelines-dialog,
body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-source-pipeline-placeholder,
body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-wrapper .zh-miniboard-pipeline,
body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-wrapper .zh-miniboard-pipeline-target.zh-miniboard-new-pipeline,
body.zh_logged_in .zh-milestone-dates .milestone-start-calendar-container,
body.zh_logged_in .zh-onboarding-banner__progress-dot,
body.zh_logged_in .zh-onboarding-highlighted,
body.zh_logged_in .zh-onboarding-modal, body.zh_logged_in .zh-overlay,
body.zh_logged_in .zh-overlay-loading-board,
body.zh_logged_in .zh-pipeline-action,
body.zh_logged_in .zh-pipeline-issue-action,
body.zh_logged_in .zh-progress-bar__completed,
body.zh_logged_in .zh-repo-switcher .zh-repo-switcher-btn.selected,
body.zh_logged_in .zh-repo-switcher .zh-repo-switcher-btn:hover,
body.zh_logged_in .zh-select-menu-modal,
body.zh_logged_in .zh-select-menu-modal-body .zh-select-menu-modal,
body.zh_logged_in .zh-timeline-comment,
body.zh_logged_in .zhc-account-settings__section,
body.zh_logged_in .zhc-add-comment, body.zh_logged_in .zhc-app-notification,
body.zh_logged_in .zhc-avatar, body.zh_logged_in .zhc-banner--neutral,
body.zh_logged_in .zhc-billing, body.zh_logged_in .zhc-board-loading__message,
body.zh_logged_in .zhc-btn,
body.zh_logged_in .zhc-btn--border-hover-only.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--border-hover-only:active,
body.zh_logged_in .zhc-btn--border-hover-only:focus,
body.zh_logged_in .zhc-btn--border-hover-only:hover,
body.zh_logged_in .zhc-btn--danger-bordered,
body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled,
body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled:active,
body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled:focus,
body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled:hover,
body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--danger-bordered:active,
body.zh_logged_in .zhc-btn--danger-bordered:focus,
body.zh_logged_in .zhc-btn--danger-bordered:hover,
body.zh_logged_in .zhc-btn--danger-bordered[disabled],
body.zh_logged_in .zhc-btn--danger-bordered[disabled].zhc-btn--is-active,
body.zh_logged_in .zhc-btn--danger-bordered[disabled]:active,
body.zh_logged_in .zhc-btn--danger-bordered[disabled]:focus,
body.zh_logged_in .zhc-btn--danger-bordered[disabled]:hover,
body.zh_logged_in .zhc-btn--default,
body.zh_logged_in .zhc-btn--default.zhc-btn--disabled,
body.zh_logged_in .zhc-btn--default.zhc-btn--disabled.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--default.zhc-btn--disabled:active,
body.zh_logged_in .zhc-btn--default.zhc-btn--disabled:focus,
body.zh_logged_in .zhc-btn--default.zhc-btn--disabled:hover,
body.zh_logged_in .zhc-btn--default.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--default:active,
body.zh_logged_in .zhc-btn--default:focus,
body.zh_logged_in .zhc-btn--default:hover,
body.zh_logged_in .zhc-btn--default[disabled],
body.zh_logged_in .zhc-btn--default[disabled].zhc-btn--is-active,
body.zh_logged_in .zhc-btn--default[disabled]:active,
body.zh_logged_in .zhc-btn--default[disabled]:focus,
body.zh_logged_in .zhc-btn--default[disabled]:hover,
body.zh_logged_in .zhc-btn--primary-bordered,
body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled,
body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled:active,
body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled:focus,
body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled:hover,
body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--primary-bordered:active,
body.zh_logged_in .zhc-btn--primary-bordered:focus,
body.zh_logged_in .zhc-btn--primary-bordered:hover,
body.zh_logged_in .zhc-btn--primary-bordered[disabled],
body.zh_logged_in .zhc-btn--primary-bordered[disabled].zhc-btn--is-active,
body.zh_logged_in .zhc-btn--primary-bordered[disabled]:active,
body.zh_logged_in .zhc-btn--primary-bordered[disabled]:focus,
body.zh_logged_in .zhc-btn--primary-bordered[disabled]:hover,
body.zh_logged_in .zhc-btn--secondary-bordered,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:active,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:focus,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:hover,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary-bordered:active,
body.zh_logged_in .zhc-btn--secondary-bordered:focus,
body.zh_logged_in .zhc-btn--secondary-bordered:hover,
body.zh_logged_in .zhc-btn--secondary-bordered[disabled],
body.zh_logged_in .zhc-btn--secondary-bordered[disabled].zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:active,
body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:focus,
body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:hover,
body.zh_logged_in .zhc-btn.zhc-btn--disabled,
body.zh_logged_in .zhc-btn.zhc-btn--disabled.zhc-btn--is-active,
body.zh_logged_in .zhc-btn.zhc-btn--disabled:active,
body.zh_logged_in .zhc-btn.zhc-btn--disabled:focus,
body.zh_logged_in .zhc-btn.zhc-btn--disabled:hover,
body.zh_logged_in .zhc-btn.zhc-btn--is-active,
body.zh_logged_in .zhc-btn:active, body.zh_logged_in .zhc-btn:focus,
body.zh_logged_in .zhc-btn:hover, body.zh_logged_in .zhc-btn[disabled],
body.zh_logged_in .zhc-btn[disabled].zhc-btn--is-active,
body.zh_logged_in .zhc-btn[disabled]:active,
body.zh_logged_in .zhc-btn[disabled]:focus,
body.zh_logged_in .zhc-btn[disabled]:hover,
body.zh_logged_in .zhc-burndown-chart__placeholder,
body.zh_logged_in .zhc-burndown-chart__placeholder__message,
body.zh_logged_in .zhc-button,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined:active,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined:focus,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined:hover,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined:active,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined:focus,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined:hover,
body.zh_logged_in .zhc-button--color-inactive,
body.zh_logged_in .zhc-button--color-inactive:active,
body.zh_logged_in .zhc-button--color-inactive:focus,
body.zh_logged_in .zhc-button--color-inactive:hover,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined:active,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined:focus,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined:hover,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined:active,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined:focus,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined:hover,
body.zh_logged_in .zhc-button:active, body.zh_logged_in .zhc-button:focus,
body.zh_logged_in .zhc-button:hover,
body.zh_logged_in .zhc-cancel-subscription-modal,
body.zh_logged_in .zhc-chart-container,
body.zh_logged_in .zhc-chart-legend .zhc-dropdown .zhc-selection-button,
body.zh_logged_in .zhc-chart-legend-icon--disabled,
body.zh_logged_in .zhc-checkbox-toggle::after,
body.zh_logged_in .zhc-chip--outlined,
body.zh_logged_in .zhc-choose-organization__org-list,
body.zh_logged_in .zhc-collapsible-control:hover.zhc-collapsible-control--border,
body.zh_logged_in .zhc-collapsible-team-member-list__header,
body.zh_logged_in .zhc-comment, body.zh_logged_in .zhc-confetti-announcement,
body.zh_logged_in .zhc-confirm-dialog,
body.zh_logged_in .zhc-confirmation-modal, body.zh_logged_in .zhc-consent-form,
body.zh_logged_in .zhc-dashboard-topbar, body.zh_logged_in .zhc-dependency,
body.zh_logged_in .zhc-dependency-issue-selector__issues__container,
body.zh_logged_in .zhc-dependency-type-dropdown__list,
body.zh_logged_in .zhc-edit-comment__preview,
body.zh_logged_in .zhc-edit-comment__textarea,
body.zh_logged_in .zhc-enterprise-manage-plan__section,
body.zh_logged_in .zhc-epic-list, body.zh_logged_in .zhc-filter-expand-button,
body.zh_logged_in .zhc-info-alert, body.zh_logged_in .zhc-input,
body.zh_logged_in .zhc-integration-repo-selector__repos__container,
body.zh_logged_in .zhc-integrations .zhc-integrations-section,
body.zh_logged_in .zhc-invite-link-modal,
body.zh_logged_in .zhc-invite-your-team,
body.zh_logged_in .zhc-issue-card__actions__btn,
body.zh_logged_in .zhc-issues-list-item, body.zh_logged_in .zhc-item-table,
body.zh_logged_in .zhc-manage-plan__offer,
body.zh_logged_in .zhc-manage-plan__summary,
body.zh_logged_in .zhc-manage-plan__team-members,
body.zh_logged_in .zhc-markdown img, body.zh_logged_in .zhc-markdown table tr,
body.zh_logged_in .zhc-menu-container__header,
body.zh_logged_in .zhc-menu-container__modal--is-open .zhc-menu-bar-item:not(.zhc-menu-bar-item--filter-tags) .zhc-btn:not(.zhc-btn--action),
body.zh_logged_in .zhc-menu-container__modal--is-open .zhc-menu-bar-item:not(.zhc-menu-bar-item--filter-tags) .zhc-btn:not(.zhc-btn--action):hover,
body.zh_logged_in .zhc-merge-repo-finder__container,
body.zh_logged_in .zhc-merging-tool-pipeline--add__input,
body.zh_logged_in .zhc-merging-tool-pipeline-card__buttons,
body.zh_logged_in .zhc-merging-tool-pipeline-card__issue-count,
body.zh_logged_in .zhc-milestone-modal__info input,
body.zh_logged_in .zhc-modal__body.zhc-issue-modal__body--extension,
body.zh_logged_in .zhc-modal__header,
body.zh_logged_in .zhc-multi-action-footer,
body.zh_logged_in .zhc-new-issue-body__title-input,
body.zh_logged_in .zhc-notifications-body__manage,
body.zh_logged_in .zhc-options-panel,
body.zh_logged_in .zhc-pipeline--add__input,
body.zh_logged_in .zhc-release-report-form__desc-textarea,
body.zh_logged_in .zhc-release-report-form__title-input,
body.zh_logged_in .zhc-remove-licenses,
body.zh_logged_in .zhc-repo-notifications__load-more,
body.zh_logged_in .zhc-repo-overlay, body.zh_logged_in .zhc-report-card,
body.zh_logged_in .zhc-report-tabs,
body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body,
body.zh_logged_in .zhc-roadmap-progress__bar,
body.zh_logged_in .zhc-roadmap-sidebar, body.zh_logged_in .zhc-search,
body.zh_logged_in .zhc-search-bar__input,
body.zh_logged_in .zhc-selection-filter,
body.zh_logged_in .zhc-selection-list__body,
body.zh_logged_in .zhc-shortcuts-guide__shortcuts-list,
body.zh_logged_in .zhc-sidebar-nav-item__action--is-active,
body.zh_logged_in .zhc-sidebar-nav-item__action:hover,
body.zh_logged_in .zhc-sidebar-profile,
body.zh_logged_in .zhc-sidebar__container,
body.zh_logged_in .zhc-sidebar__container__inner,
body.zh_logged_in .zhc-skeleton-content-box,
body.zh_logged_in .zhc-skeleton-input-box,
body.zh_logged_in .zhc-spinner:not(.zhc-spinner--no-outline),
body.zh_logged_in .zhc-tab-navitem--dropdown--active,
body.zh_logged_in .zhc-tab-navitem--dropdown--active:hover,
body.zh_logged_in .zhc-table .zhc-table__cell,
body.zh_logged_in .zhc-table-expand-button .zhc-btn:active,
body.zh_logged_in .zhc-team-members-page__container,
body.zh_logged_in .zhc-team-members__content,
body.zh_logged_in .zhc-tooltip--info-tip .zhc-tooltip__content,
body.zh_logged_in .zhc-topbar, body.zh_logged_in .zhc-tutorial-card,
body.zh_logged_in .zhc-tutorial-checklist-modal__description input,
body.zh_logged_in .zhc-tutorial-checklist-modal__dropdown .zhc-btn,
body.zh_logged_in .zhc-workspace-form,
body.zh_logged_in .zhc-workspace-form__footer,
body.zh_logged_in .zhc-workspace-import,
body.zh_logged_in .zhc-workspace-switcher,
body.zh_logged_in .zhc-workspace-switcher__header,
body.zh_logged_in .zhe .zh-onboarding-highlighted,
body.zh_logged_in .zhu-panel, body[class="page-responsive"] .Box,
body[class="page-responsive"] .Box--overlay,
body[class="page-responsive"] .advisory-form .form-actions,
body[class="page-responsive"] .advisory-form .form-control,
body[class="page-responsive"] .advisory-form .previewable-comment-form,
body[class="page-responsive"] .avatar-child,
body[class="page-responsive"] .blob-file-content,
body[class="page-responsive"] .branch-action,
body[class="page-responsive"] .btn-primary .Counter,
body[class="page-responsive"] .diff-view .file .file-code,
body[class="page-responsive"] .discussion-block-title,
body[class="page-responsive"] .discussion-issue-references,
body[class="page-responsive"] .discussion-labels,
body[class="page-responsive"] .discussion-reply,
body[class="page-responsive"] .dropdown-menu,
body[class="page-responsive"] .form-control,
body[class="page-responsive"] .form-group .form-control:focus,
body[class="page-responsive"] .form-select,
body[class="page-responsive"] .inbox-unavailable,
body[class="page-responsive"] .inbox-zero,
body[class="page-responsive"] .input-contrast:focus,
body[class="page-responsive"] .issues-reset-query-wrapper,
body[class="page-responsive"] .list,
body[class="page-responsive"] .markdown-body img,
body[class="page-responsive"] .markdown-body table tr,
body[class="page-responsive"] .mobile-toc,
body[class="page-responsive"] .notification-shelf .btn-outline,
body[class="page-responsive"] .pagehead-tabs-item.selected,
body[class="page-responsive"] .reponav-item.selected,
body[class="page-responsive"] .tabs > a.selected,
body[class="page-responsive"] .thread-subscription-status,
body[class="page-responsive"] .timeline-review-container .inline-comment-form,
body[data-render-url] div.border-wrap, details-dialog,
html.ghh-theme-classic .ghh-avatar,
html.ghh-theme-classic .ghh-issue-body a[href^="https://saucelabs.com/"] img,
html.ghh-theme-classic .ghh-overlay form,
html.ghh-theme-classic .ghh-readme a[href^="https://saucelabs.com/"] img,
html.refined-github .dashboard .js-all-activity-header + div,
html[prefix] .Box, html[prefix] .avatar-child,
html[prefix] .avatar-stack .avatar, html[prefix] .btn-outline,
html[prefix] .btn-outline-white:active, html[prefix] .btn-outline-white:hover,
html[prefix] .btn-outline.disabled, html[prefix] .btn-outline.disabled:hover,
html[prefix] .btn-outline.selected .counter,
html[prefix] .btn-outline.zeroclipboard-is-active .counter,
html[prefix] .btn-outline.zeroclipboard-is-hover .counter,
html[prefix] .btn-outline:active .counter, html[prefix] .btn-outline:disabled,
html[prefix] .btn-outline:disabled:hover,
html[prefix] .btn-outline:hover .counter, html[prefix] .card,
html[prefix] .content table tr, html[prefix] .form-control,
html[prefix] .form-group .form-control:focus, html[prefix] .form-select,
html[prefix] .homepage-jumbotron, html[prefix] .input-contrast:focus,
html[prefix] .libraries-jumbotron, html[prefix] .markdown-body img,
html[prefix] .markdown-body table tr, html[prefix] .menu,
html[prefix] .menu-item.selected, html[prefix] .sidebar-menu,
html[prefix] .site-header-nav .dropdown-menu, html[prefix] .social-count,
html[prefix] .tabnav-tab.selected, html[prefix] [class*=btn-outline].disabled,
html[prefix] [class*=btn-outline].disabled:hover,
html[prefix] [class*=btn-outline]:disabled,
html[prefix] [class*=btn-outline]:disabled:hover, html[prefix] body {
background-color: #181818;
}
/* remap-css rule for "background-color: #fff !important" */
.tree-browser-result[aria-selected=true] {
background-color: #181818 !important;
}
/* remap-css rule for "background: #ffe" */
.oauth-org-access-details .oauth-org-item:hover {
background: #242424;
}
/* remap-css rule for "background: #eee" */
#graphiql .graphiql-container .footer::before,
#graphiql .graphiql-container .variable-editor-title, .usage-bar,
body.status .datepicker td span:hover, body.status .datepicker td.day:hover,
body.status .datepicker thead tr:first-child th:hover,
body.zh_logged_in .resize-triggers > div {
background: #242424;
}
/* remap-css rule for "background-color: #eee" */
.logo-box, .manage-repo-access-wrapper::before, .task-progress .progress-bar,
body.status .cpt-tabs:not(.unstyled) li:not(.active) a:hover,
body.status .domain-helper .dns-records .dns-records-header,
body.zh_logged_in .zh-btn, body.zh_logged_in .zh-epic-btn,
body.zh_logged_in .zh-epic-creator-progress-bar,
body.zh_logged_in .zh-pipeline-action:hover,
body.zh_logged_in .zh-pipeline-issue-action:hover,
body[data-render-url] .click-for-more .button,
body[data-render-url] .render-shell, html[prefix] .btn, html[prefix] .counter,
html[prefix] .filter-item:hover {
background-color: #242424;
}
/* remap-css rule for "background: #fdfdfd" */
#graphiql .graphiql-container .toolbar-button {
background: #181818;
}
/* remap-css rule for "background-color: #fdfdfd" */
html[prefix] .headlines li:hover, html[prefix] .sidebar-module h3 a:hover {
background-color: #181818;
}
/* remap-css rule for "background: #fafafb" */
html[prefix] .sidebar-module.notice {
background: #181818;
}
/* remap-css rule for "background-color: #fafafb" */
html[prefix] pre {
background-color: #181818;
}
/* remap-css rule for "background: #fafbfc" */
.MarketplaceBackground-buffer, .MarketplaceEdit-body .menu-item,
.discussion-post .reply-comment .review-comment.is-comment-editing,
.discussion-post .timeline-inline-comments,
body.gitako-ready .gitako-side-bar .gitako-resize-handler:active,
body.gitako-ready .gitako-side-bar .gitako-resize-handler:hover,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-content .shadow-shelter,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item:hover,
body.gitako-ready .markdown-body .clippy-wrapper .clippy,
body.gitako-ready .markdown-body .clippy-wrapper .clippy:active,
ul.comparison-list > li.title {
background: #181818;
}
/* remap-css rule for "background-color: #fafbfc" */
#graphiql .Box-row.navigation-focus.sortable-chosen, #graphiql .SideNav,
#graphiql .btn-danger, #graphiql .drag-and-drop,
#graphiql .form-group .form-control, #graphiql .input-contrast,
#graphiql .markdown-body kbd, #graphiql .pagination .disabled,
#graphiql .pagination .disabled:hover, #graphiql .pagination .gap,
#graphiql .pagination .gap:hover, #graphiql kbd,
.Box-row.navigation-focus.sortable-chosen, .CheckRun-search-input:focus,
.SideNav, .bg-hero-dots-gray::before, .billing-addon-items tr:nth-child(2n),
.blankslate, .blob-expanded .blob-code, .blob-expanded .blob-num,
.boxed-group-table th, .branch-action-body .merge-branch-form,
.branch-action-body .merge-message, .branch-infobar, .btn-danger,
.dashboard-notice, .drag-and-drop, .file-diff-split .empty-cell, .file-header,
.filter-bar, .form-group #q, .form-group .ais-SearchBox-input,
.form-group .form-control, .home-enterprise-wrapper::before,
.illflow-item:not(.selected):hover, .input-contrast, .jump-to-field-active,
.linejump .linejump-input, .list-group-item.closed, .listgroup-item.disabled,
.manage-repo-access-not-active, .markdown-body kbd, .merge-status-item,
.newsletter-frequency-choice h3, .oauth-pending-deletion-list-item,
.oauth-pending-deletion-list-item:hover, .orghead, .pagination .disabled,
.pagination .disabled:hover, .pagination .gap, .pagination .gap:hover,
.pagination [aria-disabled=true], .pagination [aria-disabled=true]:hover,
.plan-choice, .protected-branch-orgs-and-repo-admins, .range-editor, .steps li,
.team-listing .is-open.root-team, body, body.gitako-ready .gitako-side-bar kbd,
body[class="page-responsive"] .Box-row.navigation-focus.sortable-chosen,
body[class="page-responsive"] .btn-danger,
body[class="page-responsive"] .diff-view .inline-comments,
body[class="page-responsive"] .form-group .form-control,
body[class="page-responsive"] .inline-comment-form,
body[class="page-responsive"] .input-contrast,
body[class="page-responsive"] .jump-to-field-active,
body[class="page-responsive"] .list-item.read,
body[class="page-responsive"] .markdown-body kbd,
body[class="page-responsive"] .pagination, body[class="page-responsive"] kbd,
kbd, table.capped-list tr:nth-child(2n) {
background-color: #181818;
}
/* remap-css rule for "background-color: #fafbfc !important" */
#graphiql .bg-gray-0, #graphiql .bg-gray-light, .bg-gray-0, .bg-gray-light,
body.status .bg-gray-light, body[class="page-responsive"] .bg-gray-0,
body[class="page-responsive"] .bg-gray-light {
background-color: #181818 !important;
}
/* remap-css rule for "background: #efefef" */
body.zh_logged_in .zh-issue-placeholder,
body.zh_logged_in .zh-issuecard-placeholder,
body.zh_logged_in .zh-pipeline-placeholder,
html.refined-github .reaction-summary-item a {
background: #181818;
}
/* remap-css rule for "background-color: #efefef" */
html[prefix] .btn-danger.disabled, html[prefix] .btn-danger.disabled:hover,
html[prefix] .btn-danger:disabled, html[prefix] .btn-danger:disabled:hover {
background-color: #181818;
}
/* remap-css rule for "background: #f8f8f8" */
.hljs, body.zh_logged_in .DateRangePickerInput, body.zh_logged_in .hljs,
body.zh_logged_in .invite-link-footer,
body.zh_logged_in .zh-select-menu-filters,
body.zh_logged_in .zhc-app-notification:hover,
body.zh_logged_in .zhc-cancel-subscription-modal__missing-features,
body.zh_logged_in .zhc-chart-info__wrapper,
body.zh_logged_in .zhc-feature-announcement__image,
body.zh_logged_in .zhc-invite-your-team-section--suggested:not(.zhc-invite-your-team-section--empty),
body.zh_logged_in .zhc-roadmap,
body.zh_logged_in .zhc-roadmap-row.zhc-roadmap-row--color-primary,
body.zh_logged_in .zhc-roadmap-subheader,
body.zh_logged_in .zhc-sidebar-item-add-to-project,
body.zh_logged_in .zhc-workspace-form-section__tip,
html[prefix] .markdown-body .csv-data th {
background: #202020;
}
/* remap-css rule for "background-color: #f8f8f8" */
.manage-repo-access-title,
body.status .component-statuses .component-status-container .component-dropdown-selector.dropdown-open .component-status-display,
body.status .dropdown .dropdown-menu li:hover,
body.status .updates-dropdown-container .updates-dropdown .updates-dropdown-nav a,
body.zh_logged_in .zh-milestone-dates,
body.zh_logged_in .zhc-board-onboarding--mobile,
body.zh_logged_in .zhc-breadcrumbs--default .zhc-breadcrumbs__button--active,
body.zh_logged_in .zhc-breadcrumbs--default .zhc-breadcrumbs__button:hover,
body.zh_logged_in .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button--active,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary-bordered:active,
body.zh_logged_in .zhc-btn--secondary-bordered:focus,
body.zh_logged_in .zhc-btn--secondary-bordered:hover,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled],
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled]:active,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled]:focus,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled]:hover,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled],
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled]:active,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled]:focus,
body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled]:hover,
body.zh_logged_in .zhc-button--color-action[disabled],
body.zh_logged_in .zhc-button--color-action[disabled]:active,
body.zh_logged_in .zhc-button--color-action[disabled]:focus,
body.zh_logged_in .zhc-button--color-action[disabled]:hover,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled],
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:active,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:focus,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:hover,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled],
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled]:active,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled]:focus,
body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled]:hover,
body.zh_logged_in .zhc-button--color-danger[disabled],
body.zh_logged_in .zhc-button--color-danger[disabled]:active,
body.zh_logged_in .zhc-button--color-danger[disabled]:focus,
body.zh_logged_in .zhc-button--color-danger[disabled]:hover,
body.zh_logged_in .zhc-button--color-inactive,
body.zh_logged_in .zhc-button--color-inactive:active,
body.zh_logged_in .zhc-button--color-inactive:focus,
body.zh_logged_in .zhc-button--color-inactive:hover,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled],
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:active,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:focus,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:hover,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled],
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled]:active,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled]:focus,
body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled]:hover,
body.zh_logged_in .zhc-button--color-primary[disabled],
body.zh_logged_in .zhc-button--color-primary[disabled]:active,
body.zh_logged_in .zhc-button--color-primary[disabled]:focus,
body.zh_logged_in .zhc-button--color-primary[disabled]:hover,
body.zh_logged_in .zhc-button--color-secondary,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled],
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:active,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:focus,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:hover,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled],
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled]:active,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled]:focus,
body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled]:hover,
body.zh_logged_in .zhc-button--color-secondary[disabled],
body.zh_logged_in .zhc-button--color-secondary[disabled]:active,
body.zh_logged_in .zhc-button--color-secondary[disabled]:focus,
body.zh_logged_in .zhc-button--color-secondary[disabled]:hover,
body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled],
body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled]:active,
body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled]:focus,
body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled]:hover,
body.zh_logged_in .zhc-button[disabled],
body.zh_logged_in .zhc-button[disabled]:active,
body.zh_logged_in .zhc-button[disabled]:focus,
body.zh_logged_in .zhc-button[disabled]:hover,
body.zh_logged_in .zhc-chart-legend__labels--notselected,
body.zh_logged_in .zhc-consent-form__checkbox,
body.zh_logged_in .zhc-issue-card__connected-pull-request,
body.zh_logged_in .zhc-issues-list-item:hover,
body.zh_logged_in .zhc-item-table__row--closed,
body.zh_logged_in .zhc-merging-tool,
body.zh_logged_in .zhc-merging-tool-pipeline--is-new,
body.zh_logged_in .zhc-merging-tool-pipeline-card__body,
body.zh_logged_in .zhc-merging-tool__buttons,
body.zh_logged_in .zhc-modal__body,
body.zh_logged_in .zhc-modal__header--no-title,
body.zh_logged_in .zhc-release--no-issues,
body.zh_logged_in .zhc-report-tabs__filters,
body.zh_logged_in .zhc-roadmap-subheader,
body.zh_logged_in .zhc-roadmap-temp-project-overlay,
body.zh_logged_in .zhc-roadmap__title,
body.zh_logged_in .zhc-seated-user-options-button.zhc-seated-user-options-button:hover,
body.zh_logged_in .zhc-sidebar-nav-item--is-active,
body.zh_logged_in .zhc-sidebar-nav-item:hover,
body.zh_logged_in .zhc-table .zhc-table__cell--header,
body.zh_logged_in .zhc-team-member__options-icon-wrapper--active,
body.zh_logged_in .zhc-team-member__options-icon-wrapper:hover,
body.zh_logged_in .zhc-team-members__searchbar,
body.zh_logged_in .zhc-team-members__searchbar input,
body.zh_logged_in .zhc-tutorial-checklist-modal,
body.zh_logged_in .zhc-workspace-form-input__text-input,
body.zh_logged_in .zhc-workspace-form__load-info,
body.zh_logged_in .zhc-workspace-header:hover,
body.zh_logged_in .zhc-workspace-switcher-item:hover,
body.zh_logged_in .zhc-workspace-switcher-search__input,
html[prefix] .markdown-body table tr:nth-child(2n) {
background-color: #202020;
}
/* remap-css rule for "background: #f6f8fa" */
#graphiql .AvatarStack--right .avatar.avatar-more::after,
#graphiql .avatar.avatar-more, #graphiql .markdown-body .csv-data th,
.AvatarStack--right .avatar.avatar-more::after,
.MarketplaceEdit-body .menu-item:hover, .avatar.avatar-more,
.capped-card-content,
.gist-quicksearch-results .gist-quicksearch-result-header,
.gistsearch-aside .filter-list li span.bar, .markdown-body .csv-data th,
.page-responsive .previewable-comment-form .comment-form-head.tabnav,
.payment-history .failed, .payment-history .refunded,
.previewable-comment-form .comment-form-head.tabnav, .select-menu-divider,
.select-menu-header, .signup-plan-card, .team-member-ellipsis:hover, .tint-box,
body.gitako-ready .gitako-side-bar .gitako-resize-handler,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item.focused,
body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item:active,
body.gitako-ready .gitako-toggle-show-button-wrapper.collapsed,
body[class="page-responsive"] .bubble-disabled,
body[class="page-responsive"] .diff-view .file .meta span.icon,
body[class="page-responsive"] .markdown-body .csv-data th,
body[class="page-responsive"] .y-axis-bar, table.capped-list th,
table.files tr.navigation-focus td, table.files tr[aria-selected=true] td {
background: #202020;
}
/* remap-css rule for "background-color: #f6f8fa" */
#graphiql .Box-header, #graphiql .Box-row--focus-gray.navigation-focus,
#graphiql .Box-row--gray, #graphiql .Box-row--hover-gray:hover,
#graphiql .Box-row.navigation-focus.sortable-ghost,
#graphiql .SelectMenu-divider, #graphiql .SelectMenu-modal,
#graphiql .SideNav-item:focus, #graphiql .SideNav-item:hover,
#graphiql .markdown-body table tr:nth-child(2n), #graphiql .menu-item:hover,
#graphiql .subnav-item:focus, #graphiql .subnav-item:hover, .Box-header,
.Box-row--focus-gray.navigation-focus, .Box-row--gray,
.Box-row--hover-gray:hover, .Box-row.navigation-focus.sortable-ghost,
.MarketplaceSideNav, .ScreenshotCarousel-navitem.selected, .SelectMenu-divider,
.SelectMenu-modal, .SideNav-item:focus, .SideNav-item:hover,
.TagsearchPopover-list .TagsearchPopover-list-item:hover, .Tile,
.advisory-form, .ajax-pagination-form .ajax-pagination-btn:focus,
.ajax-pagination-form .ajax-pagination-btn:hover,
.ajax-pagination-form.loading .ajax-pagination-btn, .boxed-group .heading,
.boxed-group > h3, .btn-discussions:focus, .btn-discussions:hover,
.choose-team-lp, .commit-sha, .community-checklist .progress,
.copyable-terminal, .ghh-theme-github .ghh-issue-body tr:nth-child(2n),
.ghh-theme-github .ghh-readme tr:nth-child(2n),
.hx_SelectMenu-item[aria-selected=true], .markdown-body table tr:nth-child(2n),
.menu-item:hover, .notifications .read.list-group-item,
.pricing-matrix-row:hover .pricing-matrix-column-tier, .protip code,
.related-issue-item.navigation-focus, .render-notice,
.review-comment-loader::after, .review-comment.is-comment-editing::after,
.review-comment::after, .review-thread-reply, .select-menu-filters,
.select-menu-item.excluded, .signed-commit-header,
.similar-issue-item.navigation-focus, .sortable-ghost, .subnav-item:focus,
.subnav-item:hover, .table-list-header,
.team-discussion-new-post .review-thread-reply-button:disabled,
.timeline-comment-header, body,
body.status .component-items-selector .grouped-item:hover,
body.zh_logged_in .zh-epic-creator-issue-list .zh-epic-creator-issue-list-not-in-workspace,
body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .table-list-header,
body[class="page-responsive"] .Box-header,
body[class="page-responsive"] .Box-row--focus-gray.navigation-focus,
body[class="page-responsive"] .Box-row--gray,
body[class="page-responsive"] .Box-row--hover-gray:hover,
body[class="page-responsive"] .Box-row.navigation-focus.sortable-ghost,
body[class="page-responsive"] .advisory-form,
body[class="page-responsive"] .ajax-pagination-form .ajax-pagination-btn:focus,
body[class="page-responsive"] .ajax-pagination-form .ajax-pagination-btn:hover,
body[class="page-responsive"] .ajax-pagination-form.loading .ajax-pagination-btn,
body[class="page-responsive"] .branch-action-expandable .list-items-overflow,
body[class="page-responsive"] .cross-reference .bubble-title,
body[class="page-responsive"] .discussion-block-header,
body[class="page-responsive"] .list-heading,
body[class="page-responsive"] .markdown-body table tr:nth-child(2n),
body[class="page-responsive"] .render-notice,
body[class="page-responsive"] .subnav-item:focus,
body[class="page-responsive"] .subnav-item:hover,
body[class="page-responsive"] .timeline-review-container .file-header,
html.refined-github .rgh-split-issue-pr-combined.selected:hover {
background-color: #202020;
}
/* remap-css rule for "background-color: #f6f8fa !important" */
#graphiql .bg-gray, #graphiql .bg-gray-1, .bg-gray, .bg-gray-1,
body.status .bg-gray, body[class="page-responsive"] .bg-gray,
body[class="page-responsive"] .bg-gray-1 {
background-color: #202020 !important;
}
/* remap-css rule for "background: #f5f5f5" */
body.zh_logged_in .zh-pipeline-issues::-webkit-scrollbar-track {
background: #202020;
}
/* remap-css rule for "background: #f5f5f5 !important" */
html[prefix] .bg-gray-light {
background: #202020 !important;
}
/* remap-css rule for "background-color: #f5f5f5" */
.credit-card, .exploregrid-item-header, .listgroup-overflow,
.theme-selector-thumbnail:hover, body.status .modal .modal-footer,
body.status .panel.panel-default .panel-heading,
body.status .popover .popover-title, body.status input[disabled],
body.status pre.code-display, body.status select[disabled],
body.status select[readonly], body.status textarea[disabled],
body.zh_logged_in .search-query,
body.zh_logged_in .zh-connect-repository-container,
body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-mergetool-info,
body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-wrapper .zh-miniboard-pipeline-target,
body.zh_logged_in .zh-pipeline, body.zh_logged_in .zh-select-menu-footer,
body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .search-query,
html[prefix] .Box-header, html[prefix] .Box-row--focus-gray.navigation-focus,
html[prefix] .Box-row--gray, html[prefix] .Box-row--hover-gray:hover,
html[prefix] .Box-row.navigation-focus.sortable-ghost, html[prefix] .highlight,
html[prefix] .menu-item:hover, html[prefix] .subnav-item:focus,
html[prefix] .subnav-item:hover {
background-color: #202020;
}
/* remap-css rule for "background-color: #f5f5f5 !important" */
html[prefix] .bg-gray {
background-color: #202020 !important;
}
/* remap-css rule for "background: #f4f5f5" */
body.zh_logged_in .CalendarDay__hovered_offset,
body.zh_logged_in .zh-pipeline-heading-container,
body.zh_logged_in .zh-select-menu-header {
background: #242424;
}
body.zh_logged_in .horizontal-scrollbar::-webkit-scrollbar-track {
background: #242424;
}
/* remap-css rule for "background: #f4f5f5 !important" */
body.zh_logged_in .zh-boxie-modal {
background: #242424 !important;
}
/* remap-css rule for "background-color: #f4f5f5" */
body.zh_logged_in .zh-epic-issue-list-item-lg:hover,
body.zh_logged_in .zh-epic-issue-list-item-md:hover {
background-color: #242424;
}
/* remap-css rule for "background: #f4f4f4" */
body.zh_logged_in .zhc-account-details__item--edit input,
body.zh_logged_in .zhc-input--disabled,
body.zh_logged_in .zhc-integrations .zhc-integrations-section input,
body.zh_logged_in .zhc-pipeline-header,
body.zh_logged_in .zhc-roadmap-sidebar-empty-placeholder__bottomLine,
body.zh_logged_in .zhc-search--with-icon,
body.zh_logged_in .zhc-sidebar-project-display__toggle--collapsed,
body.zh_logged_in .zhc-stripe-billing .StripeElement,
body.zh_logged_in .zhc-stripe-billing input {
background: #242424;
}
body.zh_logged_in .zhc-issue-cards::-webkit-scrollbar-track {
background: #242424;
}
/* remap-css rule for "background-color: #f4f4f4" */
.label-select-menu .select-menu-item.navigation-focus,
.label-select-menu .select-menu-item:focus,
.label-select-menu .select-menu-item:hover,
.label-select-menu .select-menu-item[aria-selected=true],
body.status .controls.append label, body.status .controls.prepend label,
body.zh_logged_in .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus,
body.zh_logged_in .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus.selected,
body.zh_logged_in .zh-menu-content__item:hover,
body.zh_logged_in .zh-pipeline-badge-light,
body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus,
body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus.selected,
body.zh_logged_in .zhc-board-loading__pipeline-section,
body.zh_logged_in .zhc-board-settings-item:hover,
body.zh_logged_in .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button:hover,
body.zh_logged_in .zhc-btn--default.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--default:active,
body.zh_logged_in .zhc-btn--secondary,
body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary-bordered:active,
body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled,
body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled.zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled:active,
body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled:focus,
body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled:hover,
body.zh_logged_in .zhc-btn--secondary[disabled],
body.zh_logged_in .zhc-btn--secondary[disabled].zhc-btn--is-active,
body.zh_logged_in .zhc-btn--secondary[disabled]:active,
body.zh_logged_in .zhc-btn--secondary[disabled]:focus,
body.zh_logged_in .zhc-btn--secondary[disabled]:hover,
body.zh_logged_in .zhc-btn--topbar:hover,
body.zh_logged_in .zhc-btn.zhc-btn--is-active,
body.zh_logged_in .zhc-btn:active,
body.zh_logged_in .zhc-chart-container__header,
body.zh_logged_in .zhc-checkout-box__plan--active,
body.zh_logged_in .zhc-collapsible__content,
body.zh_logged_in .zhc-dashboard-nav .zhc-org-dropdown__toggle-button:hover,
body.zh_logged_in .zhc-issues-list__header,
body.zh_logged_in .zhc-item-table__header,
body.zh_logged_in .zhc-merge-repo-finder-input__text-input,
body.zh_logged_in .zhc-merging-tool-pipeline,
body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-button:disabled,
body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-list__list .zhc-tooltip-wrapper .zhc-selection-item:hover,
body.zh_logged_in .zhc-organization-item:hover,
body.zh_logged_in .zhc-pipeline,
body.zh_logged_in .zhc-pipeline-sorted-placeholder,
body.zh_logged_in .zhc-release-add-repos-dropdown__repo-item:hover,
body.zh_logged_in .zhc-repo-notifications__header,
body.zh_logged_in .zhc-report-tabs__nav,
body.zh_logged_in .zhc-roadmap-selection-item--is-active,
body.zh_logged_in .zhc-seleciton-list-action-modifier--is-hovering,
body.zh_logged_in .zhc-selection-item--is-active,
body.zh_logged_in .zhc-selection-list--simple .zhc-selection-list-item:hover:not(.zhc-selection-item--is-disabled),
body.zh_logged_in .zhc-selection-list:not(.zhc-selection-list--has-search) .zhc-selectable-selection-item:hover:not(.zhc-selection-item--is-disabled),