-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-darkred.css
2761 lines (2537 loc) · 192 KB
/
github-darkred.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
a:not(.filter-item.selected):not(.user-mention):not(.IssueLabel):not(.btn):not(.subnav-item):not(.IssueLabel--big):not(.tabnav-tab):not(.reponav-item):not(.pagehead-tabs-item):not(.muted-link):not(.text-gray-dark):hover, div#org-members-table a:hover {
color: #ff9090!important;
}
.pb-4 a:hover, .px-2:hover, .header-logo-invertocat:hover, .mb-3 a:hover, .mt-4 a:hover, .mt-4 a .repo.js-repo:hover, a.notification-indicator:hover, .wiki-page-link:hover, .markdown-body a:hover, .pagehead h1 a:hover, a.issue-link:hover, .css-truncate.css-truncate-target a:hover {
color: #ff9090!important;
}
a:hover {
text-decoration: none!important;
}
a, body, html, .markdown-body {
font-family: "Noto sans", Roboto, Arial, sans-serif!important;
}
/* auto-generated rule for "background-color: #2cbe4e" */
.State--green, .block-diff-added, .block-diff-neutral, .discussion-item-reopened .discussion-item-icon, .discussion-item-review.is-approved.is-writer .discussion-item-icon, .progress-bar .progress, .branch-action-state-clean .branch-action-icon, .completeness-indicator-success {
background: #163!important;
}
.UnderlineNav-item.selected {
border-bottom-color: #ff5050!important;
}
/* auto-generated rule for "background-color: #d1d5da" */
.block-diff-neutral {
background: #444!important;
}
/* auto-generated rule for "background-color: #6f42c1" */
.bg-purple, .State--purple, .btn-outline-purple:hover, .btn-outline-purple:active, .btn-outline-purple.selected, [open] > .btn-outline-purple, .discussion-item-merged .discussion-item-icon, .branch-action-state-merged .branch-action-icon {
background: #6e5494!important;
}
input[type="checkbox"]:checked {
background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB2ZXJzaW9uPSIxIj48cGF0aCBkPSJNMCAwaDUxMnY1MTJIMHoiLz48cGF0aCBmaWxsPSIjZmZmZmY5IiBkPSJNOTkgMjEzbC0xIDg5IDEwNCAxMDIgMjA1LTIwMXYtOTFMMjAzIDMxNSA5OSAyMTN6Ii8+PC9zdmc+)!important;
}
/* auto-generated rule for "background-color: #cb2431" */
.State--red, .block-diff-deleted, .text-red .block-diff-neutral, .discussion-item-closed .discussion-item-icon, .discussion-item-review.is-rejected.is-writer .discussion-item-icon, .completeness-indicator-error, .saml-settings-form .test-status-indicator-error, .follow-list .flagged-banner {
background: #911!important;
}
/* auto-generated rule for "background-color: #fff5b1" */
.bg-yellow-light, .selected-line.blob-num, .network .current-repository, .diffbar-range-menu .is-last-in-range, .conflict-gutter-marker, .Box-row--yellow, .form-group.warn .warning, .flash-warn, .warning, .boxed-group-warning, .blob-code-inner.highlighted, .selected-line.blob-code, .RecentBranches, .discussion-post.discussion-post-private .timeline-comment-header, .diffbar-range-menu .is-range-selected {
background-color: #261d08!important;
}
/* auto-generated rule for "background-color: #f6f8fa" */
.Box-header, .Box-row.navigation-focus.sortable-ghost, .Box-row--hover-gray:hover, .Box-row--gray, .menu-item:hover, .bg-gray, .markdown-body table tr:nth-child(2n), .markdown-body .highlight pre, .markdown-body pre, .boxed-group > h3, .boxed-group .heading, .commit-sha, .signed-commit-header, .semantic-toc-symbol:not(.last-visible):after, .select-menu-item + .semantic-toc-file:after, .copyable-terminal, .facebox .facebox-staff-links, .protip code, .render-notice, .select-menu-filters, .community-checklist .progress, .layout-reorder-menu .dropdown-toggle:hover, .layout-reorder-menu .dropdown-toggle.selected, .layout-reorder-menu-list .is-hidden, .layout-reorder-menu-list .is-hidden:hover, .MarketplaceSideNav, .ScreenshotCarousel-navitem.selected, .NotificationItem--read, .sortable-ghost, .profile-timeline.discussion-timeline .profile-timeline-month-heading:after, .profile-timeline.discussion-timeline:before, .review-comment-contents:after, .review-comment-loader:after, .review-comment.is-comment-editing:after, .review-thread-reply, .awesome-autocomplete .aa-thumbnail, .Box-row.navigation-focus.sortable-chosen, .btn-danger, .input-contrast, .form-group .form-control, .bg-gray-light, .blankslate, .markdown-body kbd, .boxed-group-table th, .blob-expanded .blob-num, .blob-expanded .blob-code, .file-diff-split .empty-cell, .gh-header-edit .edit-issue-title, .discussion-item-review .file-header, .linejump .linejump-input, kbd, .list-group-item.closed, .pagination .gap, .pagination .disabled, .pagination .gap:hover, .pagination .disabled:hover, .steps li, .simple-box-footer, .listgroup-item.disabled, .billing-addon-items tr:nth-child(even), .plan-choice, .blog-feedback, .merge-status-item, .branch-action-body .merge-message, .branch-action-body .merge-branch-form, .range-editor, .dnext-sidebar-menu .menu-item:hover, .dashboard-notice, .newsletter-frequency-choice h3, .file-header, .orghead, .manage-repo-access-not-active, .project-column, .new-label, .filter-bar, .more-repos, .branch-infobar, .access-token .credential-authorization-status-item, .oauth-pending-deletion-list-item, .oauth-pending-deletion-list-item:hover, .protected-branch-orgs-and-repo-admins, .team-listing .is-open.root-team, table.capped-list tr:nth-child(even), .site-subheader-pricing, .markdown-format kbd {
background-color: #181818!important;
}
.table-fixed, .casestudy-link {
background-color: #000!important;
}
.d-none.d-lg-block.position-absolute {
background-color: transparent!important;
}
/* auto-generated rule for "background-color: #fafbfc" */
/* auto-generated rule for "background: #fff" */
.date-selector td, .jcrop-light .jcrop-vline, .jcrop-light .jcrop-hline, .blankslate code, .markdown-body .csv-data .blob-num, .autocomplete-results, .suggester, .boxed-group-inner, .commit-group-title .octicon-git-commit, .full-commit .commit-meta, .conversation-list-heading .inner, .gollum-editor-help-parent li a:hover, .gollum-editor-help-list li a:hover, .gollum-editor-help-parent li a.selected, .gollum-editor-help-list li a.selected, .gollum-editor-help-wrapper, .pagination a, .pagination span, .pagination em, .ajax-pagination-form .ajax-pagination-btn, ul.comparison-list, .tint-box.transparent, .dashboard-notice .coupon, .getting-started .list-group-item, .oauth-org-access-details .oauth-org-item.on, .oauth-org-access-details .oauth-org-item.revoked, .manage-repo-access-icon, .card-filter-autocomplete-dropdown, .uploaded-files, .upload-progress, table.files, .qr-code-table .white, .wiki-wrapper .wiki-auxiliary-content-no-bg, .btn-outline-transparent:hover, .btn-outline-transparent:active, .gist-snippet-meta .gist-count-links > li > a:hover, .gist-quicksearch-results, div#common-issues ul, .markdown-format img, .dropdown-menu, .jcrop-dark .jcrop-handle, body, .btn-primary .Counter, .btn-purple .Counter, .btn-blue .Counter, .btn-outline, .btn-outline:hover .Counter, .btn-outline:active .Counter, .btn-outline.selected .Counter, [open] > .btn-outline .Counter, .btn-outline:disabled, .btn-outline.disabled, .social-count, .form-select, .form-group .form-control:focus, .menu, .menu-item.selected, .bg-white, .avatar-child, .avatar-stack .avatar, .CircleBadge, .markdown-body table tr, .markdown-body img, .btn-orange .Counter, .btn-blurple .Counter, .btn-outline-purple, .btn-outline-purple:hover .Counter, .btn-outline-purple:active .Counter, .btn-outline-purple.selected .Counter, [open] > .btn-outline-purple .Counter, .btn-outline-purple:disabled, .btn-outline-purple.disabled, .btn-outline-orange, .btn-outline-orange:hover .Counter, .btn-outline-orange:active .Counter, .btn-outline-orange.selected .Counter, [open] > .btn-outline-orange .Counter, .btn-outline-orange:disabled, .btn-outline-orange.disabled, .btn-outline-green, .btn-outline-green:hover .Counter, .btn-outline-green:active .Counter, .btn-outline-green.selected .Counter, [open] > .btn-outline-green .Counter, .btn-outline-green:disabled, .btn-outline-green.disabled, .btn-transparent:hover, .btn-transparent:active, .bulk-actions-header.is-stuck, .Box--overlay, .btn-invisible, .commit-tease-contributors, .commit-icon .octicon, .gh-header-edit .edit-issue-title:focus, .new-discussion-timeline .composer .comment-form-head.tabnav, .discussion-timeline-actions, .progressive-timeline-container-loader, .timeline-progressive-disclosure-button, .dropdown-menu, .facebox-popup, .steps li.current, .select-menu-modal, .select-menu-tabs a.selected, .select-menu-tabs .select-menu-tab-nav.selected, .simple-box, .temp-avatar-stack .avatar, .integration-settings-callout, .auth-form-body, .cvv-hint-tooltip, .credit-card.normal .signature, .billing-addon-items tr.total-row, .billing-credit-card .javascript-disabled-overlay, .plan-choice.open, .plan-choice.selected, .branch-action-body, .documentation-results a, .select-menu-item, .logged-out.enter-coupon .header-logged-out, .coupons .coupon-form-body, .octofication .broadcast-icon-mask, .layout-reorder-menu .dropdown-toggle, .layout-reorder-menu-list .dropdown-item:hover, .dnext-sidebar-menu .menu-item.selected:hover, .dashboards-overview-cards .blankslate, .file .image .border-wrap, .news .alert .gravatar, .news .commits li img, .thread-subscription-status, .orghead .edit-org:hover, .auto-search-group .spinner, .migration-jumbotron-btn, .org-settings-updating, .manage-repo-access-group, .manage-memberships-tabs-item.selected, .theme-picker, .theme-picker-spinner, .page-preview, .project-columns, .project-card, .user-profile-sticky-bar:after, .user-profile-nav, .pr-toolbar, .diffbar, .review-thread-reply .inline-comment-form, .review-summary-form-wrapper, .readme .plain, .release-timeline-tags .expander-text:hover .expander-dots .expander-dot, .release-label, .release-label.draft, .release-label.prerelease, .is-failed .repo-file-upload-errors, .is-bad-file .repo-file-upload-errors, .is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors, .is-hidden-file .repo-file-upload-errors, .is-empty .repo-file-upload-errors, .session-device.session-current, .setup-info-module, .orgs-help-item-octicon, .org-sso .org-sso-panel, .tree-browser tr.navigation-focus td, .card, .site-subheader-sticky.is-stuck, a.button.classy.danger.disabled, a.button.classy.danger:disabled, a.button.classy.disabled:hover.danger.disabled, a.button.classy.disabled:hover.danger:disabled, a.button.classy:disabled:hover.danger.disabled, a.button.classy:disabled:hover.danger:disabled, a.danger.button.classy.disabled:disabled:hover, a.danger.button.classy:disabled, a.danger.disabled.button.classy, a.danger.disabled.button.classy:hover, button.classy:disabled:hover.danger.disabled, button.classy:disabled:hover.danger:disabled, button.danger.classy:disabled, button.danger.classy:disabled:hover, button.danger.disabled.classy, button.danger.disabled.classy:disabled:hover, input.classy.danger.disabled, input.classy.danger:disabled, input.classy:disabled:hover.danger.disabled, input.classy:disabled:hover.danger:disabled, input.danger.classy:disabled, input.danger.disabled.classy, .btn, div.search-form .autocomplete-results a {
background: #181818!important;
}
/* auto-generated rule for "background-color: #fff" */
/* auto-generated rule for "border: 1px solid #e1e4e8" */
.blankslate, .list-group-item, .pagination a, .pagination span, .pagination em, .ajax-pagination-form .ajax-pagination-btn, .range-editor, .project-column, .project-card {
border-color: #343434!important;
}
/* auto-generated rule for "border: 1px #e1e4e8 solid" */
.border, .code-list .file-box, .ScreenshotCarousel, .conflict-resolver.loading, .review-thread, .review-comment.is-comment-editing, .review-summary-form-wrapper, .org-sso .org-sso-panel, .card, .data-table {
border-color: #343434!important;
}
/* auto-generated rule for "border: 1px solid rgba(27,31,35,0.15)" */
.flash, .Label--outline, .boxed-group > h3, .boxed-group .heading, .comment-form-error, .comment-form-stale, .full-commit, .dropdown-menu, .select-menu-modal, .RecentBranches, .github-jobs-promotion p, .project-updated-message, .shelf-dismiss .close-button {
border-color: rgba(225, 225, 225, .2)!important;
}
/* auto-generated rule for "border: 2px solid #fff" */
.discussion-item-icon, .NotificationItem-icon, .pending-cards-status, .release-timeline-tags .date:after, .release-timeline-tags .expander-dots, {
border-color: #222!important;
}
/* auto-generated rule for "border: solid #ddd" */
.documentation-results a, ul#bootcamp li a img, input, textarea, .btn-text-field .btn, .btn-text-field .input, div.search-form input, div.search-form .autocomplete-results a, .markdown-format table, .markdown-format table td, .markdown-format table th, hr {
border-color: #484848!important;
}
/* auto-generated rule for "border-color: #e1e4e8" */
.semantic-toc-symbol:not(.last-visible):after, .select-menu-item + .semantic-toc-file:after, .tabnav-pr, .tabnav-pr .tabnav-tab.selected, .gollum-editor-help-parent li a:hover, .gollum-editor-help-list li a:hover, .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus, .pagination em:hover, .pagination em:focus, .progress-bar-inline .progress-bar, .plans-card-btn {
border-color: #343434!important;
}
/* auto-generated rule for "border-color: #dfe2e5" */
.select-menu-tabs a.selected, .select-menu-tabs .select-menu-tab-nav.selected {
border-color: #484848!important;
}
/* auto-generated rule for "border-bottom: 1px solid #e1e4e8" */
.Box-body, .menu-item, .menu-heading, .table-list, .boxed-group-list > li, .diff-table tr:not(:last-child) .line-comments, .discussion-item-review-comment, .facebox .facebox-staff-links, .facebox-header, .pagehead, .select-menu-header, .select-menu-divider, .merge-status-item, .file-header {
border-bottom: 1px solid #343434!important;
}
/* auto-generated rule for "border-bottom: 1px solid #dfe2e5" */
hr, .rule, .suggester li, .conversation-list-heading, .gollum-editor .collapsed, .gollum-editor .expanded, .gollum-editor-function-bar, .gollum-dialog-dialog h4, .select-menu-text-filter:first-child:last-child, .select-menu-tabs, .branch-summary:last-child, table.capped-list th {
border-bottom: 1px solid #343434!important;
}
/* auto-generated rule for "border-bottom: 1px solid #ddd" */
.blog-feedback-header, .early-access-thanks-wrapper, .migration-section, .migration-footer, .org-migration-settings-section, .migrate-org-roles-header, .manage-repo-access-title, .notification-center .overview, .two-factor-settings-group, .setup-header, .setup-info-module h2, div#common-issues h3, div#common-issues ul li, ul#categories li h5, ul.search-results li, form#new_category, div#article-form-container .preview, .markdown-format h3, div.content-header, .index-list h4 {
border-bottom: 1px solid #484848!important;
}
/* auto-generated rule for "border-bottom: 1px solid #d8d8d8" */
.wiki-rightbar .boxed-group.collapsed > h3 {
border-bottom: 1px solid #484848!important;
}
/* auto-generated rule for "border-left: 1px solid #e1e4e8" */
.summary-stats li {
border-left: 1px solid #343434!important;
}
/* auto-generated rule for "border-right: 1px solid #e1e4e8" */
.reaction-summary-item, .file-navigation .get-repo-btn:first-child {
border-right: 1px solid #343434!important;
}
/* auto-generated rule for "border-top: 1px solid #e1e4e8" */
.Box-footer, .commits-list-item + .commits-list-item, .diff-table .line-comments, .diff-table tr:not(:last-child) .line-comments, .timeline-comment .comment + .comment, .facebox-footer, .comment-reactions.has-reactions, .select-menu-divider, .branch-action-body .merge-message, .branch-action-body .merge-branch-form, .branch-action-item + .branch-action-item, .branch-action-item + .mergeability-details, .discussion-post .reply-comment:first-child, .last-review-thread, .file-navigation .get-repo-btn, .user-list-item + .user-list-item {
border-top: 1px solid #343434!important;
}
/* auto-generated rule for "border-bottom: 0" */
.menu-item:last-child, .menu-heading:last-child .border-bottom-0, .suggester li:last-child, .boxed-group > h3, .boxed-group .heading, .boxed-group-list > li:last-of-type, .boxed-group-table tr:last-child td, .commit-build-statuses .dropdown-menu .merge-status-list, .gh-header.pull .gh-header-meta, .timeline-comment-header:only-child, .discussion-item-review-comment:last-child, .dropdown-menu-ne:before, .dropdown-menu-ne:after, .gollum-editor-title-field, .prose-diff > .markdown-body .added, .prose-diff > .markdown-body ins + .added, .prose-diff > .markdown-body ins, .select-menu-list:last-child .select-menu-item:last-child, .select-menu-item.last-visible, .intgrs-dir-intro, .session-authentication .header-logged-out, .billing-addon-items td, .billing-section:last-child, .merge-status-item:last-child, .gh-header-new-pr .gh-header-meta, .branch-group-heading, .branch-summary, .codesearch-results .repo-list-item, .file.open .file-header, .delete-topic-button, .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button, .issue-keyword:hover, .repository-lang-stats ol.repository-lang-stats-numbers li, .news .alert .body, .member-row:last-child, .org-migration-settings-section:last-child, .manage-repo-access-list-item:last-child, .discussion-item-body .outdated-comment .file-header, .repo-file-upload-target.is-progress-bar, .repo-file-upload-target.is-uploading, .overall-summary-bottomless, .access-token .credential-authorization-status-item:last-child, .protected-branch-authorized-pushers-table .table-list, .setup-org, .tree-browser tbody tr:last-child td, #user-content-toctitle h2, .gist-sort-bar, .gist-quicksearch-results .select-menu-item:last-child {
border-bottom: 0!important;
}
.tabnav-tab {
border: 0px!important;
}
/* auto-generated rule for "border-left: 0" */
.social-count, .border-left-0, .flash-banner, .steps li:first-child, .session-authentication .flash.is-signed-in, .session-authentication .flash.is-signed-out, .golden-ticket-button:last-child, .select-menu-item, .teams-nav .teamnav-item, .summary-stats li:first-child, .url-box-clippy .zeroclipboard-button, .user-key-email-unverified, .sso-modal.error .flash-error, .tree-browser {
border-left: 0!important;
}
/* auto-generated rule for "border-right: 0" */
.border-right-0, .avatar-stack .avatar:last-child, .flash-banner, .comment-reactions .add-reaction-btn, .temp-avatar-stack .avatar:last-child, .session-authentication .flash.is-signed-in, .session-authentication .flash.is-signed-out, .select-menu-item, .delete-topic-button, .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button, .teams-nav .teamnav-item, .ScreenshotCarousel-navitem:last-child, .migrate-org-roles-item:last-child, .file-navigation .get-repo-btn.btn-block, .file-navigation .get-repo-btn:only-child, .sso-modal.error .flash-error, .tree-browser {
border-right: 0!important;
}
/* auto-generated rule for "border-top: 0" */
.menu-item:first-child, .border-top-0, .markdown-body .csv-data tr, .markdown-body .csv-data th, .boxed-group .tabnav.heading .tabnav-tab.selected, .boxed-group .tabnav-tab, .boxed-group.dangerzone .boxed-group-inner, .boxed-group-list:first-child > li:first-child, .boxed-group-list.standalone > li:first-child, .boxed-group-warning:first-child, .simple-conversation-list > li:first-child, .discussion-item-changes-marker + .discussion-commits, .discussion-timeline-actions .merge-pr, .discussion-item-merged.open .discussion-item-details-header:first-child, .discussion-item + .timeline-progressive-disclosure-container, .timeline-progressive-disclosure-container + .discussion-item, .flash-banner, .progress-bar-inline .progress-bar, .prose-diff > .markdown-body .added, .prose-diff > .markdown-body ins + .added, .prose-diff > .markdown-body ins, .auth-form-body, .session-authentication .flash.is-signed-in, .session-authentication .flash.is-signed-out, .plan-choice-bottom, ul.comparison-list > li.title, .select-menu-item, .delete-topic-button, .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button, .teams-nav .teamnav-item, .discussion-post .comment .comment-reactions, .repository-lang-stats-graph, .news .alert:first-child, .org-profile .member-badge, .org-repos-mini .org-repo-mini-item:first-child .org-repo-mini-cell, .invite-team-member-list .team:first-child .table-list-cell, .migrate-ability-list-item:first-child, .confirm-removal-list-item:first-child, .manage-repo-access-team-item:first-child, .member-badge + .member-badge, .diffbar .table-of-contents li:first-child, .review-comment .comment-reactions, .uploaded-files.is-populated + .drop-target p, .uploaded-files > li:nth-child(2), .mini-repo-list > :first-child .mini-repo-list-item, .experiment-repo-nav .new-issue-form, table.files tbody tr:first-child td, .listgroup-header, .typeahead-result:first-child, #user-content-toc tr, .gist-quicksearch-results .gist-quicksearch-result-group:first-child {
border-top: 0!important;
}
/* auto-generated rule for "border-bottom-color: rgba(27,31,35,0.15)" */
.dropdown-menu:before, .diffbar-range-menu .in-range:not(.navigation-focus):not(.is-range-selected) {
border-bottom-color: #343434!important;
}
/* auto-generated rule for "border-left-color: rgba(27,31,35,0.15)" */
.dropdown-menu-w:before {
border-left-color: #343434!important;
}
/* auto-generated rule for "border-right-color: rgba(27,31,35,0.15)" */
.dropdown-menu-e:before, .ContributingCallout--prior:before {
border-right-color: #343434!important;
}
/* auto-generated rule for "border-top-color: rgba(27,31,35,0.8)" */
.tooltipped-n:before, .tooltipped-ne:before, .tooltipped-nw:before {
border-top-color: #343434!important;
}
/* auto-generated rule for "border-left-color: rgba(27,31,35,0.8)" */
.tooltipped-w:before {
border-left-color: #343434!important;
}
/* auto-generated rule for "border-right-color: rgba(27,31,35,0.8)" */
.tooltipped-e:before {
border-right-color: #343434!important;
}
/* auto-generated rule for "border-bottom-color: rgba(27,31,35,0.8)" */
.tooltipped-s:before, .tooltipped-se:before, .tooltipped-sw:before {
border-bottom-color: #343434!important;
}
/* auto-generated rule for "background: rgba(27,31,35,0.8)" */
.tooltipped:after {
background: rgba(52, 52, 52, .8)!important;
}
/* auto-generated rule for "border-bottom-color: #fff" */
.review-summary:after, .dropdown-menu:after, .select-menu-tabs a.selected, .select-menu-tabs .select-menu-tab-nav.selected, .TutorialPopover:after, .gist-banner {
border-bottom-color: #181818!important;
}
/* auto-generated rule for "border-left-color: #fff" */
.boxed-group .tabnav.heading li:first-child .selected, .dropdown-menu-w:after {
border-left-color: #181818!important;
}
/* auto-generated rule for "border-top-color: #fff" */
.select-menu-button.primary:after, .HeaderNavlink:hover .dropdown-caret, .rename-owners-error span, .ldap-import-groups-container .team-name-exists, .session-device.session-current .sessions-more-info:after, .enterprise-mode .dropdown-caret {
border-top-color: #181818!important;
}
/* auto-generated rule for "border-right-color: #fff" */
.commit-form:after, .new-discussion-timeline .composer .timeline-comment:after, .dropdown-menu-e:after, .ContributingCallout--prior:after {
border-right-color: #181818!important;
}
.dropdown-caret {
vertical-align: -webkit-baseline-middle!important;
}
/* auto-generated rule for "border-top: 7px solid #fff" */
.dropdown-menu-ne:after {
border-top: 7px solid #181818!important;
}
/* auto-generated rule for "border-top: 8px solid rgba(27,31,35,0.15)" */
.dropdown-menu-ne:before {
border-top: 8px solid #343434!important;
}
.subnav-item, a.subnav-item {
border: 0px!important;
}
a.subnav-item:hover, .subnav-item:hover, .subnav-item.selected, .subnav-item.selected:hover {
background-color: #ff5050!important;
color: #fff!important;
opacity: 1!important;
}
/* auto-generated rule for "color: #444d56" */
.hidden-text-expander a, .ellipsis-expander, .subnav-search-context .btn, .markdown-body kbd, .email-format .email-hidden-toggle a, .commit .commit-title, .commit .commit-title a, .commit-desc pre, .commit-tease-sha, .timeline-commits .author, .timeline-commits .commit-message > code a, .full-commit .branches-list li, .full-commit .sha-block > .sha, .full-commit .sha-block > a, .branches-tag-list li:first-child, .keyboard-mappings, kbd, .pagehead-tabs-item .Counter, .reponav-item .Counter, .protip-callout, .render-notice, .select-menu-header .close-button:hover, .select-menu-header .octicon:hover, .select-menu-action, .octofication .message p, .teams-nav .teamnav-item:hover:not(.selected), table.capped-list .octicon, table.capped-list.mini-icons .mini-icon, .illflow-item .illflow-item-heading, .markdown-format kbd {
color: #b5b5b5!important;
}
/* auto-generated rule for "color: #586069" */
.pl-ba, .btn .Counter, .form-checkbox .note, .hfields .form-group dt label, .note, .drag-and-drop, .drag-and-drop-error-info, h2.account, p.explain, .menu-heading, .tabnav-tab, .tabnav-extra, .filter-list.pjax-active .filter-item, .filter-item, .subnav-search-input, .text-gray, .link-gray, .muted-link, .lead, .Label--gray, .Label--outline, .Counter, .table-list-header-meta, .table-list-header-toggle .btn-link, .suggester li small, .boxed-group > h3 a.boxed-group-breadcrumb, .boxed-group .heading a.boxed-group-breadcrumb, .boxed-group-inner, .boxed-group-inner .help, .breadcrumb, .btn-octicon, .capped-card > p, .email-format .email-quoted-reply, .email-format .email-signature-reply, .commit-group-title, .commits-list-item .commit-meta, .commits-list-item .commit-author, .commits-list-item .commit-desc pre, .timeline-commits .commit-desc pre, .full-commit .sha-block, .signed-commit-badge, .blob-num-expandable .diff-expander, .diffstat, .discussion-sidebar-item, .discussion-sidebar-heading, .milestone-name, .sidebar-assignee .assignee, .participation a, .lock-toggle-link, .gh-header-meta, .gh-header-meta .author, .tabnav-pr .tabnav-tab, .timeline-comment-header, .timeline-comment-header .author, .timeline-comment-header-text code a, .discussion-item .author, .discussion-item-icon, .discussion-item-header, .discussion-item-link, .discussion-item-ref-title .issue-num, .discussion-item-help, .discussion-item-integrations-callout .pull-request-integrations-dismiss, .pull-request-integrations-body, .discussion-item-toggle, .environment-name, .deployment-meta, .dropdown-header, .facebox .facebox-staff-links li, .facebox-footer .help, .keyboard-mappings .keys, .org-privileges-tour-dismiss, .gollum-editor-function-bar .gollum-editor-format-selector label, .gollum-dialog-dialog-body fieldset label, .list-group-item .list-group-item-summary a, .pagehead-tabs-item, .repohead h1, .reponav-item, .steps .complete, .select-menu-modal, .select-menu-item.selected .description, .select-menu-no-results, .select-menu-item-text .description, .select-menu-item-text .description-inline, .Subhead-description, .underline-nav-item, .marketing .pagehead p, .marketing-header .lead, .hanging-icon-list .octicon, .intgrs-lstng-item-description, .intgr-admin-link .octicon, .integration-settings-callout p, .credit-card .cvv span, .billing-section .section-label, .lfs-data-icon, .payment-history .currency, .payment-history .status, .discounted-original-price, .billing-manager-banner-title, .blob-interaction-bar .octicon-search, .blog-search .octicon-search, .blog-home:hover, .blog-feedback-description, .status-meta, .merge-pr-more-commits, .range-editor-icon, ul.comparison-list > li em, .branch-group-name, .code-list .full-path .octicon-repo, ul.simple-conversation-list a.meta, li.contribution .num, .octofication .notice-dismiss:hover, .dnext-sidebar-menu .menu-item, .dashboard-notice .dismiss:hover, .ghe-license-status p, .repo-snipit .octicon, .repo-snipit-description, .file .data.empty, .graph-filter .info, .header-search-scope, .integration-meta-head, .issues-reset-query, .table-list-milestones .stat-label, .task-progress, .marketplace-product-callout .branch-action-item-icon, .marketplace-product-callout-close .octicon:hover, .merge-branch-description, .owner-reponame .slash, .news blockquote, .news .alert .simple .title, .news .github-welcome .done, .news div.message, .news li blockquote, .notifications .read .type-icon, .notifications .read .list-group-item-name > a, .notifications .read .notification-actions, .notifications-sso-prompt a, .type-icon-state-none, .notifications-list .mark-all-as-read, .notification-actions .age, .notification-actions .btn-link, .thread-subscription-status, .NotificationItem-icon, .NotificationItem-meta, .oauth-permissions-details .octicon, .oauth-permissions-details .permission-summary .access-details, .oauth-no-description, .audit-log-search .member-info .ghost, .member-fullname, .org .no-results, .org-repos-mini .org-repo-name .octicon-repo, .add-member-wrapper .available-seats, .add-member-team-list .team-meta, .team-list-footer .show-all-link .octicon, .migration-feature-list, .migration-feature-list .octicon, .org-migration-settings-info, .delete-owners-button, .rename-owners-team-form .note, .migrate-ability-not-possible, .migrate-org-roles-lead, .migrate-org-roles-count, .migrate-org-avatar-list .migrate-org-more-ellipsis, .migrate-org-avatar-list .migrate-org-zero, .default-permission-update-text, .team-info-card .team-description .link, .stats-group-stat, .stats-group-stat.no-link:hover, .confirm-removal-container .private-fork-count, .confirm-removal-team .octicon, .confirm-removal-repo .octicon, .manage-user-role .role-info, .manage-member-meta-item, .manage-member-meta-item .btn-link, .manage-member-meta-item > .octicon, .org-user-notice-content .octicon, .manage-repo-access-lead, .manage-memberships-tabs-item, .pages-composer p, .project-header-link, .projects-reset-query, .pinned-repo-item .pinned-repository-handle, .diffstat-summary, .summary-stats li, .summary-stats li a, .releases-tag-list td.date a, .releases-tag-list p, .tag-references > li a, .release-timeline-tags .date, .release-authorship, .uploaded-files > li.delete, .uploaded-files .filesize, .uploaded-files .remove, .label-description, .labels-list-action, .mini-repo-list .no-repo, .mini-repo-list-item .repo-description, .timeout h3, .numbers-summary a, .numbers-summary .nolink, .repository-meta, .branch-infobar, .avatar-upload .upload-state p, .email-actions span.label, .boxed-group .fork-flag, .oauth-app-info-container dl.keys dt, .oauth-app-info-container .user-count, .logo-upload-container .upload-state p, .logo-placeholder, .security-history .security-history-timestamp, .two-factor-toggle .two-factor-status, .session-device, .session-device.session-current .sessions-more-info, .session-device.session-current .octicon, .collaborators .collab-remove .remove-link, .access-sub-heading, .boxed-group-list .access-level, .listgroup-item, .setup-header .lead a, .setup-secondary .info, .setup-info-module h2 .price, .setup-creditcard-form .help-text, .shelf-lead, .orgs-help-lead, .orgs-help-item-content, .orgs-help-dismiss, .team-label-ldap, .team-member-ellipsis, .team-breadcrumb.is-loading .breadcrumb-link, .tree-browser .octicon-file-text, .toolbar-item, .toolbar-item .menu-target, .member-suggestion .member-name, .member-suggestion .already-member-note, .member-suggestion .non-member-note, .member-suggestion .non-member-action, .team-suggestion .team-size, .team-suggestion .team-description, .repo-access-add-team .team-size, .repo-access-add-team .team-description, .follow-list .follow-list-info, .wiki-wrapper .wiki-empty-box, .wiki-wrapper .wiki-empty-box:hover, .wiki-wrapper .wiki-auxiliary-content .wiki-edit-link, .wiki-wrapper .wiki-custom-sidebar .octicon-pencil, .pullquote, .MarketingBody > p, .MarketingBody blockquote, .MarketingBody ul, .MarketingBody ol, .gist-snippet-meta .gist-count-links > li > a, .gist-revisions-list .gist-revision-meta {
color: #949494!important;
}
/* auto-generated rule for "color: #666" */
.billing-addon-items .discounted-original-price, .sort-bar .sort-label, .developer-thanks .hook, .repo-snipit-name, .notifications-list .confirmation, .repo-subscription-container .intro, .subscriptions-content .repo-icon, .orghead, .team-info-card .team-description, .vcard-username, .pulse-section, .releases-tag-list p a, .tag-info h3 a, .release-timeline-tags .expander-text, .release-authorship a, .repo-file-upload-target, .repo-file-upload-tree-target, .repo-file-upload-file-wrap .remove-file:hover, .mini-repo-list-item .repo-icon, .edit-profile-avatar .drag-and-drop, .user-key-email-unverified, .email-preference-exceptions h5, .collaborators .collab-info, .gist-snippet-meta .extra-info .text, div.article .full-image:hover .octicon-x, div.article #article-platform-nav ul li.selected, .sidebar li.muted, .sidebar li.muted a, div.native-download p .mega-icon, ul#categories li h5, ul#categories li h5 a, ul.search-results li, .content-header .silver-button, a.button.classy, a.button.classy.disabled, a.button.classy.disabled:hover, a.button.classy.disabled:hover:disabled, a.button.classy:disabled, a.button.classy:disabled:hover, button.classy, button.classy.disabled, button.classy.disabled:disabled:hover, button.classy:disabled, button.classy:disabled:hover, input.classy, input.classy.disabled, input.classy:disabled, input.classy:disabled:hover, label, .btn-text-field .btn, form#new_category .input, div.article-form-action-bar .custom-markup-injectors ul li a:hover, .preview-tabs a.selected, div.search-form .autocomplete-results .header a, .markdown-format h2, .markdown-format h6, .markdown-format blockquote, .markdown-format blockquote strong, .markdown-format .intro, .markdown-format code, .markdown-format pre, #footer, .index-list h4, .index-list h5 {
color: #949494!important;
}
/* auto-generated rule for "color: #6a737d" */
.pl-c, .cm-s-github-light .cm-comment, .text-gray-light, .markdown-body blockquote, .markdown-body h6, .table-list, .autocomplete-item .organization-member, .full-commit .branches-list li.loading, .full-commit .branches-list li.pull-request, .branches-tag-list li.loading, .commit-branches, .table-of-contents .octicon-diff-renamed, .toc-select .select-menu-item-icon.octicon-diff-renamed, .conversation-list-heading, .simple-conversation-list, .simple-conversation-list > li .num, .deployment-status-label, .list-group-item .list-group-item-summary a.quiet, .select-menu-tabs a, .select-menu-tabs .select-menu-tab-nav, .select-menu-item.disabled, .select-menu-item.disabled.selected, .select-menu-item.disabled .description, .select-menu-item.disabled.selected .description, .credit-card.amex .title, .billing-addon-items .addon-cost, .payment-history .refunded .status, .plan-choice-exp, .blame-commit-date[data-heat="10"], .blame-hunk:hover .reblame-link, .blog-aside .rss, .blog-post-meta, .blog-post-meta a, ul.comparison-list > li.title, .branch-search .clear-search, .branch-meta, .code-list .full-path a, .layout-reorder-menu-list .is-hidden .module-title, .context-filters .filter-label .filter-context-name, .graphs .dir, .delete-topic-button, .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button, .teams-nav .teamnav-item, .teams-nav .teamnav-item.selected .octicon, .hook-item .description, .hook-item.pending .icon-for-pending, .hook-item.inactive .icon-for-inactive, .hook-deliveries-list .item-status.pending, .hook-delivery-time, .repository-lang-stats ol.repository-lang-stats-numbers li > a, .repository-lang-stats ol.repository-lang-stats-numbers li > span, .marketplace-plan-link-container .marketplace-plans-remaining, .marketplace-product-callout-close .octicon, .NotificationItem-timestamp, .oauth-permissions-details.default:not(.delete) .access-details, .oauth-permissions-details.default:not(.delete) .permission-title, .oauth-permissions-details.none .access-details, .oauth-permissions-details.none .permission-title, .oauth-application-whitelist .edit-link, .oauth-application-info .app-info, .developer-app-item .developer-app-list-meta, .export-actions a, .owner-select-target.disabled, .owner-select-target.disabled .user-mention, .pinned-repos-selection-list-item, .card-filter-autocomplete-dropdown .autocomplete-text .autocomplete-text-qualifier, .vcard-detail .octicon, .member-badge .octicon, .user-profile-bio, .profile-timeline-card .issue-meta-section .octicon, .profile-rollup-toggle, .release-label, .mini-repo-list-item .stars, .numbers-summary .octicon, table.files td .simplified-path, table.files td.message, table.files td.message a, table.files td.age, .settings-email .email-actions .settings-remove-email.settings-disabled-remove-email, .setup-creditcard-form .form-group select:invalid, .task-run.pending .icon-for-pending, .task-run.inactive .icon-for-inactive, .team-listing .expand-nested-team, .home-hero-signup .form-control-note, .icon-cta > .octicon, .gist-snippet-meta .gist-count-links > li .octicon, .gist-snippet-meta .extra-info, .gist-quicksearch-results .select-menu-item h4, .gist-quicksearch-results .select-menu-item span {
color: #949494!important;
}
/* auto-generated rule for "color: #959da5" */
.pl-sg, p.explain .octicon, .btn-octicon.disabled, .btn-octicon.disabled:hover, .commit-id, .signed-commit-header .octicon-unverified, .footer-octicon:hover, .repohead h1 .octicon, .license-summary-octicon, .octofication .notice-dismiss, .dnext-content .octicon, .dashboard-notice .dismiss, .svg-tip, .teams-nav .teamnav-item:hover:not(.selected) .octicon, .page-new-repo .octicon-repo, .news .alert .octicon, .news .alert .time, .news .alert .title .subtle, .team-member-list .invite-icon, .team-member-list-avatar .octicon, .pinned-repos-selection-list-item .stars, .branch-infobar .muted-link .octicon, .shelf-dismiss, .email-suggestion .octicon-mail, .home-hero-signup .form-control-note .notice-highlight {
color: #7b7b7b!important;
}
/* auto-generated rule for "color: #a3aab1" */
.blankslate-icon, .gh-header-number, ul.comparison-list > li .octicon {
color: #606060!important;
}
/* auto-generated rule for "color: #c6cbd1" */
.subnav-search-icon, .locked-conversation .write-tab, .locked-conversation .preview-tab, .commit-group-title .octicon-git-commit, .table-of-contents .toc-diff-stats .octicon, .footer-octicon, .steps li, .select-menu-header .close-button, .select-menu-header .octicon {
color: #4d4d4d!important;
}
/* auto-generated rule for "color: rgba(27,31,35,0.85)" */
.boxed-group-warning, .intro-shelf {
color: rgba(230, 230, 230, .85)!important;
}
/* end auto-generated rules */
body {
background-color: #222!important;
background-image: none!important;
background-clip: border-box!important;
background-origin: padding-box!important;
background-attachment: fixed!important;
background-repeat: repeat!important;
background-size: auto!important;
background-position: left top!important;
}
/* custom code font */
pre, code, tt, kbd:not(.badmono), pre, samp, .blob-code, .file-data pre, .line-data, #gist-form .file .input textarea, .blob-code-inner {
font-family: "Noto Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace!important;
}
/* Base link/panel colors - text */
input[type="text"]:focus + .header-search-scope, .plans-row .plan, .filters li.selected, .vcard-stat, .zeroclipboard-button, .creator a, button#logout:hover, #user-links .sign-out-button:hover, .numbers-summary a:hover, .numbers-summary a:hover span, .tag-info a:hover, .tag-info a:hover span, #forkqueue .instructions, .addon h4, .api-status a:hover, .gist-item ul.meta > li > a:hover, .sidebar-module h3 a:hover, a.browse-button:hover, a.browse-button:hover span, .team-mention, .comment-header-actions li:hover, .org-repo-stats a:hover, .org-module-link:hover, .org-module-link:hover .org-stats, .org-module-link:hover .octicon, .org-header-info .name-link:hover, .social-count:hover, .new-file-link span, .org-repo-name a:hover .repo-prefix, .timeline-commits .commit-meta .octicon-comment-discussion:before, .oauth-permissions-details .permission-title, .owner-name, .timeline-comment-action:hover, .discussion-sidebar-toggle:hover, .sidebar-assignee .assignee:hover, .timeline-commits .commit-message a:hover, .timeline-commits .commit-id:hover, #markdown-toc li a:hover, .sidebar-module ul ul li a:hover, .org-teams-list .team:hover .team-name, .gh-header-back:hover span:before, .org-header .edit-org:hover .octicon, .team-info-card .stats-group .stat:hover, .team-info-card .stats-group .stat:hover .stat-number, .btn-octicon:hover, a.discussion-item-entity:hover, .discussion-item-entity:hover, .issues-listing .table-list-issues .issue-comments-link:hover, .issues-listing .table-list-issues .issue-title-link:hover, .issues-listing .table-list-issues .issue-meta-section a:hover, .issues-reset-query:hover, .box-action:active, .issues-listing .table-list-issues .milestone-link:hover .octicon, .labels-list-action:hover, .commits-list-item .commits-comments-link:hover, .discussion-item-ref-title .title-link:hover, .box-action:hover, .repo-list-stats .repo-list-stat-item:hover, .branch-status-details, .notification-actions .btn-link:hover, a.discussion-item-toggle-open:hover, a.discussion-item-toggle-closed:hover, button.discussion-item-toggle-open:hover, button.discussion-item-toggle-closed:hover, .task-list a, .full-commit .btn-outline:hover:not(:disabled), .zeroclipboard-link, .stats-group-stat:hover, .stats-group-stat:hover .stat-number, .tag-references > li a:hover, .two-factor-toggle .two-factor-status button, .tree-browser tr.navigation-focus .octicon-chevron-right, #header ul.top-nav > li > a:hover, #header ul.top-nav > li > button:hover, .new-file-form, .date_selector td, .pagination a, .pagination span, .pagination em, .timeline-comment-actions .octicon:hover, a.org-link:hover, a.commit-link, .team-grid .team-name:focus, .team-grid .team-name:hover, a.tabnav-extra:hover, .tabnav .tabnav-extras:hover, .milestone-title-link a:hover, .application-authorizations .oauth-app-owner:hover, .expand-more, .participation a:hover, .commit .commit-title .issue-link, .gist-snippet-meta .gist-count-links > li > a:hover, .orgs-help-item-octicon .mega-octicon, .release-timeline-tags .expander-text:hover, .ajax-pagination-btn, .markdown-body a[href*="/labels/"], .select-menu-action:hover, .wiki-wrapper .wiki-history .commit-id:hover, .milestone-name:hover, .toolbar-item .menu-target:hover, .toolbar-item:hover, .toolbar-commenting .dropdown-item:hover, .member-meta .member-meta-link:hover, .octofication .broadcast-icon, .member-meta .btn-link:hover, .ghd-icon-active, .oauth-application-info .meta-link:hover, .header-logo-wordmark:hover, .lock-toggle-link:hover, a.lock-toggle-link:hover, .toolbar-item .menu-target:focus, .toolbar-item:focus, .sub-nav li a:hover, .site-header-menu .nav-item:hover, .scoped-search .form-control.focus .header-search-scope, .btn-link, a.btn-link, .text-blue, a.text-blue, .orghead .edit-org:hover, .Box-body-row--highlight .Box-row-link:hover, td.selectable-day, .date-selector .date-button, .exploregrid-item:hover .exploregrid-item-title, .stale-files-tab a, .intgrs-lstng-item-link:hover .intgrs-lstng-item-header, .link-blue, a.link-blue, .profile-rollup-toggle:hover, .site-header-nav a:hover, .link-gray-dark:hover, .dashboard-notice .octicon-organization, .Box-row-link:hover, .project-header-link:hover, a.project-header-link:hover, td.icon .octicon-file-symlink-directory, td.icon .octicon-file-submodule, .pl-corl, .header-nav-link:hover, .header-nav-link:focus, .header-navlink:focus, table.files td.message a:hover, .link-gray:hover, .news .link-gray-dark:hover, .news a.link-gray-dark:hover, .awesome-autocomplete .aa-query strong, .awesome-autocomplete .aa-query-default em, .awesome-autocomplete .tt-suggestion .octicon, .octotree_views .octotree_treeview .jstree-anchor .jstree-icon.tree:before, .octotree_github_sidebar a.octotree_toggle:hover, .octotree_github_sidebar a.octotree_opts:hover, .octotree_github_sidebar a.octotree_opts.selected, html .octotree_github_sidebar .octotree_views .octotree_treeview .jstree-anchor, .octotree_github_sidebar a.octotree_toggle:not(.octotree_loading):hover, .zhc-click-text-item, .zhc-pipeline-sort-status__clear, .zhc-pipeline__load-more, .RecentBranches-item, .commit-ref .user, .blame-commit-date[data-heat] {
color: #ff5050!important;
}
.HeaderNavlink:hover .dropdown-caret, .HeaderNavlink:hover .dropdown-caret {
border-top-color: #ff9090!important;
}
.Header .header-search-wrapper {
outline: 1px solid!important;
outline-color: #000!important;
border: none!important;
box-shadow: none!important;
}
.Header .header-search-wrapper.focus {
outline-color: #000!important;
}
.Header .header-search-wrapper.focus .header-search-scope {
border-right-color: #000!important;
}
a.js-selected-navigation-item.selected.menu-item:hover, a.btn.btn-sm:hover, a.subnav-item.js-subnav-item:hover, button.btn-link.no-underline.text-gray.dropdown-toggle.js-menu-target:hover, .btn.btn-outline:hover, .BtnGroup:hover, ::selection, ::-moz-selection, .enterprise ul.selling-points li, .zhc-dependency-issue-selector__issue-item-meta, .zhc-selection-item--is-active span, .zhc-btn--tint, .pl-ii, .pl-ii .pl-cce, .pl-id, .CodeMirror-guttermarker, .link-gray-dark:hover, a.link-gray-dark:hover, .subnav-search-context .btn:hover {
color: #fff!important;
}
/*hover color for others*/
.comment-reactions-options .reaction-summary-item:hover, .comment-reactions .add-reaction-btn:hover, .btn:hover, .btn:active, .HeaderNavlink:hover, .numbers-summary a:hover .num, .btn-link:hover, .user-nav .octicon-plus .dropdown-caret:hover {
color: #ff9090!important;
text-decoration: none!important;
}
/*fix the label thing
a:not([href*="/labels/"]):not(.subnav-item):hover, .comment-reactions-options .reaction-summary-item:hover, .comment-reactions .add-reaction-btn:hover, .btn:hover, .btn:active, .HeaderNavlink:hover, .numbers-summary a:hover .num {
color: #ff9090!important;
text-decoration: none!important;
}
*/
a:not([href*="/labels/"]):not(.subnav-item):hover .text-emphasized {
color: #ff7575!important
}
.reponav svg.octicon, .numbers-summary .octicon {
color: inherit!important;
}
.numbers-summary .octicon {
vertical-align: text-top;
height: 20px!important;
width: auto!important;
}
/* Base color panel */
.context-button:after {
border-color: #ff5050 transparent transparent!important;
}
.octofication .message, .panel-nav:not(.disabled):active, .diagram-icon:not(.active), .btn.btn-outline.zeroclipboard-is-hover, :checked + .radio-label, .gist-snippet .file-box:hover .file, .octofication .message, .reaction-sort-item.selected, .pull-request-link, .timeline-progressive-disclosure-button:hover {
border-color: #ff5050!important;
}
button.btn.btn-sm.btn-outline.js-details-target {
border-color: #ff2020!important;
background-color: #ff2020!important;
opacity: 0.25!important;
color: #fff!important
}
button.btn.btn-sm.btn-outline.js-details-target:hover {
opacity: 1!important;
border-color: #ff5050!important;
}
#com #header .top-nav .dropdown-button:hover .dropdown-caret, .header-nav-link:hover .dropdown-caret, .header-nav-link:focus .dropdown-caret, .header-navlink:hover .dropdown-caret, .header-navlink:focus .dropdown-caret {
border-top-color: #ff5050!important;
}
.table-list .table-list-item.unread .table-list-cell-checkbox, .Box-row--unread, .Box-row.unread {
border-left-color: #ff5050!important;
box-shadow: 2px 0 0 #ff5050 inset!important;
}
/* notification icon */
.notification-indicator .mail-status {
background: #ff5050!important;
border-color: #1d1d1d!important;
}
/* text selection */
.CodeMirror-selected, .CodeMirror ::selection, .CodeMirror ::-moz-selection {
background: rgba(255, 255, 255, .12)!important;
}
/* placeholder */
::-webkit-input-placeholder, ::-moz-placeholder, ::placeholder {
color: #666!important;
opacity: 1!important;
}
.select-menu-text-filter input::-webkit-input-placeholder, .select-menu-text-filter input::-moz-placeholder, .select-menu-text-filter input:-ms-input-placeholder, .select-menu-text-filter input::placeholder {
color: #555!important;
}
/* focus hightlight */
a:focus, button:focus, [tabindex] {
outline-color: #ff5050!important;
}
input.focus[type="text"], #adv_code_search .focus.search-page-label, /* below selector has a ton of weight. Better to override it with
* class selectors that unset box-shadow and rules here. Testable
* on the repo tag editor */
input[type="text"]:focus:not(.js-color-editor-input):not(.tree-finder-input):not(.js-site-search-focus):not(.tag-input-inner), .focused .drag-and-drop, #adv_code_search .search-page-label:focus, input.focus[type="password"], input[type="password"]:focus, input.focus[type="email"], input[type="email"]:focus, input.focus[type="number"], input[type="number"]:focus, input.focus[type="tel"], input[type="tel"]:focus, input.focus[type="url"], input[type="url"]:focus, #q:focus ~ button, input.color-editor-input:focus, #ghd-settings select:focus, #ghd-settings input:focus, .intgrs-lstng-item:hover, .ajax-pagination-btn:focus, .select-menu-item:focus, .form-select.focus, .form-select:focus, input[type="checkbox"]:focus, .upload-enabled.focused {
border-color: #ff5050!important;
box-shadow: none!important;
outline-color: #ff5050!important;
}
/* inputs */
select, input:not(.btn-link), textarea {
-moz-appearance: none!important;
background-color: #181818!important;
border-color: #343434!important;
color: #ccc!important;
}
/* below style currently does not work in Firefox, see */
/* https://bugzilla.mozilla.org/show_bug.cgi?id=1394491 */
optgroup, optgroup:before {
color: #888!important;
background-color: #181818!important;
}
/* custom checkbox and radio styles. We need a full set of styles here as
* WebKit removes all of them when -webkit-appearance: none is set. */
input[type="checkbox"], input[type="checkbox"]:focus, input[type="radio"], input[type="radio"]:focus, input[type="checkbox"]:hover:active, input[type="radio"]:hover:active, input[type="checkbox"]:disabled, input[type="checkbox"]:hover:disabled, input[type="checkbox"]:hover:active:disabled {
-webkit-appearance: none!important;
background-color: #181818!important;
border: 1px solid #484848!important;
color: #eee!important;
height: 1em!important;
width: 1em!important;
}
input[type=radio] {
border-radius: 100%!important;
}
input[type="checkbox"]:checked {
background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48Zz48cmVjdCBoZWlnaHQ9IjUxMiIgd2lkdGg9IjUxMiIgeT0iMCIgeD0iMCIgZmlsbD0iIzAwMDAwMCIvPjxwYXRoIGQ9Im05OC43OTk5ODggMjEzbC0wLjc5OTk4OCA4OWMwIDAgMTAzIDEwMiAxMDQgMTAyYzEgMCAyMDUgLTIwMSAyMDUgLTIwMWMwIDAgMCAtOTAgMCAtOTFjLTAuNzk5OTg4IDAgLTIwNCAyMDMgLTIwNCAyMDNsLTEwNCAtMTAyeiIgZmlsbD0iI2RkZGRkZCIvPjwvZz48L3N2Zz4KCg==")!important;
background-size: cover!important;
}
input[type="checkbox"]:indeterminate {
background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48Zz48cmVjdCBoZWlnaHQ9IjUxMiIgd2lkdGg9IjUxMiIgeT0iMCIgeD0iMCIgZmlsbD0iIzAwMDAwMCIvPjxyZWN0IGhlaWdodD0iMTI4IiB3aWR0aD0iMzg0IiB5PSIxOTIiIHg9IjY0IiBmaWxsPSIjZGRkZGRkIi8+PC9nPjwvc3ZnPg==")!important;
background-size: cover!important;
}
input[type=radio]:checked {
background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48Zz48cmVjdCBoZWlnaHQ9IjUxMiIgd2lkdGg9IjUxMiIgeT0iMCIgeD0iMCIgZmlsbD0iIzAwMDAwMCIvPjxjaXJjbGUgY3g9IjI1NiIgY3k9IjI1NiIgcj0iMTI4IiBmaWxsPSIjZGRkZGRkIi8+PC9nPjwvc3ZnPg==")!important;
background-size: cover!important;
}
code {
overflow: visible!important;
}
.blog-aside {
position: sticky!important;
position: -webkit-sticky!important;
top: 8px!important;
}
/* copied from Refined GitHub extension */
.pull-request-tab-content .diff-view .file-header {
position: sticky!important;
position: -webkit-sticky!important;
top: 40px!important;
z-index: 6!important;
}
/* User time line firsts */
div[id^="contribution-joined-github"] img {
padding-bottom: 20px!important;
}
/* PR toolbar tweaks */
.pr-toolbar.is-stuck {
pointer-events: none!important;
}
.pr-toolbar.is-stuck + .pr-toolbar-shadow {
background: #181818!important;
top: 0!important;
height: 40px!important;
border-bottom: 1px solid #343434!important;
}
.diffbar {
padding-top: 10px!important;
padding-bottom: 10px!important;
}
.is-stuck .diffbar {
background: #181818!important;
height: 2.5em;
pointer-events: all!important;
}
/* User profile: Make the border not cross into the years buttons */
.profile-timeline-month-heading:after {
width: calc(100% - 94px)!important;
}
.comment-reactions .btn-link.user-has-reacted {
background-color: rgba(65, 131, 196, .2)!important;
}
/* HACK: Label colors */
a.label[href*="/issues?"][style*=" color: #f"], a.label[href*="/pulls?"][style*=" color: #f"] {
color: #e8e8e8!important;
}
a.label[href*="/issues?"][style*=" color: #e"], a.label[href*="/pulls?"][style*=" color: #e"] {
color: #e8e8e8!important;
}
a.label[href*="/issues?"][style*=" color: #d"], a.label[href*="/pulls?"][style*=" color: #d"] {
color: #e8e8e8!important;
}
a.label[href*="/issues?"][style*=" color: #c"], a.label[href*="/pulls?"][style*=" color: #c"] {
color: #e8e8e8!important;
}
a.label[href*="/issues?"][style*=" color: #3"], a.label[href*="/pulls?"][style*=" color: #3"] {
color: #181818!important;
}
a.label[href*="/issues?"][style*=" color: #2"], a.label[href*="/pulls?"][style*=" color: #2"] {
color: #181818!important;
}
a.label[href*="/issues?"][style*=" color: #1"], a.label[href*="/pulls?"][style*=" color: #1"] {
color: #181818!important;
}
a.label[href*="/issues?"][style*=" color: #0"], a.label[href*="/pulls?"][style*=" color: #0"] {
color: #181818!important;
}
.markdown-body pre code, .markdown-body pre tt {
padding: .2em 0!important;
border: none!important;
}
.overall-summary {
border: none!important;
}
.markdown-body code:before, .markdown-body code:after, .markdown-body tt:before, .markdown-body tt:after, .markdown-body pre code:before, .markdown-body pre code:after, .markdown-body pre tt:before, .markdown-body pre tt:after, img[src$="/notices/context_button.png"], a.tabnav-extra {
display: none!important;
}
.intgrs-lstng-item-description:after, .marketplace-product-callout-bg {
background-image: linear-gradient(to right, rgba(24, 24, 24, 0), #181818 80%)!important;
}
.markdown-body a:hover * {
text-decoration: inherit!important;
}
#message-list .pagination a:hover, .link-mono:hover, .text-mono:hover {
text-decoration: underline!important;
}
.branch-infobar {
font-weight: normal!important;
}
.merge-pr-more-commits, .profile-timeline-month-heading {
padding: 2px 5px!important;
}
input.tree-finder-input, input.tree-finder-input:focus, input.js-site-search-focus {
background: transparent!important;
border: none!important;
box-shadow: none!important;
}
.markdown-body a:not([href]), .markdown-body a code {
color: inherit!important;
text-decoration: none!important;
}
.markdown-body strike code, .markdown-body strike tt {
text-decoration: line-through!important;
}
.blame-commit + .blame-line {
border-top: 1px solid #484848!important;
box-shadow: none!important;
}
.dropdown-menu, .word-upload-callout, .select-menu-modal {
box-shadow: 0 3px 12px rgba(0, 0, 0, .4)!important;
}
.exploregrid-item {
border-color: rgba(255, 255, 255, .075)!important;
box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 5px 10px rgba(0, 0, 0, .05)!important;
}
.exploregrid-item:hover {
border-color: rgba(255, 255, 255, .15)!important;
box-shadow: 0 1px 3px rgba(0, 0, 0, .15), 0 8px 15px rgba(0, 0, 0, .3)!important;
}
#com hr {
border-bottom: none!important;
}
/* remove shadow */
h1, h2, h3, h4, pre, pre *, code, tt, li, p, input, a, th, kbd, .news, .btn, .metabox em.placeholder, table.notifications, #download_button, .comment-count, em.date, input.search, #user-links, .upper_footer, .switcher > span:after, .upgrades td, .blog-feedback, .description, .nav-bar-tabs, .pagination span, .mini-icon-advanced-search, .count, .select-menu-title, .select-menu-button:after, #repo-message, .usage-bar dt, #user-links .name img, #common-issues, .upload-progress, .svg-tip, .meta, .flash, .flash-global, #files .file .meta .info span, .file-box .meta .info span, body#com #header, .search-filters, .usage-bar dd, .avatar-stack.multiple-avatars .avatar:last-child, .avatar-stack.multiple-avatars:before, .box-action, .file-diff-line, .file-code-lines, #adv_code_search .search-page-input, li.ssh-key .ssh-key-state-indicator.not-recent, #gist-form .gist-name-textbox, .labels .label, .octotree_views .octotree_view .octotree_view_header, .fullscreen-overlay textarea, .avatar-child, .discussion-item .label-color, .coupons .coupon-form-body, .label-private, .repo-file-upload-progress, .more-repos, .blame-commit .blame-commit-info, .label, .Label {
box-shadow: none!important;
}
a, button, p, ul, li, dl.form label, .formbody label, .js-context-button, .footer-text, .octicon-mark-github, .minibutton span, span.name, .diff-line-code, .num, .user-list em, .diff-expander .octicon-unfold:hover, .select-menu-loading-overlay:before, .select-menu-item a, .minibutton, .mini-icon, .mini-icon:before, .list-tip:before, .line-num-content, .diff-expander .octicon-unfold, .minibutton i, .comment-header-author, .header, .gist .gist-file .gist-meta, .logo-placeholder, .branch-group-heading, .render-bar, .auth-form-header .octicon, .render-info .symbol, .article-meta, .select-menu-title, .text-shadow-light, .text-shadow-dark, ul#bootcamp li a h4, .Header {
text-shadow: none!important;
}
/* transparent background only */
body > pre, .textographic a.repo, .stars-browser .filter-bar, .highlight .file-diff-line:hover pre, .gravatar, .topsearch span.search-input, p.meta, .sidebar .milestone, .commit-desc pre, #facebox, .profilecols .filter-bar, .btn-group, div.content-header .search-form, .file-code, .org-header .edit-org:hover, .gist-advanced-options .select-menu-button:after, #wrapper, li.commit, li.public, .gravatar img, .commit-comments-header-sha, pre.headers code, .audit-search-form, .columns.equacols.bordered, .gist-item ul.meta > li > a:hover, .commits li img, a.minibutton code, .milestone, .keyboard-mappings th, .api #header-wrapper .nav, .marketing-nav a.selected, #graph_data .tabs, .org-nav-item.selected, .edit-team-member:hover, tr.commit, .release-timeline .js-details-container, .section-heading-title a.js-selected-navigation-item, .featured-callout .screenshot, .timeline-commits .commit-meta .status, .theme-picker-spinner, .timeline-commits .commit-meta .octicon, .file .meta-divider, .avatar-stack.multiple-avatars:before, #feedHandler, .discussion-sidebar-item .thread-subscription-status, .boxed-group.application-show-group .logo-upload, .diagram-icon-small, .commits-listing .commit-group-title .octicon-git-commit, #readme .highlight, .ace-github, .add-member-team-list.table-list, .theme-picker, .avatar-stack .avatar, .boxed-group, .full-commit .btn.btn-outline, .prose-diff > .markdown-body ins, .header .divider-vertical, .ace-github-base16, .markdown-body pre code, .markdown-body pre tt, #readme .plain pre, .uploaded-files, .merge-pr-more-commits code, .two-factor-toggle .two-factor-status button, .input_area, #notebook .highlight, #notebook .highlight pre, .output_area pre, .gist-snippet-meta .gist-count-links > li > a:hover, .markdown-body img, .delete-owners-button:hover, .avatar-child, .session-authentication .header-logged-out, .session-authentication .auth-form-header, .timeline-progressive-disclosure-items, #com #footer, .pr-toolbar, .diffbar, .shade-gradient, #categories .list, .gist-banner, .select-menu-item-parent, .main-content, .showcase-page-header, .showcase-page-pattern:after, .description-inline, .result-group a, .border-wrap, .select-menu-item, a.feed-icon, .session-device, .boxed-group-list > li.session-device:hover, #message-list .pagination a, #message-list .pagination .disabled, .merge-status-item .merge-status-icon, .js-release-form .comment-form-head.tabnav, .project-columns, .project-header, .user-profile-nav, .profile-timeline-year-list.bg-white, .discussion-item-review .timeline-comment, .libraries-jumbotron, .sidebar-module h3 a:hover, .menu-item.selected, .bg-shade-gradient, .dev-hero, .render-container.is-render-ready.is-render-requested:not(.is-render-failed), .user-list li em, .toolbar-commenting .dropdown-item, .toolbar-commenting .dropdown-item:hover, .CodeMirror-lines, .api table, .dashboard-notice .coupon, .release-label, .oauth-org-access-details .oauth-org-item.on, .MarketplaceSideNav, .btn-link:not(.js-new-label-color) {
background: none!important;
}
/* remove background gradient */
.big-notice, .clean td, .legend .clean, .avatar .overlay.size-48, .listing.closed, .gist .gist-file .gist-data, .gist-syntax, .gist .gist-file .gist-data .line-numbers, .listing .repo, .render-shell .leaflet-marker-pane img, .showcase-page-pattern, .showcase-page-pattern:after, #notebook .output_png img, .signup-prompt-bg {
background-color: transparent!important;
background-image: none!important;
}
/* border-radius */
#wrapper, #your-repos-filter, .topsearch ul.nav, .merge-pr-more-commits, .oauth-org-access-details .boxed-group-list > li.on, .gist-snippet .file-box .highlight {
border-radius: 3px!important;
}
/* add rounded borders on bottom - issue caused by GitHub bugs */
body[data-render-url], .render-viewer, .comment-content, .gist .gist-file .gist-meta, .more-repos {
border-radius: 0 0 3px 3px!important;
}
.dashboard-tabs a, .search-filters {
border-radius: 0!important;
}
.discussion-topic-header, .previewable-comment-form .tabnav {
border-radius: 3px 3px 0 0!important;
}
/* repo labels, private repo lists */
.repo-label span, .private .repo-list-item, .hook-delivery-guid {
background: #222!important;
color: #777!important;
}
.private .mini-repo-list-item .repo-icon {
color: #777!important;
}
.private .mini-repo-list-item {
background: #221!important;
}
/* previously orange border bottom */
.pagehead ul.tabs li a.selected, .pagehead > ul.tabs li a:hover, .filter-selected, div.listing.navigation-focus, div.issues.navigation-focus, .repo-filter:hover, .dashboard-tabs a.selected, .marketing-nav a.selected, .orgs-nav .org-nav-item.selected, a.pagehead-nav-item.selected, .underline-nav-item.selected {
border-radius: 0!important;
border-bottom: 2px solid #eee!important;
}
.section-nav .active a, .js-current .standalone a, .sidebar-module .disable > a {
border-radius: 0!important;
border-left: 2px solid #eee!important;
}
.tabs > a.selected {
border-color: transparent!important;
border-top: 2px solid #eee!important;
}
.menu-item.selected:before {
background-color: #fff!important;
}
.dropdown-arrow {
border-top-color: #eee!important;
transition: none!important;
}
#com #header .top-nav .dropdown-caret {
border-top-color: #ccc!important;
}
.js-menu-target:hover .dropdown-arrow {
border-top-color: #ff5050!important;
}
/* Make it more apparent that <details> is clickable */
.markdown-body details summary:hover {
background: #282828;
box-shadow: 0 0 0 2px #282828;
cursor: pointer;
}
/* GitHub Bug: Center discussion close icon vertically */
.discussion-item-closed .octicon {
position: relative!important;
top: -1px;
}
/* GitHub Bug: Center counters vertically on the line */
.boxed-group .counter, .reponav-item .counter, .boxed-group .Counter, .reponav-item .Counter {
position: relative!important;
top: -1px!important;
}
/* GitHub Bug: Fix image swipe handle misalignment */
.swipe .swipe-frame .swipe-bar .top-handle, .swipe .swipe-frame .swipe-bar .bottom-handle {
left: -6px!important;
}
/* GitHub Bug: Fix text selection not working on inline <code> bug in Firefox */
.markdown-body code, .markdown-body tt {
padding: 0 .3em!important;
display: inline-block!important;
max-width: 100%!important;
}
/* GitHub Bug: Stop commit message field from resizing horizontally */
#commit-description-textarea {
resize: vertical!important;
}
/* GitHub Bug: Fix broken position:sticky emulation in Firefox */
@supports (position: sticky) {
.discussion-sidebar {
position: sticky!important;
top: 0!important;
}
.discussion-sidebar-sticky {
position: static!important;
width: auto!important;
}
.discussion-sidebar .is-placeholder {
display: none!important;
}
}
/* GitHub Bug: Fix org layout issue */
/* https://github.com/isaacs/github/issues/934 */
.user-profile-repo-filter {
width: 100%!important;
}
/* Tweak: Square counters, add 1px padding on bottom to counter uneven font size */
#conversation_tab_counter, #commits_tab_counter, #files_tab_counter, .reponav-item .counter, .reponav-item .Counter {
border-radius: 2px!important;
padding: 2px 5px 3px!important;
}
.topic-tag {
padding: .2em .9em!important;
}
/* invisible border */
.gisttabs a:not(.selected), .gisttabs a:not(.selected):hover, .timeline-comment-wrapper, .avatar-stack .avatar, .full-commit .commit-meta, .list-group-item, .breadcrumb, .tabs > a, .header .divider-vertical, .about-menu-link {
border-color: transparent!important;
}
/* darken border */
.wiki-wrapper .wiki-empty-box:hover, .render-shell .slider .slider-track, .render-shell .slider-bar, .about-menu-link:hover, .about-menu-link.selected, .pricing-table {
border-color: #777!important;
}
img, #browser table, #browser table th, #issues .menu ul li, .branches .more-branches, .issues td, ul.main_nav li.selected, .browser_header, .issue-head, .bootcamp-help .image, ul.hook-list, .clone-url-button, .list-tip li, .section-nav a, .search-menu-container, .repo_list li a, .graphs .axis, .switcher > span:after, a.assignee-bit, .menu li, .notifications td, .filter-tab, ul.hook-list li, .repo .border, .box-action, ul.repo-stats li a, .footer_nav h4, .footer-divider, .chromed-list-browser, .js-activate-link, .chromed-list-browser div, .filter-bar, .columns.sidebar, .title, .lbl, #contributors .person, .tabnav, #commit-activity-master, #services, .top-rule, .blog-post, #services .service, ul.stats, .select-menu-filters, .select-menu-item, .select-menu-tabs, .release-list > li, .url-box, .context-body, .api li:before, .library-list .feature, .lower_footer, .cheatsheet, .pagehead.settings-area, .release-body, .suggester, .pull-state, .pull-number, .merge-pr, .gist-file, #graph-shots li, .sidebar, .release-timeline, .explore h2, #head, .leaderboard-list-item, .release-timeline-tags .main, .search-result-item, .details, .jobs-list, .content-header, .user-list-item, .markdown-body, ul#categories li h5, .render-view-modes li, .gobutton.with-comments .sha, #gollum-editor-function-bar, .capped-box, .steps li, #common-issues, .steps, #graphs, .previewable-comment-form .comment, .org-module, .org-repo, .table-list, .org-add-footer, .auto-search-group .search-filter, #notification-center li, .branch-status, .comment + .comment, .discussion-bubble-inner, .member-row, .press-info, .timeline-comment, .timeline-commits .timeline-commits-header, .marketing-section, .featured-callout .screenshot, .page-new-repo .license-container, .sidebar-module, .collapsed, .expanded, .discussion-topic, .bubble-inner, .team-org-group, div.article div.helper div.content, .boxed-group-inner .help, dl.new-email-form, .file .meta-divider, .avatar-stack.multiple-avatars:before, .file-box, .file-actions .btn-group li, .gist .gist-file .gist-data, .calendar-graph .contrib-details div, .branch-action-body, .setup-form .tos-info, .setup-form .setup-organization-next, .collection-page .other-content, .bubble-wrap, .release-show, .file-wrap, .branches .branch-summary, .branches .no-results-message, .branch-a-b-count .count-half:last-child, .panel-nav, .file, .full-commit .sha-block > a, .theme-selector-thumbnail, .segmented-nav li, .boxed-group-inner, .search-form button, .branches .branch-group-heading, .boxed-group .heading, .issues-list-actions, p code, code, .wiki-wrapper .wiki-empty-box, #adv_code_search .search-page-label, pre.headers, .inline-comment-form, .history-link, .oauth-permissions-details, .setup-info-module .features-list .list-divider, .setup-wrapper .oauth-permissions, .swipe .swipe-frame .swipe-shell, ul.search-results, .orgs-help-shelf-content .orgs-help-divider, .repository-lang-stats-graph, .gist-quicksearch-results, .gist-quicksearch-result, .gist-quicksearch-result-group, .listgroup, .listgroup-item + .listgroup-item, .user-key-badge, .newsfeed-placeholder, .progress-bar-inline .progress-bar, .menu-heading, body .border-gray-dark, .discussion-item-review .blob-wrapper, .bot-identifier, .blame-commit, .counter, .Counter, div.marketplace-product-callout {
border-color: #000!important;
}
.header, table, table tr, table td, table th, blockquote, .pulse-graph, .btn:not(img), .minibutton, .social-count, .discusion-topic-infobar, .box-body, .timeline-comment-label, .logo-box, .developer-program-badge, .vcard-details, .vcard-stats, .auth-form-header, .nav-bar-tabs .section-title, .pagination a:last-child, .pagination span:first-child, .boxed-group-list > li, .toolbar-bordered, .new-issue-form, .pagination span:last-child, .dashboard-tabs, .graphs, .graph, .sub-nav, .audit-search-clear, .repo-list-item, .email-signature-reply, footer, .bubble .bubble-expand, .grid .col, .composer-infobar, .email-quoted-reply, .summary-stats li, .columns.equacols.bordered, .file-diffstat, .news .alert, table.files td, .explore-section, .repolist > li, .featured-grid-outer, .gh-header-meta, .theme-picker-thumbs, .team, .billing-section, .sidebar-module ul h3, .headlines li, .discussion-sidebar-item + .discussion-sidebar-item, .markdown-format img, div#common-issues ul li, .about-facts, .starred-repo, .markdown-example, .traffic-graph-stats, .discussion-item + .discussion-item, .bubble, .tree-browser, .simple-box-footer, .team-grid .team-members, .org-list .list-item, .stats-group .stat, .team-info-card .team-stats, .table-of-contents li, .commit-group, .table-list-bordered .table-list-cell:first-child, .table-list-bordered .table-list-cell:last-child, .table-list-cell, .table-list, .blankslate, .labels-list-item, .subnav-divider-right, .subnav-bordered, .content table tr th, #search-results li, .subhead, #pages-composer, .render-bar, #gollum-editor-help, #gollum-editor-help-parent, #gollum-editor-help-list, .auth-section, .commit-sha, .comment-body, .mini-repo-list-item, .advanced-search-form fieldset, .contrib-column, .org-header .edit-org, .pulse-summary .summary-box, .pulse-summary .summary-box li:first-child, .list-item + .list-item, .list-item + .list-heading, .list-heading + .list-item, .issue-list-item, .collection-card, .setup-header, body.api pre, .stats-group-stat:first-child, .build-statuses-list, #gollum-dialog-dialog-buttons, #gollum-dialog-dialog h4, a.gollum-minibutton, a.gollum-minibutton:visited, .two-factor-toggle .two-factor-status, .two-factor-settings-group, .member-badge, ul.comparison-list > li, .markdown-format ol > li:before, .release-downloads, .release-downloads li, .blob-interaction-bar, input.subnav-search-input, .select-menu-header, .search-results, .select-menu-modal, #gist-form .file .meta, .file .meta, .file-box .meta, .capped-card, .audit-results-header, .pagination a, .pagination span, .pagination em, .input_area, .output_area .rendered_html table, .render-info .message, .subnav .btn + .issues-search, .branch-action-body .branch-action-item + .branch-action-item, .discussion-item-merged.open .discussion-item-details-header, .discussion-item-merged.open .build-statuses-list, .build-status-item, .org-header, .pagehead, .branch-action-item + .mergeability-details, .migration-section, .migrate-org-roles, .migrate-org-roles-header, .migrate-org-roles-item, .migrate-org-roles-count, .migration-footer, .migration-feature-list:before, .migration-org-avatar, .org-migration-settings-section, .word-upload-callout .note, .commit-tease .commit-meta, .manage-user-info, .manage-repo-access-title, .manage-access-remove-footer, .org-settings-team-item:first-child, .label-generic, .plan-notice, .merge-branch-manually, .intgr-header, .code-list-item, .sort-bar, #com #footer, .repo-file-upload-outline, .comment-reactions.has-reactions, .reaction-summary-item, .select-menu-divider, .featurette.border-top, .tile-block, .tile-bordered:not(:last-child), .showcase-page-header, .showcase-page-repo-list, .header-search-scope, .result-group a, .signed-commit-badge, .signed-commit-header, .user-key-email, .border-top, .pricing-card-cta, .shelf, .access-token, .about-menu, .oauth-border, .file-header, .reorderable-task-lists .markdown-body .task-list-item.hovered, .next-charge-box, .setup-info-module h2, .radio-label, .border, .border-top, .border-right, .border-bottom, .border-left, .border-y, .pinned-repo-list-item, .pinned-repo-filters, .orghead, .orghead .edit-org, .Box-body-row, .discussion-item-deployed, .branch-action-body .merge-message, .new-project-column, .confirm-removal-list-container, .confirm-removal-list-item, .user-profile-nav, .border-gray-light, .ajax-pagination-form .ajax-pagination-btn, .review-thread-reply, .feature-callout-octicon, .feature-callout, .discussion-item + .discussion-item, .discussion-item-review + .discussion-item, .libraries-jumbotron, .last-review-thread, .menu-item, .review-comment.is-comment-editing, .Box, .team-list-footer, .Box-header, .profile-rollup-summarized + .profile-rollup-summarized, .Subhead, .dashboard-notice .coupon, .Box-body, .listgroup-header, .merge-status-item, .pending-team-invitations-link, .discussion-item + .discussion-item-review .profile-timeline-card-wrapper, .profile-rollup-wrapper + .profile-rollup-wrapper {
border-color: transparent!important;
}
body.intent-mouse button:focus, body.intent-mouse summary:focus {
outline: none!important;
}
.header, .timeline-comment, .file-wrap {
border: none!important;
}
.discussion-item-icon, .date:after, ul.color-label-list .color, .facebox-header {
border-color: #222!important;
}
.filter-tab.selected {
border: 1px solid #444!important;
border-bottom: 1px solid #343434!important;
}
.summary-stats, .follow-list .follow-list-item {
border-bottom: 1px solid #343434!important;
}
.table-list-header {
border: none!important;
}
.simple-conversation-list > li, .site-footer, .blame .section-first td, .wiki-list .wiki-list-item + .wiki-list-item {
border-top: 1px solid #343434!important;
}
/* discussion timeline tweaks */
.closed-banner {
border-top: 2px solid #444!important;
border-bottom-color: transparent!important;
height: 2px!important;
}
.discussion-timeline-actions, .closed-banner {
background: transparent!important;
border-top: 2px solid #444!important;
}
.discussion-timeline:before {
margin-top: 2px!important;
background: #383838!important;
height: calc(100% - 259px)!important;
}
.profile-timeline.discussion-timeline:before {
height: 100%!important;
}
.listings div.listing {
border-left: 2px solid #333!important;
border-right: 2px solid #333!important;
}
#org-members .member-listing {
border-left: 1px solid #333!important;
border-right: 1px solid #333!important;
}
.MarketplaceSideNav, .plans-card-text:first-child {
border-right-color: #484848!important;
}
.word-upload-callout:before, .word-upload-callout:after, .select-menu-modal-arrow:after {
border-bottom-color: #343434!important;
}
.repo-filterer .repo-filter:hover, .review-summary:before {
border-bottom-color: #484848!important;
}
.issue-head {
border-bottom-width: 1px!important;
}
.context-button:hover:after, .switcher > span:before {
border-color: #eee transparent transparent!important;
}
/* developer sidebar indicator arrows */
.sidebar-module .arrow-btn:hover {
width: 0!important;
height: 0!important;
padding: 0!important;
border-color: transparent!important;
border-style: solid!important;
}
.sidebar-module .arrow-btn.collapsed:hover {
border-width: 5px 8px!important;
border-left-color: #ff5050!important;
margin: 12px 0 0 12px!important;
}
.sidebar-module .arrow-btn.expanded:hover {
border-width: 8px 6px 0 5px!important;
border-top-color: #ff5050!important;
margin: 14px 0 0 9px!important;
}
/* branch selector button - uses borders to make select button */
.select-menu-button:before {
border-top-color: #eee!important;
}
.pagehead-tabs {
margin-bottom: -23px!important;
}
.branches .branch-summary + .branch-summary {
border-top-color: #333!important;
}
/* code */
.linkable-line-number {
border-right: 1px solid #484848!important;
}
.gist .gist-file .gist-data .line-number {
line-height: 19px!important;
}
/* File listings - fix date truncation */
table.files td.age .css-truncate {
max-width: none!important;
}
/* tooltip */
.octotip {
background-color: #003!important;
border-color: #006!important;
}
.commitinfo, .gc .diff-line-code, .gc .diff-line-num, .gc .diff-line-pre, .featured-commit-activity-graph, .featured-repo-logo, .outline-box, .gobutton > .sha .octicon, .markdown-body .csv-data .blob-num, #feedBody, .search-result-header, .accessibility-aid:focus, .file-data, .signup-plans th, .signup-plans td, .signup-plans-orgs th, .signup-plans-orgs td, .commits td, .featured-callout, .sidebar-module ul ul li, .native-download, .setup-info-module, div#common-issues ul, #gist-form .name .render-notice, .label-edit.edit-color-label-form .color-editor .color-editor-input, .date_selector td, .new-label, .range-editor .range, .range-editor .flag, .octotree_sidebar, .auth-form-body, div.border-wrap, .profile-header, .highlight .gc, .uploaded-files.is-populated, .range-editor, #gollum-editor-help-parent li a.selected, #gollum-editor-help-list li a.selected, #gollum-editor-help-parent li a:hover, #gollum-editor-help-list li a:hover, .github-access-banner, .protip-callout, ul.comparison-list, .wiki-custom-sidebar, .invitation-container, .orgs-help-shelf, .orgs-help-item-octicon, input[type="password"], input[type="email"], input[type="number"], input[type="tel"], input[type="url"], textarea, .dropdown-menu, .thread-subscription-status, .branch-action-body .merge-branch-form, .pull-info, .branch-link, .discussion-item-merged.open .discussion-item-details, .word-upload-callout, .commit-tease-contributors, .ajax-pagination-form .ajax-pagination-btn, .access-form-wrapper, .session-authentication .create-account-callout, .intgrs-lstng-item, .intgr-install-callout, .is-failed .repo-file-upload-errors, .is-bad-file .repo-file-upload-errors, .is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors, .is-empty .repo-file-upload-errors, .site-header, .site-subheader, .pricing-card, .explore-signup-entice, .price-box, .cvv-hint-tooltip, .plan-choice, .date-selector td, .user-profile-sticky-bar:after, .review-thread, .card, .tutorial, .overview .card > div[style*="background"], .Box:not([style*="background"]), .Box-footer, .ScreenshotCarousel {
background: black!important;
border-color: transparent!important;
}
#readme .plain, .readme .plain, .pull-request-composer, .octofication .broadcast-icon-mask, .file .image, .merge-pr-more-commits, .release-timeline-tags .expander-dots, .coupons .coupon-form-body, .manage-repo-access-group, .saved-reply-form, .orghead .edit-org:hover, .octotree_views, .simple-box, .btn-link.timeline-progressive-disclosure-button {
background: #181818!important;
border-color: #484848!important;
}
.issues-listing .border-right.border-bottom.border-left {
border: none!important;
}
.header, .headers, #readme .markdown-body, .social-count, .file, .box-body, .markdown-body table tr:nth-child(2n), .steps li, .explore-section:nth-child(2n), .markdown-format table, .list-group-item, .chromed-list-browser .none p, .chromed-list-browser .error p, .list-browser-footer, .commandbar .choice:hover, #gollum-editor-help, .search-filter:hover, #wiki-history table tr:nth-child(2n) td, .display tr:hover, .octofication .message, .commandbar .loading:hover, .comment-content, .commandbar .message, .boxed-group-inner, #adv_code_search .search-page-label, .timeline-comment, #contributors-master svg.viz, .diff-table .line-comments, .menu, svg.spark, svg.capped-card-content, body.api .content tbody, .markdown-format img:not(.emoji), .mini-repo-list, #common-issues, .full-commit .commit-meta, .setup-wrapper .oauth-permissions-details, .milestone-list, .setup-form .setup-plans, .prose-diff > .markdown-body, .revision .gu, .tree-browser td, .tree-browser .alt td, .branches .branch-summary, .branches .no-results-message, .simple-box-footer, .commit-group, .blankslate, .content table tr, #search-results, table.files, .mergeable, .org-module, .org-add-footer, .branch-infobar, table.capped-list tr:nth-child(2n), .team-org-group, #gollum-editor-help-wrapper, .integrations-quality, .showcase-featured .mo-info .featured-grid-outer, .render-shell, .list, .latest-commit .commit-author, .bubble, .tabs > a.selected, .comment-form-head .tabnav-tab.selected, .oauth-org-access-details .boxed-group-list > li.on, #fullscreen_overlay, .branch-action-body, .inline-comment-form, .file-history-tease .participation, .gist-quicksearch-result-header, .label-generic, .migrate-org-roles, .commit-tease .commit-meta, .manage-repo-access-icon, .table-list:not(.team-member-list), .repo-file-upload-progress, .gcr-ext-editor-dialog, .shade-gray, .exploregrid-item, .signed-commit-badge-small, .facebox-popup, .explore-signup-entice-wrapper, .billing-addon-items tr.total-row, .billing-addon-items tr.dark-row, .Box-body, li.pinned-repo-item, .js-contribution-graph h2 + div:last-child, .project-triage-pane, .user-profile-nav.is-stuck, body .bg-white, [data-filterable-for="projects-filter"] .container-lg, .review-summary-form-wrapper, #projects-results, .listgroup, .protected-branch-orgs-and-repo-admins, .listgroup-overflow, .Header, .project-column, .btn.btn-outline, .js-notice > .border, .news .issues_labeled .border, .newsfeed-placeholder, .border.rounded-1.p-3.mb-3 {
background: black!important;
}
.subnav-item, a.subnav-item, .upload-enabled textarea, .drag-and-drop, .preview-content {
background-color: #000!important;
}
.sidebar-module, input[type="text"]:not(.tree-finder-input):not(.js-site-search-focus) {
background-color: #181818!important;
border-color: transparent!important;
}
.d-flex.flex-justify-between.border-bottom.pb-3, .repo-list-item.d-flex.flex-justify-start.py-4.public.source, .code-list-item.col-12.py-4.code-list-item-public {
border: 5px solid #000!important;
border-radius: 20px!important;
padding: 2em!important;
background-color: #000!important;
}
.d-flex.flex-justify-between.border-bottom.pb-3 {
padding-bottom: 30px!important;
margin-bottom: -50px!important;
margin-top: 0px!important;
padding-top: 10px!important;
}
.repo-list-item.d-flex.flex-justify-start.py-4.public.source, .code-list-item.col-12.py-4.code-list-item-public {
padding-top: 5px!important;
margin-top: 1em!important;
}
.menu-item:first-child::before {
border-top-left-radius: 0px!important;
}
a.menu-item:before {
position: absolute!important;
top: 0!important;
bottom: 0!important;
left: 0!important;
width: 2px!important;
content: ""!important;
height: 38px!important;
background-color: #555!important;
}
.Box.mb-3, .Box-body:last-of-type {
border-radius: 20px!important;
padding-right: 5px!important;
padding-left: 10px!important;
}
nav.menu.border, .border.rounded-1.p-3.mb-3 {
border: 5px solid #000!important;
border-radius: 20px!important;
border-top-width: 25px!important;
border-bottom-width: 20px!important;
padding-left: 10px!important;
padding-right: 10px!important;
}
nav.menu.border {
border-top-width: 20px!important;
border-bottom-width: 20px!important;
padding-left: 10px!important;
padding-right: 10px!important;
}
.border.rounded-1.p-3.mb-3 {
border-top-width: 5px!important;
border-bottom-width: 5px!important;
padding-left: 10px!important;
padding-right: 10px!important;
}
.markdown-body table tr, .blob-num-context, #user-content-toc td {
background: #141414!important;
}
.blame .blob-num, .blame-blob-num, .overall-summary, .repository-lang-stats, .collection-card, .team-grid .team, .blob-num-hunk, .blob-code-hunk, .blob-code-expandable, .code-list .divider .blob-num, .code-list .divider .blob-code, .blob-num-expandable, .expandable-line-num .diff-expander:hover, .select-menu-filters, .select-menu-modal, .pagination a, .blob-num[colspan], .build-status-item, .more-branches, .plan-choice.open, .uploaded-files > li.delete, .bg-gray-light, .more-repos, .billing-per-seat-callout:after, .code-list-item .blob-num, .blob-num.js-line-number, .table-list-header, .repohead.experiment-repo-nav {
background: #1c1c1c!important;
}
/* headers */
.timeline-comment-header, .boxed-group .heading, .file-header, .capped-card h3, .select-menu-header, #gist-form .file .meta, .file .meta, .file-box .meta, .menu-heading, .audit-results-header, .branches .branch-group-heading, .auth-form-header, .commit-form, .migration-jumbotron, .migration-sub-header, .manage-repo-access-title, .select-menu-divider, .signed-commit-header, .reorderable-task-lists .markdown-body .task-list-item.hovered, .next-charge-box, .credit-card, .branch-action-body .merge-message, .review-thread-reply, .bg-gray:not(body), a.card.bg-gray-light:hover, .add-member-team-list .team-row-header, .Box-header, .pagination .gap, .pagination .disabled, .pagination .gap:hover, .pagination .disabled:hover, .listgroup-header, .merge-status-item {
background: #202020!important;
}
/* Navigation focus */
.list-group-item.navigation-focus, .list-browser-item.navigation-focus, .headlines li:hover, .js-details-container.navigation-focus, .js-details-container.navigation-focus:nth-child(2n), .team-grid .team-members, .tree-browser tr.navigation-focus td, .issues-listing .table-list-issues .selectable:hover, .issues-listing .table-list-issues .navigation-focus, .setup-plans tr.selected, .notifications .navigation-focus, .sidebar-module ul ul li a:hover, .typeahead-result, .no-results, .link-overlay .link, #gollum-editor-help-list, .owner-select-target, .divider .blob-code div.highlight, .oauth-org-access-details .boxed-group-list > li.on:hover, pre div:hover, .summary-stats li a:hover, .select-menu-item-parent.navigation-focus, .select-menu-item-parent.navigation-focus.selected, .pinned-repos-selection-list-item.selected, .Box-body-row--highlight.navigation-focus, .Box-body-row--highlight:hover, div.label-select-menu .select-menu-item.navigation-focus, div.label-select-menu .select-menu-item.navigation-focus.selected, .js-current .standalone a, .menu-item:hover, .team-listing .is-open.root-team, table.files tr:hover, .table-fixed:hover, li.table-list-item.member-list-item.js-bulk-actions-item:hover {
background: #242424!important;
}
table.files tr.navigation-focus td {
background-color: transparent!important;
}
#browser, .repos, .options-group, .pagehead ul.tabs li a.selected, .subnav-bar, .options-content, span.gravatar, .browsered, .browsered .inner, .subnav-bar > ul > li > ul, .comment-form ul.tabs a.selected, .issue.open.read .summary, .unselected_month, .commits th, #MathJax_Message, .chzn-single, .user-commits, .user-commits th, .metabox, .ranked-repositories > li, .pagehead ul.actions, #issues_search .comment, #header-wrapper, ul.feature-tabs li.highlight, .pagination, .filterbar .filters li, .starting-comment .body, .list-tip, .commit_oneline, .filterbox, .conversation-list-heading .inner, .autocomplete-results, .new-comments .body, .display tr, .render-container, .boxed-group-table th, .features-highlight, .outline-box-highlighted, .nav-bar-tabs, #watchers li, .browser .listing, .item, .context-pane, .context-loader, .sidebar .module, .tip-body, #assignee, .commit_oneline td, .notifications th, .content table th, .repo-collection > ul, #graph_data .tab.selected, .full-width-divider, .markdown-body .csv-data th, h3.conversation-list-heading strong, .file-commit-form .commit-form, .blog-feedback, .facebox-footer, .invited-banner, .gcr-ext-editor-close, .gcr-ext-editor-header, .logos-download-link {
background: #222!important;
border-color: #343434!important;
}
.btn:disabled, .btn:disabled:hover, .btn.disabled, .btn.disabled:hover, button.button:disabled, button.button:disabled:hover, button.button.disabled, button.button.disabled:hover, button.minibutton:disabled, button.minibutton:disabled:hover, button.minibutton.disabled, span.minibutton.disabled, a.minibutton.disabled, button.minibutton.disabled:hover, a.minibutton:disabled:hover, a.minibutton.disabled:hover, span.minibutton:disabled:hover, span.minibutton.disabled:hover, .search-result-group, .gist-quicksearch-result-group {
background: #222!important;
border-color: #282828!important;
color: #444!important;
}
.btn-outline:disabled, .btn-outline:disabled:hover, .btn-outline.disabled, .btn-outline.disabled:hover, .btn.btn-outline:disabled, .btn.btn-outline:disabled:hover, .btn.btn-outline.disabled, .btn.btn-outline.disabled:hover {
background: #222!important;
border-color: #343434!important;
color: #444!important;
}
.list-browser-item.closed, .content .verseblock-content, .content .verseblock-content, .simple-stacked-bar, .date_selector td.selectable_day:hover, .date_selector td.selectable_day.hover, .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus, .pagination em:not(.current):hover, .pagination em:not(.current):focus, .dropdown-divider, .js-current .standalone a, .sidebar-module .disable > a, .label-select-menu div.labelstyle-000000.selected, .ScreenshotCarousel-navitem.selected, .CircleBadge {
background: #282828!important;
}
div#common-issues ul li a:hover, .rss-subscribe:hover {
background-color: #282828!important;
}
/* hr to match border color */
.markdown-body hr, .profile-timeline.discussion-timeline:before, .profile-timeline.discussion-timeline .profile-timeline-month-heading:after {
background: #343434!important;
}
#network .current-repository {
background: #343434!important;
box-shadow: 0 0 0 2px #343434!important;
}
.blame-commit-next .blame-commit-info, .blame-commit-next + .blame-line, .ScreenshotCarousel-nav {
box-shadow: inset 0 1px 0 #343434!important;
}
/* semi-transparent */
.context-loader.large-format-loader, #graphs .loader, .org-header, .render-shell .slider, .illflow-item:not(.selected):hover, .leaflet-control-attribution, .orghead {
background: rgba(18, 18, 18, .4)!important;
}
.explore-signup-entice-inner {
background: rgba(24, 24, 24, .9)!important;
}
.starred-repo.navigation-focus, .marketing-section-stripe, .blob-expanded .blob-num, .blob-expanded .blob-code, .migration-section-grey {
background: rgba(50, 50, 50, .5)!important;
}
.svg-tip {
background: rgba(12, 12, 12, .8)!important;
}
.svg-tip:after {
border-top-color: rgba(12, 12, 12, .9)!important;
}
.shelf {
background-color: rgba(0, 0, 0, .2)!important;
background-image: none!important;
}
/* page overlay */
.select-menu-loading-overlay, .slow-loading-overlay, .branches .loading-overlay {
background-color: rgba(24, 24, 24, .6)!important;
}