diff --git a/chromeExtentions/dotcss/dotcss.js b/chromeExtentions/dotcss/dotcss.js new file mode 100644 index 00000000..d24a8e60 --- /dev/null +++ b/chromeExtentions/dotcss/dotcss.js @@ -0,0 +1,27 @@ +var xhr = new XMLHttpRequest(); +xhr.open('GET', 'https://dotcss.local/' + window.location.host.replace(/^www\./, '') + '.css'); + +xhr.onreadystatechange = function() { + if(xhr.readyState == 4) { + if(xhr.status == 200) { + var style = document.createElement('style'); + style.textContent = xhr.responseText; + document.head.appendChild(style); + return + } else if(xhr.status == 404) { + var defaultXHR = new XMLHttpRequest(); + defaultXHR.open('GET', 'https://dotcss.local/default.css'); + defaultXHR.onreadystatechange = function() { + if (defaultXHR.readyState == 4 && defaultXHR.status == 200){ + var style = document.createElement('style'); + style.textContent = defaultXHR.responseText; + document.head.appendChild(style); + return; + } + } + defaultXHR.send(); + } + } +}; + +xhr.send(); diff --git a/chromeExtentions/dotcss/icon128.png b/chromeExtentions/dotcss/icon128.png new file mode 100644 index 00000000..35e0bb20 Binary files /dev/null and b/chromeExtentions/dotcss/icon128.png differ diff --git a/chromeExtentions/dotcss/icon48.png b/chromeExtentions/dotcss/icon48.png new file mode 100644 index 00000000..aa1b6778 Binary files /dev/null and b/chromeExtentions/dotcss/icon48.png differ diff --git a/chromeExtentions/dotcss/manifest.json b/chromeExtentions/dotcss/manifest.json new file mode 100644 index 00000000..b773146c --- /dev/null +++ b/chromeExtentions/dotcss/manifest.json @@ -0,0 +1,14 @@ +{ + "name" : "dotcss", + "manifest_version" : 2, + "version" : "2.2.0", + "description" : "~/.css", + "icons": { "48" : "icon48.png", "128" : "icon128.png" }, + "content_scripts": [{ + "all_frames" : true, + "run_at" : "document_start", + "matches" : ["http://*/*", "https://*/*"], + "js" : ["dotcss.js"] + }], + "permissions": ["tabs"] +} diff --git a/chromeExtentions/dotjs/dotjs.js b/chromeExtentions/dotjs/dotjs.js new file mode 100644 index 00000000..b336529a --- /dev/null +++ b/chromeExtentions/dotjs/dotjs.js @@ -0,0 +1,27 @@ +var xhr = new XMLHttpRequest(); +xhr.open('GET', 'https://dotjs.local/' + window.location.host.replace(/^www\./, '') + '.js'); + +xhr.onreadystatechange = function() { + if(xhr.readyState == 4) { + if(xhr.status == 200) { + var script = document.createElement('script'); + script.textContent = xhr.responseText; + document.head.appendChild(script); + return; + } else if(xhr.status == 404) { + var defaultXHR = new XMLHttpRequest(); + defaultXHR.open('GET', 'https://dotjs.local/default.js'); + defaultXHR.onreadystatechange = function() { + if (defaultXHR.readyState == 4 && defaultXHR.status == 200){ + var script = document.createElement('script'); + script.textContent = defaultXHR.responseText; + document.head.appendChild(script); + return; + } + } + defaultXHR.send(); + } + } +}; + +xhr.send(); diff --git a/chromeExtentions/dotjs/icon128.png b/chromeExtentions/dotjs/icon128.png new file mode 100644 index 00000000..13e1342e Binary files /dev/null and b/chromeExtentions/dotjs/icon128.png differ diff --git a/chromeExtentions/dotjs/icon48.png b/chromeExtentions/dotjs/icon48.png new file mode 100644 index 00000000..e1f8befe Binary files /dev/null and b/chromeExtentions/dotjs/icon48.png differ diff --git a/chromeExtentions/dotjs/manifest.json b/chromeExtentions/dotjs/manifest.json new file mode 100644 index 00000000..16c12489 --- /dev/null +++ b/chromeExtentions/dotjs/manifest.json @@ -0,0 +1,14 @@ +{ + "name" : "dotjs", + "manifest_version" : 2, + "version" : "2.2.0", + "description" : "~/.js", + "icons": { "48" : "icon48.png", "128" : "icon128.png" }, + "content_scripts": [{ + "all_frames" : true, + "run_at" : "document_start", + "matches" : ["http://*/*", "https://*/*"], + "js" : ["dotjs.js"] + }], + "permissions": ["tabs"] +} diff --git a/config/dotcss/default.css b/config/dotcss/default.css new file mode 100644 index 00000000..033f6d4c --- /dev/null +++ b/config/dotcss/default.css @@ -0,0 +1,4 @@ +body{ + background-color: #2d3242; + color: white; +} diff --git a/config/dotcss/fellowship.local.css b/config/dotcss/fellowship.local.css new file mode 100644 index 00000000..e69de29b diff --git a/config/dotcss/github.com.css b/config/dotcss/github.com.css new file mode 100644 index 00000000..9b5cdf2b --- /dev/null +++ b/config/dotcss/github.com.css @@ -0,0 +1,4195 @@ +/* AGENT_SHEET */ + /* begin auto-generated rules - use tools/generate.js to generate them */ + /* 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; + } + /* auto-generated rule for "background-color: #d1d5da" */ + .block-diff-neutral + { + background: #444 !important; + } + /* auto-generated rule for "background-color: #6f42c1" */ + .bg-purple, .State--purple, .discussion-item-merged .discussion-item-icon, + .branch-action-state-merged .branch-action-icon, .btn-outline-purple:hover, + .btn-outline-purple:active, .btn-outline-purple.selected, + .btn-outline-purple:hover, .btn-outline-purple:active, + .btn-outline-purple.selected + { + background: #6e5494 !important; + } + /* auto-generated rule for "background-color: #cb2431" */ + .btn-danger:hover, .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 + { + background-color: #261d08 !important; + } + /* auto-generated rule for "background-color: #fffbdd" */ + .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, + .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--focus-gray.navigation-focus, .Box-row--hover-gray:hover, + .Box-row--gray, .menu-item:hover, .subnav-item:hover, .subnav-item:focus, + .bg-gray, .markdown-body table tr:nth-child(2n), + .markdown-body .highlight pre, .markdown-body pre, .table-list-header, + .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, + .timeline-comment-header, .facebox .facebox-staff-links, + .ajax-pagination-form .ajax-pagination-btn:hover, + .ajax-pagination-form .ajax-pagination-btn:focus, + .ajax-pagination-form.loading .ajax-pagination-btn, .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, + .discussion-post .reply-comments-holder:before, .MarketplaceSideNav, + .ScreenshotCarousel-navitem.selected, + .profile-timeline.discussion-timeline .profile-timeline-month-heading:after, + .profile-timeline.discussion-timeline:before, .review-comment-contents:after, + .review-comment.is-comment-editing:after, .review-thread-reply + { + background-color: #141414 !important; + } + /* auto-generated rule for "border: 1px solid #e1e4e8" */ + .subnav-item, .blankslate, .table-list-header, .historical-banner, + .list-group-item, .pagination a, .pagination span, .pagination em, + .ajax-pagination-form .ajax-pagination-btn, .range-editor + { + 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, .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, .pending-cards-status, + .release-timeline-tags .date:after, .release-timeline-tags .expander-dots + { + border-color: #222 !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, .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, + .timeline-new-comment .previewable-comment-form .comment-body, + .new-discussion-timeline .previewable-comment-form .comment-body, + .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 #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-row, .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, .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, .tabnav-tab, + .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, + .page-responsive .header-sitemenu .header-navlink.selected, + .page-responsive .header-sitemenu .header-navlink.selected + { + border-bottom: 0 !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, + .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, + .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" */ + .drag-and-drop, .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, + .session-authentication .site-footer, .plan-choice-bottom, + .blame-commit+.blame-line, ul.comparison-list>li.title, .select-menu-item, + .logged-out.enter-coupon .site-footer, .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, .file-wrap, + table.files tbody tr:first-child td, .listgroup-header, + .typeahead-result:first-child, #user-content-toc tr + { + border-top: 0 !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, .illflow-item .illflow-item-heading + { + color: #ccc !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-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-tease, .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, .site-footer, + .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, .bot-identifier, + .credit-card .cvv span, .billing-section .section-label, .lfs-data-icon, + .payment-history .currency, .payment-history .status, + .discounted-original-price, .billing-manager-banner-title, .line-age-legend, + .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 .cmt, + li.contribution .num, .contributors-graph .capped-card .rank, + .contributors-graph .capped-card .cmt, .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, .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, + .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, + .casestudy-body>p, .casestudy-body blockquote, .casestudy-body ul, + .pullquote, .casestudy-body>p, .casestudy-body blockquote, + .casestudy-body ul + { + color: #bbb !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-container .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, + .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, + .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, .home-hero-signup .form-control-note, .icon-cta>.octicon + { + color: #aaa !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: /*[[bg-choice]]*/!important; + background-clip: border-box !important; + background-origin: padding-box !important; + background-attachment: /*[[bg-attachment]]*/!important; + /*[[bg-options]]*/; + } + /* 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: "/*[[font-choice]]*/", Consolas, "Liberation Mono", Menlo, Courier, monospace !important; + } + /* Base link/panel colors - text */ + a:not([href*="/labels/"]), 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, .header-logo-invertocat:hover, .comment-header-actions li:hover, + .org-repo-stats a:hover, .muted-link:hover, a.muted-link: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, .btn.btn-outline, + .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, + .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, + .octotree_github_sidebar .octotree_views .octotree_treeview .jstree-anchor, + .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, + .octotree_github_sidebar a.octotree_toggle:not(.octotree_loading):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-directory, td.icon .octicon-file-symlink-directory, + td.icon .octicon-file-submodule, .pl-corl, .header-nav-link:hover, + .header-nav-link:focus, .header-navlink:hover, .header-navlink:focus + { + color: /*[[base-color]]*/!important; + } + /* Base color panel */ + .btn:active, option:hover, .listings-layout .nav li a:hover, .state-merged, + #fork-select .target:not(.disabled):hover, .flash-notice, + table.upgrades tr:hover td, .email-format .email-hidden-toggle:hover a, + .dashboard-tabs a:hover, .dropdown-menu > li > a:hover, + .documentation-results a:hover, .hidden-text-expander a:hover, + .dropdown-item:hover, .dropdown-item.zeroclipboard-is-hover, + .subnav-item.selected, .subnav-item.selected:hover, + .subnav-item.selected:focus, .example-nav li a.selected, + .typeahead-result.navigation-focus, .typeahead-result:hover, + .issues-reset-query:hover .octicon-x, .segmented-nav li.active, + .diff-expander:hover, .pagination .current, .owner-select-target:hover, + .filter-item.selected, + .release-timeline-tags .expander-text:hover .expander-dots, + a.gollum-minibutton:hover, a.gollum-minibutton:visited:hover, + .search-result-item.navigation-focus, + .gist-quicksearch-result.navigation-focus, .gist-snippet .link-overlay .link, + .suggester li.navigation-focus, .btn.btn-outline:hover, + .btn.btn-outline:active, .btn.btn-outline.selected, + .btn.btn-outline.zeroclipboard-is-hover, + .btn.btn-outline.zeroclipboard-is-active, + .select-menu-item:not(.select-menu-item-parent).navigation-focus, + .reaction-sort-item:hover, .reaction-sort-item.selected, + .pull-request-link:hover, .issues-reset-query:hover .issues-reset-query-block, + #com .dropdown-menu a:hover, .date-selector td.selected, + .date-selector td.selectable-day:hover, .add-line-comment, + button.add-line-comment, .suggester .cur, .autocomplete-item.selected, + .autocomplete-item.navigation-focus, + .select-menu-item.navigation-focus.selected, .reblame-link:hover, + .result.selected, .result:hover + { + background: /*[[base-color]]*/!important; + } + + .context-button:after + { + border-color: /*[[base-color]]*/transparent transparent !important; + } + + .octofication .message, .panel-nav:not(.disabled):active, + .diagram-icon:not(.active), .btn.btn-outline, + .btn.btn-outline:hover:not(.ajax-pagination-btn), + .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: /*[[base-color]]*/!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: /*[[base-color]]*/!important; + } + + .table-list .table-list-item.unread .table-list-cell-checkbox, + .Box-row--unread, .Box-row.unread + { + border-left-color: /*[[base-color]]*/!important; + box-shadow: 2px 0 0 /*[[base-color]]*/ inset !important; + } + /* notification icon */ + .notification-indicator .mail-status + { + background: /*[[base-color]]*/!important; + border-color: #1d1d1d !important; + } + /* text selection */ + ::selection + { + background-color: /*[[base-color]]*/!important; + color: #fff !important; + } + + ::-moz-selection + { + background-color: /*[[base-color]]*/!important; + color: #fff !important; + } + + .CodeMirror-selected + { + background: rgba(255, 255, 255, .12) !important; + } + + .CodeMirror ::selection + { + background: rgba(255, 255, 255, .12) !important; + } + + .CodeMirror ::-moz-selection + { + background: rgba(255, 255, 255, .12) !important; + } + /* placeholder */ + ::-webkit-input-placeholder + { + color: #666 !important; + opacity: 1 !important; + } + + ::-moz-placeholder + { + color: #666 !important; + opacity: 1 !important; + } + + ::placeholder + { + color: #666 !important; + opacity: 1 !important; + } + + .select-menu-text-filter input::-webkit-input-placeholder + { + color: #555 !important; + } + + .select-menu-text-filter input::-moz-placeholder + { + color: #555 !important; + } + + .select-menu-text-filter input:-ms-input-placeholder + { + color: #555 !important; + } + + .select-menu-text-filter input::placeholder + { + color: #555 !important; + } + /* focus hightlight */ + a:focus, button:focus, [tabindex] + { + outline-color: /*[[base-color]]*/!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, textarea.focus, textarea: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-control.focus, + .form-select.focus, .form-select:focus, input[type="checkbox"]:focus, + .upload-enabled.focused + { + border-color: /*[[base-color]]*/!important; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px /*[[base-color]]*/ !important; + outline-color: /*[[base-color]]*/!important; + } + /* inputs */ + select, input:not(.btn-link), textarea + { + -moz-appearance: none !important; + background-color: #181818 !important; + border-color: #343434 !important; + color: #eee !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; + } + + pre, .highlight, .diff-table, .tab-size + { + tab-size: /*[[tab-size]]*/!important; + -moz-tab-size: /*[[tab-size]]*/!important; + } + @ supports (position: sticky) + { + .blog-aside { + position: sticky !important; + top: 8px !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 .user-has-reacted +{ + background-color: rgba(65, 131, 196, .2) !important; + background-color: rgba(/*[[base-color-rgb]]*/, .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; +} + +.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"] +{ + display: none !important; +} + +.intgrs-lstng-item-description:after +{ + background-image: linear-gradient(to right, rgba(24, 24, 24, 0), #181818 80%) !important; +} + +.marketplace-product-callout-bg +{ + background-image: linear-gradient(to right, rgba(24, 24, 24, 0), #181818) !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; +} + /* 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, .header .header-search-wrapper.focus, + .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 +{ + 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, .btn-link, .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 +{ + 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: #eee !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: /*[[base-color]]*/!important; +} + /* normalize.css bug: Make
disclosure triangle visible in Firefox */ + /* https://github.com/necolas/normalize.css/issues/604 */ +details summary +{ + display: list-item !important; +} + /* Make it more apparent that
is clickable */ +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 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-comment-header, .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, .tabnav-tab.selected, .panel-nav, + .file, .full-commit .sha-block > a, .theme-selector-thumbnail, + .segmented-nav li, .overall-summary, .boxed-group-inner, .search-form button, + .branches .branch-group-heading, .boxed-group > h3, .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: #484848 !important; +} + +pre, h1, h2, h3, .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, ul.filter-list, + .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, .table-list-header, .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, + .pagehead-tabs-item.selected, .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, + .reponav-item.selected, .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, + .profile-timeline-card-wrapper, + .profile-rollup-wrapper + .profile-rollup-wrapper, .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 +{ + border-color: #343434 !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; +} + +.header, .summary-stats, .follow-list .follow-list-item +{ + border-bottom: 1px solid #343434 !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; +} + +.timeline-comment:after, .commit-form:after, .branch-action-body:after, + .timeline-comment-wrapper > .timeline-comment:after, + .timeline-new-comment .timeline-comment:after +{ + border-right-color: #1d1d1d !important; +} + +.timeline-comment:before, .branch-action-body:before, .MarketplaceSideNav, + .plans-card-text:first-child +{ + border-right-color: #484848 !important; +} + +.review-summary:after +{ + border-bottom-color: #181818 !important; +} + +.word-upload-callout:before, .word-upload-callout:after, + .select-menu-modal-arrow:after, .dropdown-menu-s:before +{ + 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: /*[[base-color]]*/!important; + margin: 12px 0 0 12px !important; +} + +.sidebar-module .arrow-btn.expanded:hover +{ + border-width: 8px 6px 0 5px !important; + border-top-color: /*[[base-color]]*/!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-item.selected, .reponav-item.selected +{ + border-bottom-color: #222 !important; + border-top-width: 1px !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, .subnav-item, + .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, + .btn.btn-outline, .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, .Box-row, .ScreenshotCarousel +{ + background: #181818 !important; + border-color: #343434 !important; +} + +#readme .plain, .readme .markdown-body, .readme .plain, .pull-request-composer, + .drag-and-drop, .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, + .timeline-progressive-disclosure-button, .orghead .edit-org:hover, + .octotree_views, .simple-box +{ + background: #181818 !important; + border-color: #484848 !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, + .timeline-new-comment .discussion-topic-header, .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 +{ + background: #181818 !important; +} + +.sidebar-module, .form-control, + input[type="text"]:not(.tree-finder-input):not(.js-site-search-focus) +{ + background-color: #181818 !important; + border-color: #343434 !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 +{ + background: #1c1c1c !important; +} + /* headers */ +.table-list-header, .timeline-comment-header, .boxed-group > h3, + .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, .comment-form-head.tabnav, .migration-jumbotron, + .migration-sub-header, .commit-tease, .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, + table.files tr.navigation-focus td, .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, + .Box-row--focus-gray.navigation-focus, .team-listing .is-open.root-team, + .Box-row--hover-gray:hover +{ + background: #242424 !important; +} + +#main, .capped-box, .unread_count, #browser table th, + .markdown-format table th, table.upgrades tr.current td, .definitions, + .discussion-topic-header, .timeline-commits-minimal .commit-icon .octicon, + .timeline-commits .commit-icon .octicon, .upload-progress, + .search-results-listing em, .discussion-bubble-inner, #wiki-history table td, + .gist .gist-file .gist-data, .logo-box, .markdown-example .rendered, + .team-grid .team-members, .diagram-icon:not(.active), table.capped-list th, + .filter-bar, .audit-search-clear, .country-info, .tabnav-tab.selected, + .file-diff-split .empty-cell, .composer-infobar, .completeness-indicator-blank, + .leaflet-control-zoom, .pagehead-tabs-item.selected, .reponav-item.selected, + .ajax-pagination-form .ajax-pagination-btn:hover, + .ajax-pagination-form .ajax-pagination-btn:focus, + .manage-repo-access-not-active, .header-search-scope, .reverse-progress-bar, + .featurette.py-5, .payment-history .refunded, .payment-history .failed, + .profile-timeline-month-heading.bg-white +{ + background: #222 !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 +{ + 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 */ +.pagehead, .context-loader.large-format-loader, #graphs .loader, .org-header, + .render-shell .slider, .illflow-item:not(.selected):hover, + .leaflet-control-attribution, .orghead +{ + background: rgba(24, 24, 24, .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; +} + /* #333 */ +.pagehead ul.actions a.feed, .explore h2 .feed, #code_search_instructions h2, + td.inst, .metabox-loader, .pull-flag, .browser-content, + .filterbar ul.filters li, .pagehead ul.tabs li.contextswitch, + #wiki-header > div, .pagehead ul.tabs li.contextswitch:hover, .bigbutton a, + #new_message, #issues_next ul.sorts li, ul.sorts li.asc, ul.sorts li.desc, + .listings-layout .columns.main .content, .fieldswrap, .filterbar li.selected, + #issues_next ul.filters li, table.instruction tr:nth-child(2n), + .email-hidden-toggle a, #commit-activity-master-head, .action-indicator, + .pull-head .diffstat, ul.suggestions, .discusion-topic-infobar, + .commits-listing:before, .discussion-item-icon, .jstree-wholerow-hovered, + .bubble-contents, .ellipsis-button, .filter-list li span.bar, + .selectable_day.today, .billing-plans .current, .commits-listing:before, + .billing-section .usage-bar, .issue-list em, .file-info-divider, + .pagehead ul.tabs li a:hover, .repos .bottom-bar, #languages .popular, + .tip-box h4, table.upgrades td, .commit-preview .message, + .commit-preview p.error, .pagehead ul.tabs li.contextswitch, #browser tr th, + .status-box h4, .line_numbers, #files span.icon, #issues_list .actions, + #repos .public, .inset-callout, #repo-message, .repo-private-label, + .label-admin, a.team-member-ellipsis, .code-list em, .user-list em, + .credit-card.normal .signature, .credit-card.amex .gladiator, + .subnav-item:hover, .subnav-item:focus, .wiki-list em, + .progress-bar:not(.anim-grow-x), .header-search-scope:hover +{ + background: #333 !important; +} + +.comment-form, #issues .labels, .listings .odd, .feed, #files .description, + #message .envelope .header .info .title.unread, li.contextswitch ul li.current, + .watcher-widget, ul.main_nav li.selected a, ul.states li, .add_file, .inset, + li.label, .filterbar, .divider-vertical, .user-commits td, + .starting-comment .infobar, #issues_next .infobar, .formbody, + .commandbar .display, .none p, .display div.choice, ul.fieldpills li, + .documentation-results a, .plans-pricing-callout, + .auto-search-group .search-filters, .editbox, .editbox .body, .commentstyle, + #issues .display, #issues .display .admin, #issues .labels .list li, + .issue .summary, .hidden-text-expander a, .view-modes, .standard_form, + #reply_body, #commit div, #commit td, #commit tr, #commit .envelope, + .file-minibutton, .context-pane .title, .browser .listing:hover, + #dashboard .repos, .date_selector .btn, .list-module .list-body, + .list-module a, .label-permissions, .tree-browser th, .browser .listing.closed, + .starting-comment, .section-nav a:hover, .chzn-drop, .module .inner, + .team-repositories-blankslate, + .discussion-event-status-head_ref_deleted .discussion-item-icon, .pull-head, + .tabs, #browser td, #issues_next li.selected, .avatarname img, #readme .name, + #wiki-history .author img, .options-content h3, + .display div.choice:nth-child(2n+1), #issues-dashboard .actions, + .list-tip a:hover, .select-menu-tabs .select-menu-tab.selected, + .select-menu-tab .selected +{ + background-color: #333 !important; + border-color: #484848 !important; +} + /* contribution calendar and blame heats */ +.calendar-graph rect[fill="#c6e48b"], .calendar-graph rect[fill="#7bc96f"], + .calendar-graph rect[fill="#239a3b"], .calendar-graph rect[fill="#196127"], + .heat, .contrib-legend li +{ + background-color: /*[[base-color]]*/!important; + fill: /*[[base-color]]*/!important; +} + +.calendar-graph .days-selected rect.day.active +{ + stroke: #ddd !important; +} + +.calendar-graph rect.day:hover +{ + stroke: #fff !important; +} + /* contribution calendar - regular colors */ +.calendar-graph rect[fill="#ebedf0"], .contrib-legend li[style*="#eee"] +{ + background-color: #222 !important; + fill: #222 !important; +} + +.heat[data-heat="1"], .heat[data-heat="2"], + .calendar-graph rect[fill="#c6e48b"], .contrib-legend li[style*="#c6e48b"] +{ + opacity: .25 !important; +} + +.heat[data-heat="3"], .heat[data-heat="4"], + .calendar-graph rect[fill="#7bc96f"], .contrib-legend li[style*="#7bc96f"] +{ + opacity: .5 !important; +} + +.heat[data-heat="5"], .heat[data-heat="6"], + .calendar-graph rect[fill="#239a3b"], .contrib-legend li[style*="#239a3b"] +{ + opacity: .75 !important; +} + +.heat[data-heat="7"], .heat[data-heat="8"], + .calendar-graph rect[fill="#196127"], .contrib-legend li[style*="#196127"] +{ + opacity: 1 !important; +} + /* contribution calendar - halloween colors */ +.calendar-graph rect[fill="#FFEE4A"], .calendar-graph rect[fill="#FFC501"], + .calendar-graph rect[fill="#FE9600"], .contrib-legend li[style*="#FFEE4A"], + .contrib-legend li[style*="#FFC501"], .contrib-legend li[style*="#FE9600"] +{ + background-color: #fe9600 !important; + fill: #fe9600 !important; +} + +.calendar-graph rect[fill="#FFEE4A"], .contrib-legend li[style*="#FFEE4A"] +{ + opacity: .2 !important; +} + +.calendar-graph rect[fill="#FFC501"], .contrib-legend li[style*="#FFC501"] +{ + opacity: .4 !important; +} + +.calendar-graph rect[fill="#FE9600"], .contrib-legend li[style*="#FE9600"] +{ + opacity: .8 !important; +} + +.calendar-graph rect[fill="#03001C"], .contrib-legend li[style*="#03001C"] +{ + background-color: #fc3 !important; + fill: #fc3 !important; +} + +.progress-bar.anim-grow-x, .dev-hero +{ + filter: brightness(75%) !important; +} + /* invert (rgb) */ +#network .repo img:not(.gravatar), #header .logo, + img[src="/images/logo@2x.png"], .site-logo a, + .github-jobs-promotion a.jobs-logo strong, iframe[src*="polldaddy.com"], + .jstree-node:not(.jstree-leaf) > .jstree-icon.jstree-ocl, + .octotree_toggle .loader, .swipe .swipe-frame .swipe-bar .top-handle, + .swipe .swipe-frame .swipe-bar .bottom-handle, + .onion-skin .controls .transparent, .onion-skin .controls .opaque, + .onion-skin .controls .slider .slider-track, + .onion-skin .controls .slider .slider-track .dragger, .leaflet-control-zoom a, + .leaflet-control-attribution.leaflet-compact-attribution:after, + img[src$="favicons.githubusercontent.com/github.com"], + img[src$="invertocat.png"], .ghd-invert, .render-shell img.math, + #footer .github img +{ + filter: invert(100%) hue-rotate(180deg) !important; +} + /* invert network graph; gh-polls (https://github.com/tj/gh-polls) */ +div#network.network > div > canvas, a[href*="prod/poll/"] img, + img[data-canonical-src*="prod/timeseries/"] +{ + filter: invert(90%) hue-rotate(180deg) !important; +} + /* invert problematic emoji */ + /* images */ +[alt=":soon:"], [alt=":on:"], [alt=":end:"], [alt=":heavy_dollar_sign:"], + [alt=":registered:"], [alt=":tm:"], [alt=":heavy_multiplication_x:"], + [alt=":heavy_plus_sign:"], [alt=":heavy_minus_sign:"], + [alt=":heavy_division_sign:"], [alt=":heavy_check_mark:"], + [alt=":arrows_clockwise:"], [alt=":wavy_dash:"], [alt=":curly_loop:"], + [alt=":copyright:"], [alt=":currency_exchange:"], [alt=":top:"], + [alt=":back:"], [alt=":zzz:"], [alt=":notes:"], [alt=":musical_score:"], + [alt=":black_large_square:"], [alt=":black_medium_small_square:"], + [alt=":ant:"], [alt=":musical_note:"], [alt=":loop:"], [alt=":feet:"], + [alt=":paw_prints:"], + /* unicode */ + /* some emoji don't need to be inverted on Windows */ + /* from https://github.com/Dunedan/mbp-2016-linux on Windows*/ + /* ✔️ */ + [alias="soon"], [alias="on"], + [alias="end"], [alias="heavy_dollar_sign"], [alias="registered"], [alias="tm"], + [alias="heavy_multiplication_x"], [alias="heavy_plus_sign"], + [alias="heavy_minus_sign"], [alias="heavy_division_sign"], + [alias="arrows_clockwise"], [alias="wavy_dash"], + [alias="curly_loop"], [alias="copyright"], [alias="currency_exchange"], + [alias="top"], [alias="back"], [alias="zzz"], [alias="notes"], + [alias="musical_score"], [alias="black_large_square"], + [alias="black_medium_small_square"], [alias="ant"], [alias="musical_note"], + [alias="loop"], [alias="feet"], [alias="paw_prints"] { + filter: invert(100%) hue-rotate(180deg) brightness(80%) !important; + background: transparent !important; + } + /* Invert problematic emoji fallback images used on Windows */ + /* use tools/unicode-gen.js to generate */ + g-emoji[fallback-src$="2795.png"], g-emoji[fallback-src$="2796.png"], + g-emoji[fallback-src$="2797.png"], g-emoji[fallback-src$="27b0.png"], + g-emoji[fallback-src$="2b1b.png"], g-emoji[fallback-src$="25fe.png"], + g-emoji[fallback-src$="1f3b6.png"], g-emoji[fallback-src$="1f3bc.png"], + g-emoji[fallback-src$="1f4b1.png"], g-emoji[fallback-src$="1f4b2.png"], + g-emoji[fallback-src$="1f503.png"], g-emoji[fallback-src$="1f519.png"], + g-emoji[fallback-src$="1f51a.png"], g-emoji[fallback-src$="1f51b.png"], + g-emoji[fallback-src$="1f51c.png"], g-emoji[fallback-src$="1f51d.png"], + g-emoji[fallback-src$="1f3b5.png"], g-emoji[fallback-src$="27bf.png"], + g-emoji[fallback-src$="1f43e.png"], g-emoji[fallback-src$="1f43e.png"] { + filter: invert(83%) !important; + } + /* Exclude problematic non-emojis from Apple's emoji font on macOS */ + /* use tools/unicode-gen.js to generate. */ + @font-face +{ + font-family: "Apple Color Emoji"; + src: local("Apple Color Emoji"); + unicode-range: U+00000-000A8, U+000AA-000AD, U+000AF-02121, U+02123-025A9, U+025AB-025FB, U+025FD-025FD, U+025FF-0265F, U+02661-02662, U+02664-02713, U+02715-02715, U+02717-0302F, U+03031-10FFFF; +} + /* GeoJSON maps */ + /* https://github.com/benbalter/dc-maps/blob/master/maps/embassies.geojson */ +.leaflet-tile-container img +{ + filter: invert(100%) hue-rotate(180deg) brightness(150%) !important; +} + +.leaflet-marker-pane img, .gundamcat +{ + filter: brightness(.8) !important; +} + /* invert #fff to #181818 */ + /* https://github.com/sujitpal/statlearning-notebooks/blob/master/src/chapter2.ipynb */ +.output_area img, table.pricing-table, div[id^="contribution-first"] img, + div[id^="contribution-joined-github"] img, div[id^="contribution-created"] img, + .project-preview-img img, img[src$="bg-callout.svg"], + img[data-canonical-src*="saucelabs.com/browser-matrix"] +{ + filter: invert(90.5%) hue-rotate(180deg) saturate(200%) !important; +} + /* workaround filter creating a stacking context */ +.contribution-first-issue, .contribution-first-pull-request, + .contribution-first-repository +{ + opacity: .999 !important; +} + /* brighten language colors */ +.language-color +{ + filter: brightness(150%) !important; +} + /* soft badges */ +.box-title-count +{ + background-color: #484848 !important; + color: #ccc !important; +} + /* svg styling */ +line, rect, path +{ + shape-rendering: geometricPrecision !important; +} + +.js-graph-punchcard svg.viz +{ + background: transparent !important; + border: none !important; +} + +.octicon, svg.octicon +{ + fill: currentColor !important; +} + +.reorderable-task-lists .markdown-body .task-list-item .drag-handle +{ + fill: #c0c0c0 !important; +} + /* Firefox: Exclude text inside an svg loaded through an img, as seen in svg badges */ +*:not(img) text, circle.day +{ + fill: #ccc !important; +} + +circle.day:hover +{ + fill: #fff !important; +} + +path.js-diff-placeholder +{ + fill: #282828 !important; +} + +#contributors-master svg.viz +{ + display: block !important; +} + +g.dots circle +{ + stroke: #222 !important; +} + +.traffic-graph g.axis:not(.views):not(.unique) g.tick:not(:nth-child(14)):not(:first-child) line, + g.axis path, line.axis, svg:not(.vis) g.axis line +{ + stroke: #444 !important; +} + +svg .path:not(.total):not(.unique):not(.views) +{ + stroke: #aaa !important; +} + +#commit-activity-detail path.path, + .traffic-graph g.x.axis g.tick:first-child line +{ + stroke: #1db34f !important; +} + +.traffic-graph g.x.axis g.tick:nth-child(14) line +{ + stroke: #1d7fb3 !important; +} + +svg.tick +{ + fill: #444 !important; +} + +.features-branch-diagram path[stroke="#c6d9ed"], + .features-branch-diagram path[stroke="#4182C4"] +{ + stroke: /*[[base-color]]*/!important; +} + +.features-branch-diagram circle[fill="#4183c4"], + .repo-list-stats a.issues:hover svg +{ + fill: /*[[base-color]]*/!important; +} + +.features-branch-diagram circle[stroke="#ffffff"] +{ + stroke: #222 !important; +} + +rect.map-background, .audit-log-map +{ + fill: #1e4062 !important; + background: #1e4062 !important; +} + +path.land +{ + stroke: #17334f !important; +} + +circle.audit-point +{ + fill: #742d14 !important; + stroke: #57210f !important; +} + +.graphs .selection rect +{ + fill: #888 !important; + stroke: #888 !important; +} + +ul.sidetabs li a:hover, .editbox h1, #issues .labels .admin, + #issues .display .sortbar, #facebox .close, #issues_search .wrapper, + .ranked-repositories .meta a, .actor, ul.nav.logged_out, .tip-box a.next, + #inbox .list .unread, .main .filterbar, .browser-content .footerbar, + ul.smalltabs, .snippet, .supportstaffer, .discussion-form, .chooser-box, + .chooser-box h3, #forkqueue .instructions, .selector-item.clear:hover, + #contributors-master svg, .inset-callout h2, .documentation ul.nav, + .date_selector td.selected, #contributors-master, .context-title, + .list-module h2, .bootcamp-help h1, table.files tr.up-tree a:hover, + .ellipsis-button:hover, .codesearch-results .repo-list-name em, + .codesearch-results .repo-list-description em, .blog-search-results em, + .codesearch-cols em, ul.bignav li a:hover, ul.smallnav li a:hover, + .comments-wrapper, .rackspace, .subnav-bar > ul > li > ul > li > a:hover, + .issue.active, .orgs-nav .count, .filter-item:not(.selected):hover, + .task-progress .progress-bar .progress, + .oauth-connection-illustration .oauth-image, + .manage-repo-access-wrapper:before, .counter, .Counter +{ + background: #444 !important; +} + +.hidden-text-expander a, .ellipsis-expander, + .profile-timeline-month-heading:after, .review-comment-contents:after, + .review-comment.is-comment-editing:after +{ + background: #383838 !important; +} + +.switcher > span:after, .list-module a:hover, .section-nav .active a, + #dashboard .filter-bar li a.filter_selected:after +{ + background-color: #555 !important; +} + +.state-widget .behind .bar, .settings-email .label:not(.default), .key, + .date:after, .branch-a-b-count .bar, .branch-a-b-count .meter, + .branch-action-state-dirty .branch-action-icon, + .branch-action-state-closed-dirty .branch-action-icon, + .completeness-indicator-problem, .hidden-text-expander a:hover, + .ellipsis-expander:hover +{ + background: #555 !important; +} + +.labels .label-neutral, li.ssh-key .ssh-key-state-indicator.not-recent, + .render-shell > .slider .dragger +{ + background: #666 !important; +} + +.diverge-widget .separator +{ + background: #ccc !important; +} + +#network canvas +{ + background: #fff !important; +} + +.state-widget .ahead .bar, .render-shell > .slider .dragger:hover, + .render-shell > .slider .dragger:active +{ + background: #999 !important; +} + /* actions in issues - this style needs to be after .bubble */ +.action-bubble .bubble, .suggester +{ + background: transparent !important; +} + /* blue box */ +.timeline-comment.current-user .timeline-comment-header, + .github-jobs-promotion p, .octotip, .markdown-format .alert:not(.warning), + .full-commit.commit, .flash, .bootcamp h1, .bootcamp-body, .owners-notice, + .full-commit .browse-button, .blob-history, a.branch-name, .branch-name, + .new-user-avatar-cta, .jstree-wholerow-clicked, .commit-ref, .api .alert, + .file-history-tease, .flash, .flash-global, .feature-banner, + .recently-touched-branches, .pr-toolbar .subset-files-tab, article.full .alert, + .project-updated-message, .btn.btn-blue, .hook-delivery-guid, .topic-tag, + .topic-tag-action, .delete-topic-button, .topic-tag-action .add-topic-button, + .topic-tag-action .remove-topic-button, .RecentBranches, .signup-prompt-bg +{ + background: #182030 !important; +} + +.repo-file-upload-progress .repo-file-upload-meter, .btn.btn-blue:hover, + .topic-tag-link:hover, .delete-topic-button:hover +{ + background: #273045 !important; +} + +.bg-blue, .discussion-item-changes-marker.is-unread .discussion-item-icon +{ + background: #4183c4 !important; +} + +.timeline-comment.current-user .timeline-comment-header, .new-user-avatar-cta, + .full-commit .browse-button, .markdown-format .alert p, .blob-history, .flash, + .flash-global, .feature-banner, .recently-touched-branches, + .recently-touched-branches li, .pr-toolbar .subset-files-tab, .alert.tip, + article.full .alert a, .commit-ref, .project-updated-message, + .timeline-comment-label.collaborator-comment, .hook-delivery-guid .octicon, + .hook-delivery-guid a, a.topic-tag, .RecentBranches, .RecentBranches-item-link +{ + color: #9daccc !important; +} + +.RecentBranches-item, .commit-ref .user +{ + color: #6d7c9c !important; +} + +.timeline-comment.current-user, .github-jobs-promotion p, .octotip, + .markdown-format .alert:not(.warning), .full-commit.commit, + .bootcamp .bootcamp-body, .bootcamp h1, .owners-notice, .new-user-avatar-cta, + .full-commit .browse-button, .commit-ref, a.branch-name, .branch-name, + .timeline-comment.current-user .timeline-comment-header .timeline-comment-label, + .file-history-tease, .flash, .flash-global, .feature-banner, + .recently-touched-branches, .timeline-progressive-disclosure-items button, + .pr-toolbar .subset-files-tab, article.full .alert, .btn.btn-blue, .topic-tag, + .RecentBranches, .js-tag-input-tag +{ + border: 1px solid #246 !important; +} + +.repo-file-upload-progress, .project-updated-message, .delete-topic-button, + .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button, + .commit-desc + .commit-branches, .full-commit .btn-outline +{ + border-color: #246 !important; +} + +.timeline-comment.current-user .timeline-comment-header, .blob-history, + .recently-touched-branches li +{ + border-bottom-color: #246 !important; +} + +.blob-history, .file-history-tease .participation +{ + border-top: 1px solid #246 !important; +} + +.timeline-comment.current-user:before +{ + border-right-color: #246 !important; +} + +.timeline-comment.current-user:after +{ + border-right-color: #182030 !important; +} + +.flash, .markdown-format .alert a, .api .alert, a.branch-name, .branch-name, + article.full .alert +{ + border-color: #264c72 !important; + color: #c8d0e1 !important; +} + +.social-count:before +{ + border-right-color: #333 !important; + border-width: 5px !important; + margin-top: -4px !important; +} + +.social-count:after, #new_hook .fields +{ + border-width: 0 !important; +} + +.commit-icon .octicon +{ + border-radius: 100% !important; +} + /* original colors */ +.discussion-item-integrations-callout .discussion-item-icon +{ + background: #4095c6 !important; +} + /* notebooks */ +.input_prompt +{ + color: hsla(234, 100%, 65%, 1) !important; +} + +.output_prompt +{ + color: hsla(0, 100%, 65%, 1) !important; +} + /* gradient */ + /* file drag&drop overlay */ +.repo-file-upload-tree-target +{ + background: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, .6) 65%, rgba(0, 0, 0, .6) 100%) !important; +} + /* light grey gradient */ +.btn:hover, .btn:active, .btn.zeroclipboard-is-hover, + .btn.zeroclipboard-is-active, .minibutton:hover, .minibutton:active, + .minibutton.zeroclipboard-is-hover, .minibutton.zeroclipboard-is-active.kbd, + .signup-button:hover, a.signin:hover, .hero .textographic, + .hero .screenographic, .pagination span.current, .box-action:active, + .btn:active, .btn.selected, .btn.selected:hover, .btn.zeroclipboard-is-active, + .minibutton:active, .minibutton.selected, .minibutton.selected:hover, + .minibutton.zeroclipboard-is-active, .octotree_toggle:hover, + button.button:hover, a.button:hover, span.button:hover, + button.minibutton:hover, a.minibutton:hover, span.minibutton:hover, + .clone-url-button.selected > .clone-url-link, + .clone-url-button.selected > .clone-url-link:hover, ul#bootcamp li a:hover h4 +{ + background: linear-gradient(#303030, #282828) !important; + border-color: #484848 !important; +} + /* dark grey gradient */ +.btn, input.btn, header.nav-bar, .bubble .bubble-title, kbd, a.feed, + .list-browser-filterbar, .gobutton, .comment-header, .pagehead ul.tabs li a, + .login_form input[type="submit"], .top-bar, ul#bootcamp li a h4, + #gists .context-menu-container, body#com #header, .white-nav .selected span, + .filter-tab, #header-wrapper, #header-wrapper .nav, .pagination span, + .cheatsheet h2, .section a.section-head, .octotree_view_header, .list-heading, + .dashboard-tabs li a, a.function-button, .add-pill-form, + .gist .gist-file .gist-meta, .octotree_toggle, ul.comparison-list > li.title, + button.button, a.button, span.button, button.minibutton, a.minibutton, + span.minibutton, .clone-url-button > .clone-url-link +{ + background: linear-gradient(#202020, #181818) !important; + border-color: #383838 !important; +} + +.search-form button, .issues-list-actions, a.gollum-minibutton, + a.gollum-minibutton:visited +{ + background: linear-gradient(#202020, #181818) !important; +} + /* inverted dark grey gradient */ +.asc .sort-type, .desc .sort-type, .mini-bar-graph, .issues-list>ul>li.unread, + .timeline-commits-header, .usage-bar dd, .render-bar +{ + background: linear-gradient(#181818, #202020) !important; + border-color: #383838 !important; +} + +.bg-custom-gradient +{ + background-image: linear-gradient(180deg, #1c1c1c, rgba(0, 0, 0, 0)) !important; +} + +.billing-per-seat-callout:after +{ + box-shadow: 1px -1px 0 0 #343434 !important; +} + +.clone-url-button + .clone-url-button > .clone-url-link +{ + box-shadow: 1px 0 0 #333 !important; +} + +.clone-url-button.selected > .clone-url-link +{ + box-shadow: 0 2px 3px rgba(0, 0, 0, .3) inset !important; +} + +.blankslate, .ScreenshotCarousel-navitem.selected +{ + box-shadow: inset 0 0 10px rgba(255, 255, 255, .05) !important; +} + /* commits page - committer icon */ +.commits-list-item .committer-avatar +{ + box-shadow: -2px -2px 0 rgba(0, 0, 0, .4) !important; +} + /* text color */ + /* Bright text */ +.dropdown-item:hover, .dropdown-item.zeroclipboard-is-hover, + .gist-snippet .link-overlay .link, + .select-menu-item.navigation-focus .text-danger, + .select-menu-item.navigation-focus .description, + .select-menu-item.navigation-focus.selected .text-danger, + .select-menu-item.navigation-focus.selected .description, + .select-menu-item.navigation-focus.select-menu-action .text-danger, + .select-menu-item.navigation-focus.select-menu-action .description, + .select-menu-item.navigation-focus .description-inline .text-danger, + .select-menu-item.navigation-focus .description-inline .description, + .select-menu-item.navigation-focus, + .select-menu-item.navigation-focus.selected, + .select-menu-item.navigation-focus.select-menu-action, + .select-menu-item.navigation-focus .description-inline, + .gist-snippet-meta .gist-count-links > li > a:hover, + .team-member-list .manage-team-member .navigation-focus .btn-link, + .dangerzone > h3, .gcr-ext-editor-close .select-menu-title, + .btn.btn-outline:hover, .btn.btn-outline:active, .btn.btn-outline.selected, + .btn.btn-outline.zeroclipboard-is-hover, + .btn.btn-outline.zeroclipboard-is-active, a.filter-item.selected, + .date-selector td.selected, .date-selector td.selectable-day:hover, + .subnav-item:hover, .subnav-item:focus, .owner-select-target:hover, + .owner-select-target:focus, .suggester li.navigation-focus, + .suggester li.navigation-focus small, .intgrs-lstng-categories a:hover, + .text-white, a.text-white, .blame-next-container .reblame-link:hover, + .reblame-link:hover, .topic-tag-action .add-topic-button:hover, + .topic-tag-action .remove-topic-button:hover, + .discussion-item-changes-marker.is-unread .discussion-item-icon, + .toc-select .navigation-focus * +{ + color: #efefef !important; +} + +.btn, a.btn, .btn.btn-primary, .button.primary, .minibutton.primary, + .btn-danger:hover, ul.repo-stats li a:hover, .text-emphasized, + .minibutton.danger:hover, #gist-form label, .subnav li a:hover, + .filters li.selected a, .filters li a:hover, .code-list em, a.header-anchor, + .commandbar .choice .command, .search-term, .codesearch-cols em, .image, + .selector-item:hover .mini-icon:before, + .selector-item.selected .mini-icon:before, .new-repo .octicon, #header .nav a, + .minibutton i, .minibutton, .commit .mini-icon:before, .featured-callout, + .sidebar-milestone-widget .title, .numbers-summary .num, #network .explain b, + .dashboard-tabs a.selected, .dropdown-menu > li > a:hover, .message .time, + #graph_data .tab.selected a, .explore-collection .see-more-link, + ul.color-label-list .count, a.filter-tab.selected, .orgs-nav .count, + .facebox-user-list-item a, a.org-module-link, .org-header-info .name-link, + .calendar-graph .contrib-details div .num, + .commandbar .display table td:first-child, .file-history-tease .author a, + .overall-summary .graphs .num, ul.summary-stats li .num, + .pull-head-meta .pull-number a, + .mini-discussion-bubble .mini-discussion-bubble-action, .sub-nav h2, + .sub-nav h2 a, .accordion .section a.section-head, + .orgs-nav .org-nav-item.selected, .sub-nav li a.active, a.org-link, + .infobar-widget .text a, .view-modes-menu li.active, a.signin:hover, + .highlight-module .mega-icon:before, .headlines li a, #wiki-rightbar li, + .i-am-error p, .markdown-body .octicon-link, .gist-item ul.meta > li > a:hover, + .native-download .mega-icon:before, #article-platform-nav ul li.selected a, + .section-heading-title a.selected, .marketing-nav a.selected, + .dashboard-tabs a:hover, .hidden-text-expander a:hover, .codesearch-cols em, + .branch-action-state-clean .branch-action-icon:before, + .hook-list li.selected a, .oauth-permissions-details .permission-title, + p.read-it, .branch-action-state-dirty .branch-action-icon:before, + .branch-action-state-closed-dirty.branch-action-icon:before, + .branch-action-state-merged .branch-action-icon:before, + .full-commit .authorship a, #fork-select .target:hover:not(.disabled), + .full-commit .authorship .author-name, .showcase-featured .featured-grid-link, + .collection-card-title, .collection-card-image:hover, + .explore-page .see-more-link, .mute, .pull-request-link:hover, + .expandable:hover:before, .follow-list .follow-list-name a, + a.comment-header-author, .wiki-edit-link:hover, .infotip p, .form-actions .tip, + dl.form.warn dd.warning, .page-notice, .subnav-item.selected, + .subnav-item.selected:hover, .subnav-item.selected:focus, ol.toc > li a.active, + .example-nav li a.selected, .facebox-alert, .typeahead-result, .no-results, + #user-links > li * button, .timeline-commits .hidden-text-expander a:hover, + .color-editor-input, #user-links .sign-out-button, .table-list-item label, + .audit-action-info .context, .token-scope, .segmented-nav li.active a, + .tabs > a.selected, .member-username, .invited-banner p, kbd, .kbd, + .boxed-profile .profile-preview .vcard-fullname, .btn.btn-primary:hover, + .minibutton.btn-primary:hover, .integrations .site-footer a, .add-line-comment, + ul.filter-list .filter-item.selected, + .blob-num-expandable .diff-expander:hover, + .email-format .email-hidden-toggle a:hover, + #gollum-editor-help-parent li a.selected, + #gollum-editor-help-list li a.selected, a.gollum-minibutton, + a.gollum-minibutton:visited, a.token-warning, a.lightertooltipped, + .org-team-sidebar .team-note .note-emphasis, .select-menu-tabs a.selected, + #com .dropdown-menu a:hover, #com h1 span, #com h2 span, + .breadcrumb .final-path, button.button, a.button, span.button, + button.minibutton, a.minibutton, .button.primary:hover, .pagination .current, + .pagination .current:hover, .repo-private-label, + a.repo_filter.js-repo-filter-tab.filter-selected, .keyboard-mappings th, + .rendered_html, .render-health:hover .symbol, .radio-label, + .select-menu-item.selected, .gist-snippet-meta .description, + a.select-menu-item-text, .clone-url-button > .clone-url-link, a.user-mention, + .user-mention, a.team-mention, .team-mention, .boxed-group-inner h4, + .octotree_github_sidebar a.octotree_toggle, .reponav-item:hover, + .pagehead-tabs-item.selected, .pagehead-tabs-item:hover, + a.pagehead-tabs-item:hover, .tabnav-tab.selected, .leaflet-control-attribution, + .leaflet-control-attribution a, .integrations-breadcrumb-link, + a.integrations-breadcrumb-link, .link-gray-dark, a.link-gray-dark, + #message .title, .exploregrid-item-title, .explore-collection h2, #com h1, + #com h2, #com h3, ul.filter-list .filter-item:hover, + .underline-nav-item.selected, .underline-nav-item:hover, + .underline-nav-item:focus, .content > h2, .content > h3, + .audit-results-header-title, .session-authentication .auth-form-header, + .org-settings-team-type, .org-settings-team-count, .intgrs-lstng-item-header, + .api h1, .api h2, .octokit-language span, .blog .text-alpha, .blog .text-beta, + .blog .text-delta, .blog .text-gamma, .blog h1, .blog h2, .blog h3, .blog h4, + .blog h5, .site-header-nav a, .menu-item.selected, .overview .text-beta, + article h2, #message-list h1, #message-list h3, .graph-page h1, .graph-page h3, + .dashboard-notice h2, + .prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon, + .counter, .Counter, .state, .State, a.state, a.State, + .site-header-dark .site-header .site-header-link +{ + color: #e2e2e2 !important; +} + +pre, body, a.social-count, span.social-count, #languages a.bar, .lineoption p, + a.blog-title, table.notifications th, .usagestats dl dt.numbers, + .commit-preview p.name .date, .download-list h4, + .fieldgroup p.explain.planusage, ol.repository-lang-stats-numbers li .lang, + .explore h2, .tabnav .active a, .vcard-username, #markdown-toc li a, + .tag-info .tag-name, .language, .featured-callout h2, .commit-title .message, + .files .message, .revision .creator, .mini-icon.search-input, .lines-changed, + .lines-changed:hover, .discussion-topic-author a, .boxed-group-table td, + .graph .data .number, .content, .box-title, a.box-action, + #blog-main .pagehead h1 a.title, .octofication .message p, + .repolist .description, .addon p, .keyboard-mappings, .accessibility-aid:focus, + .list-group-item .list-group-item-name a, + .list-group-item .list-group-item-meta a, .list-browser-sorts .sort-type, + .select-menu-header .select-menu-title, #commits_tab_counter, + .auto-search-group .search-filter, .usage-bar dt, .github-jobs-promotion p a, + .select-menu-item .description, .file-info .file-name, .file-box .meta, + .gh-header-meta .author, .timeline-comment-header .author, + .timeline-commits .author, .sidebar-assignee .assignee, .rss-subscribe, + .sidebar-module h3 a, .sidebar-module h3.disable span, .octotip, + .graph-canvas .activity, .billing-section .section-content, #readme span.name, + .steps li.current, .discussion-item-entity, .blog-post-body, + .subnav-search-context .btn, .context-loader, .box-title a, + .merge-pr-more-commits a, .branch-infobar .lightweight-actions > li a:hover, + .discussion-item-ref-title .title-link, .org-teams-list .team, + .subnav-search-context .select-menu-item-icon, .ace-github, + a.pagehead-nav-item.selected, a.pagehead-nav-item:hover, + .repo-collection .collection-stat, a.subscribe-feed, header ul.links a:hover, + div.container > p, .commits-list-item .commit-author, + .full-commit .sha-block > .sha, .discussion-item .renamed-was, + .discussion-item .renamed-is, a.discussion-item-entity, + span.discussion-item-entity, .table-list-header-toggle .btn-link.selected, + .table-list-header-toggle .btn-link.selected:hover, + .table-list-header-toggle .btn-link:hover, a.issue-title-link, + .milestone-title-link a, .org-header .edit-org, .org-name, .blob-code, + .blob-code-inner, .diff-line-code, .contrib-number, + .pulse-summary .summary-box .count, .list-options .selected .list-item-title, + .nav-bar-inner .brand-logo-invertocat .octicon-mark-github, .menu a .octicon, + .issue-list-meta a, .stat-number, div.search-form button span, + .fullscreen-overlay .octicon:hover:before, + .fullscreen-overlay .mega-octicon:hover:before, .protip-callout, + .fullscreen-overlay textarea:focus, .fullscreen-overlay textarea:hover, + #header ul.top-nav > li > a, #header ul.top-nav > li > button, + a.team-member-ellipsis:hover, .rendered_html pre, .rendered_html code, + .team-grid .team-name, .commit .commit-title, .commit .commit-title a, + .completeness-indicator-success, .completeness-indicator-error, + .completeness-indicator-problem, .article-meta, a.article-meta, + .timeline-comment-header-text code a, .commit-tease-sha, a.commit-tease-sha, + .reponav-item.selected, .stats-group-stat.no-link:hover .stat-number, + .octotree_github_sidebar a.octotree_opts, .octotree_help > span, + .application-authorizations .oauth-app-access-name, .dropdown-item, + a.dropdown-item, .header-logo-invertocat, a.header-logo-invertocat, + a.header-logo-wordmark, .pull-request-integrations-title, + .intgrs-dir-intro .directory-header-back, + .intgrs-dir-intro .directory-header-back .header-link, + .oauth-application-info .application-title, + .session-authentication .header-logo, .repo-file-upload-progress, + a .mega-octicon, .anchor, a.anchor, + .gcr-ext-editor-close .delete-button:hover svg, + .repo-filterer .repo-filter.filter-selected, .select-menu-divider, + .label-select-menu .select-menu-item.selected, + .dropdown-signed-commit .dropdown-menu, .signed-commit-signer-name .signer, + .signed-commit-signer-name a.signer, .text-gray-dark, a.text-gray-dark, + .display-heading-1, .display-heading-2, .display-heading-3, .display-heading-4, + .pinned-repos-selection-list-item.selected, + .Box-body-row--highlight .Box-row-link, .text-pending, a.text-pending, + .compare-pr-placeholder p, .compare-pr-placeholder .help-link, #message.good, + #message.major, .boxed-group-success, .suggester li, .alert.warning p, + ul#bootcamp li a h4, .menu-heading, .text-black, .diffstat-summary strong, + .markdown-format h4, .access-token .token-description, + .oauth-org-access-details .boxed-group-list > li.on strong, .text-gamma, + .content h1, .api .text-alpha, .api .text-beta, .api .text-delta, + .api .text-gamma, .api h1, .api h2, .api h3, .api h4, .api h5, + .octokit-language span, .lead, .merge-branch-heading, + .org-user-notice-content strong, .timeline-comment-label.owner-comment, + .Box-row-link, a.Box-row-link, .form-control, .form-select, + .header .header-search-scope, .discussion-item-private, + .label-select-menu div.labelstyle-000000.selected, .marketplace-plan-emphasis, + .header-nav-link, a.header-nav-link, .header-navlink, a.header-navlink, + span.text-gray-dark +{ + color: #c0c0c0 !important; +} + +button, .edit-repository-meta, .field label, .boxed-group-list li, .capped-box, + .marketing-nav a, .repository-meta, .gist-item .description, p.explain, + .news .alert .simple .title, #network .graph-date, .tabnav-widget.text, + .feature .intro, span.diffstat, span.diffstat a, .commit .commit-branches a, + #readme .plain, .news blockquote, .news blockquote p, .collection-stat, + .overall-summary .graphs .desc, .flash-global a, + .calendar-graph .contrib-details div .lbl, .tag-info a, a.browse-button, + .ghead .dir, .repository-lang-stats .percent, .comment-header-action-text a, + .comment-header-right a, .gist-item .creator, .dashboard-tabs a, + #graph_data .tab a, .pull-info, .list-group-item .list-group-item-summary a, + #contributors .capped-card .cmt, .boxed-group-list .access-level, + h3.conversation-list-heading, a.filter-tab, .starred-repo p.description, + .commit-desc pre, .org-repo-stats a, .org-repo-updated a, + .org-repo-description, .org-repo-forked a, .commandbar .display table td span, + .clone-options, .pulse-section, .discussion-sidebar p, + .discussion-topic-header .discussion-topic-author, .gist-description, .explain, + p.subtext, .team-grid .team-description, .orgs-nav .org-nav-item, + .form-actions-protip .protip, .discussion-item .author, + .inline-comments .comment-count, .sidebar-heading, .clear-issue-filters a, + .render-view-modes li.active:before, ul.comparison-list > li em, + .marketing-benefits .column p, .sub-nav li a, .headlines a .date, + .sidebar-module ul ul li span, .merge-branch-description, + .gist-item ul.meta > li > a, ul#categories li h5 a, + .render-view-modes li.active, .user-leaderboard-list .repo-list-item .repo, + .repo-stats li a, .about p, dl.form > dd p.note, p.subdued, + .team-header .team-description, .hfields dl.form > dt label, + .boxed-group > h3 a.boxed-group-breadcrumb, + .boxed-group .heading a.boxed-group-breadcrumb, .subscriptions-sidebar .note, + .thread-subscription-status, a.ellipsis-button, .ellipsis-button, + .follow-list .follow-list-info, form.btn .count, .blame .commitinfo .date, + .gist .gist-file .gist-meta a, .merge-pr-more-commits, .hidden-text-expander a, + .news div.message, .news li blockquote, .news .alert .pull-info, + .news .alert .branch-link, .release .release-authorship a, + .wiki-wrapper .wiki-empty-box:hover, + .select-menu.is-showing-clear-item .select-menu-clear-item .octicon, + .diffstat-summary a, a.subnav-item, + .branches .branch-group-heading .branch-group-name, .render-notice, + .table-list-milestones .stat, + .commits-listing .commit-group-title .octicon-git-commit, + .select-menu-header .octicon:hover, .repo-list-description, .file .meta, + .email-format .email-hidden-toggle a, .file-diffstat, + .program-info-column .mega-octicon, .octofication .notice-dismiss:hover, + .timeline-commits .commit-message a, .markdown-format .intro, .label-admin, + .program-info-column p, .file-history-tease, .blob-num:hover, + .gist-snippet-meta .gist-count-links > li > a, .commit-tease .message, + .commit-author-section, .manage-repo-access-not-active, .milestone-name, + a.milestone-name, .select-menu-modal, .select-menu-action, + a.select-menu-action, .feature-callout, + .repo-file-upload-file-wrap .remove-file:hover, button.tabnav-tab, + .rss-subscribe, a.rss-subscribe, table.capped-list .octicon, + .site-header-menu .nav-item, .discussion-item-icon, .exploregrid-item, + a.exploregrid-item, .markdown-body blockquote, .link-gray, a.link-gray +{ + color: #b5b5b5 !important; +} + +.calendar-graph .contrib-details div, .tabnav-tabs a, .time, + .gist-item .metadata .datetime, .list-group-item-meta, a.keyboard-shortcuts, + button.keyboard-shortcuts, .simple-conversation-list, + .simple-conversation-list > li .title .num, .drag-and-drop, + .starred-repo .sort-info, .org-stats, .commandbar .choice, + .commandbar .loading, .commandbar .description, ul.summary-stats li a, + .authorship, .sha-block, .gh-header-meta, #last-edit, .setup-header .lead a, + .repository-meta .edit-link a, .api-status a, .meta li, .who_when a, + .numbers-summary a, .mini-icon-remove-close:hover, + .section-heading-title .separator, .blog-aside .rss, .hook-list a, + .github-jobs-promotion a.jobs-logo, .org-teams-list .team-meta, + .repo-list-item .repo-description, .branch-infobar .lightweight-actions > li a, + .repo-leaderboard-list .repo-leaderboard-meta-item a, + .changed .moved-up:before, .changed .moved-down:before, + .comment-header .octicon, a.section-heading-back, + .list-group-item-meta .octicon, .repo-leaderboard-title .title-meta, + a.pagehead-nav-item, .wiki-wrapper .wiki-empty-box, + .commits-list-item .commits-comments-link, .timeline-comment-header, + .commits-list-item .commit-meta, + .issues-listing .table-list-issues .issue-comments-link, + .issues-listing .table-list-issues .issue-meta-section a, a.issues-reset-query, + .labels-list-action, table.tag-list p a, table.tag-list td.date a, .muted-link, + a.muted-link, .render-view-modes li, .site-footer, + .site-footer .octicon-mark-github:hover, .repo-list-stats .repo-list-stat-item, + .range-editor span.flag .octicon, .commit-info .commit-meta a, + .notifications .issue-notification.read .type-icon, .notifications .read a, + .auth-form-header .octicon, .releases-tag-list p a, .history-link a, + a.issue-nwo-link, ul.filter-list .filter-item, .member-meta .teams-link, + .member-meta .btn-link, ul.comparison-list > li em, + ul.comparison-list > li.title, .diffstat-summary, a.team-member-ellipsis, + a.discussion-item-toggle-open, a.discussion-item-toggle-closed, + button.discussion-item-toggle-open, button.discussion-item-toggle-closed, + .dropdown-header, .participation a, .completeness-indicator-info, + .type-icon-state-none, a.type-icon-state-none, .pagehead-tabs-item, + a.pagehead-tabs-item, .commit-tease, .reponav-item, a.reponav-item, + .delete-owners-button, .stats-group-stat, a.stats-group-stat, + .stats-group-stat.no-link:hover, .wiki-edit-link, a.wiki-edit-link, + .toolbar-item .menu-target, .member-meta .member-meta-link, .lock-toggle-link, + a.lock-toggle-link, .hidden-text-expander a, .ellipsis-expander, .text-muted, + .listgroup-item, .discussion-item-header, .discussion-sidebar-heading, + .org-header-meta .meta-item .meta-link, .underline-nav-item, + a.underline-nav-item, .boxed-group-inner, .lead, .form-checkbox .note, + .bot-identifier, .dashboard-notice .dismiss:hover, .text-gray, a.text-gray, + .project-header .project-header-link, td.icon .octicon-file-text, + td.icon .octicon-file-symlink-file +{ + color: #949494 !important; +} + +.vcard-detail .octicon, .member-badge .octicon, + .command-bar .octicon-question:before, .news .alert .time, + ul.color-label-list .color-label.zeroed, + ul.color-label-list .color-label.zeroed .count, .gh-header-title .issue-number, + a.leaderboard-list-rank, .bootcamp ul li a, .ssh-key-fingerprint, + .tag-references > li a, .release .release-authorship, + .branches .branch-summary, .branches .no-results-message, + header ul.links > li a, .team-info-card .stats-group .stat, + .team-info-card .stats-group .stat.no-link:hover, .discussion-sidebar-item, + .issues-listing .table-list-issues .issue-meta, .task-progress, + .table-list-milestones .stat-label, .table-list, #blog-home, .blog-post-meta, + .blog-post-meta a, .blog-post-meta .octicon, .diff-line-num, + .file-data .line-numbers span, .discussion-item .timestamp, + .branch-status .divider, .news .alert .octicon, .news .alert .mega-octicon, + .blankslate > .mega-octicon, .repo-list-meta, a.discussion-item-help, + .page-new-repo .license-info, .notification-actions .btn-link, + .commit-info .commit-meta, .notifications .read .type-icon, + .notification-actions .age, .list-item .byline, .issue-list-meta, + .blob-num-expandable .diff-expander, .file-type-icon, .uploaded-files .remove, + .releases-tag-list td.date a, .collaborators .collab-remove .remove-link, + .octofication .notice-dismiss, ul.comparison-list > li .octicon, + div.content-header h6, .fullscreen-overlay textarea, + .blob-num.non-expandable:hover, .breadcrumb, + .application-authorizations .oauth-app-list-meta, + .application-authorizations .oauth-app-owner, .boxed-group-inner .help, + .thread-subscription-status .reason, .toc-diff-stats .octicon, .blob-num, + .recent-gists .description .blank, .recent-gists .metadata, + .member-meta .access-link, .gist-quicksearch-no-results, + #user-content-toc ul ul li:before, .btn-octicon, a.btn-octicon, + button.btn-octicon, .user-list li em, .reponav-item .octicon, + .pagehead-tabs-item .octicon, .table-list-header-toggle .btn-link, + #graph_data h2, #message-list .message .time, a.tabnav-extra, + .tabnav .tabnav-extras, + .discussion-item-integrations-callout .pull-request-integrations-dismiss, + .oauth-application-info .meta-link, .oauth-application-info .app-info, + .repo-file-upload-file-wrap .remove-file, #footer .mega-octicon, + .gcr-ext-editor-close svg, .commit-id, a.commit-id, .orghead .edit-org, + .signed-commit-badge, .manage-member-meta-item .btn-link, .note, + .delete-topic-button, .topic-tag-action .add-topic-button, + .topic-tag-action .remove-topic-button, .text-gray-light, a.text-gray-light, + .js-notice .octicon-x +{ + color: #7b7b7b !important; +} + +.branch-infobar .lightweight-actions > li .octicon, + .manage-repo-access-icon .octicon, .wiki-wrapper .wiki-history .date, + .issue-meta-section .octicon, .thread-subscription-status .mega-octicon, + .subnav-search-icon, .discussion-sidebar-toggle .octicon, + .auto-search-group > .octicon, .page-gist-edit .octicon-gist, + .unselected-month, .pagination .disabled, .repohead h1 .octicon, + .profile-rollup-toggle, .select-menu-item.disabled, + .select-menu-item.disabled.selected, .select-menu-item.disabled .description, + .dashboard-notice .dismiss, .blame-next-container .reblame-link +{ + color: #606060 !important; +} + +.context-pane .selector-item:hover a, .mega-icon:before, + .mini-icon-public-repo:before, .mini-icon-pull-request, + .mini-icon-remove-close, .mini-icon-link, .task-progress .octicon, + .milestone-link .octicon, .site-footer .octicon-mark-github, + .select-menu-header .octicon, .steps li, .pagination .gap, + .octicon-btn.disabled, .octicon-btn.disabled:hover, .branch-delete.disabled, + .date_selector td.unselected_month, .bootcamp .desc h2, + .issues-listing .table-list-issues .issue-comments-link.no-comment, + .diffstat-bar, .issue-comments-no-comment, a.issue-comments-no-comment, + .prose-diff.collapsed .rich-diff-level-zero.expandable .octicon +{ + color: #4d4d4d !important; +} + +.list-tip:before, .selector-item .mini-icon:before, + .browser .mini-icon-arr-right, .selected .select-menu-checkmark, + .octicon-person-team:before, .issues-reset-query .octicon-x, + a.darkertooltipped, #subscribeButton +{ + color: #373737 !important; +} + +.timeline-comment-header .timestamp, .vcard-stat:hover .text-muted, + .boxed-group > h3 a, .boxed-group .heading a, .list-heading a, .close-button, + .timeline-comment-action, a.timeline-comment-action, a.comment-type-icon, + .timeline-comment-actions .octicon, .commit-title .commit-link tt, + .btn-block-user, .pagehead-tabs-item.selected > .octicon, + .reponav-item.selected > .octicon, .select-menu-action > .octicon, + .select-menu-item, a.select-menu-item, + .discussion-sidebar-toggle:hover .octicon, + .feature-callout .feature-dismiss-link, .pagehead-heading, a.pagehead-heading, + .text-inherit, a.text-inherit, .table-list-milestones .stat a, + .review-comment-contents .timestamp, + .discussion-item-ref-title .title-link:hover .issue-num +{ + color: inherit !important; +} + /* Alerts and activity, remove background gradient */ +.metabox .editable-text:hover, #inbox .list .item .title span +{ + background-color: transparent !important; + border: 0 !important; +} + /* Panels */ +#posts #rss, .signup-button, .hero h1, .plan.personal, .caption, + .centered-graphic, .login_form h1 +{ + background-color: /*[[base-color]]*/!important; + border-color: /*[[base-color]]*/!important; +} + /* red */ + /* Red panel */ +#forkqueue .legend .unclean, .unclean td, .chzn-results .no-results, + .majorproblem .pageheader_wrap, .error_box, .btn-close-issue, .closed-issues, + .state-indicator.closed, .state-closed, + .discussion-item-closed .discussion-item-icon, + .discussion-item-review.is-rejected.is-writer .discussion-item-icon, + .topic-tag-action .remove-topic-button:hover +{ + background: #911 !important; + border-color: #383838 !important; +} + +.btn-close-issue:hover, .btn-danger:hover, .minibutton.danger:hover, + .remove-topic-button:hover +{ + background: #911 !important; + border-color: #b00 !important; +} + +.mergeable-dirty .bubble, .mergeable-dirty .merge-status-icon, + .completeness-indicator-error, .dangerzone > h3 +{ + background: #911 !important; +} + +.block-diff-deleted, .text-diff-deleted .block-diff-neutral +{ + background: #b22 !important; +} + /* red border */ +.mergeable-dirty .bubble .mergeable, #message.major, .comment-form-error, + .comment-form-stale, .deprecation-notice, .flash-error, .error +{ + border-color: #f44 !important; + background: #300 !important; +} + +.release-label.draft +{ + border-color: #f44 !important; +} + +.error:after +{ + border-bottom-color: #f44 !important; +} + +.mergeable-dirty .bubble:after +{ + border-right-color: #911 !important; +} + /* bright red text */ +.btn-danger, a.btn-danger, .text-failure, a.text-failure, .text-error, + a.text-error, a:not(.octicon-btn).danger, .closed.mega-octicon, .deletions, + .closed.octicon, .cdel, .gd .diff-line-num, .authors-and-code .deletions, + .diffstat .diffstat-bar.diff-deleted, span.diffstat .diffstat-bar i.minus, + .icon-for-failure, ul.summary-stats li .octicon-issue-closed, .branch-delete, + #toc .octicon-diff-removed, .pagehead-actions .octicon-mute, .highlight .gd, + .settings-email .email-actions .settings-remove-email, + .uploaded-files .remove:hover, + .collaborators .collab-remove .remove-link:hover, .minibutton.danger, + .closed.mini-icon, .octicon-btn-danger:hover, .text-danger, a.text-danger, + .type-icon-state-closed, a.type-icon-state-closed, .reverted.octicon, + .delete-owners-button:hover, .dangerzone-module h4, .btn-octicon-danger:hover, + .deprecation-notice a, .billing-addon-items tr.total-row *, + .comment-form-error, .comment-form-stale, .markdown-body .absent, .text-red, + a.text-red, .flash-error, .error, .release-label.draft +{ + color: #f44 !important; +} + /* purple */ +.illflow-item.selected +{ + background: #30182b !important; +} + +.illflow-item.selected:after +{ + border-bottom-color: #30182b !important; +} + /* brown */ +#feedHeaderContainer, .feedBackground, .infotip, .form-actions .tip, + .mini-callout, .snippet em, #message .sent, .notification, .callout, .ejector, + #issues_search .results em, .bootcamp-help ul li, .btn-download, + .feature-tabs .tab-button, .plan.free, #message.minor, .chzn-results li em, + #missing-readme, .page-notice, .facebox-alert, + .form-checkbox label em.highlight, .deprecation-warning, + .branch-status.status-pending .discussion-item-icon, + .discussion-event-status-renamed .discussion-item-icon, + .state-indicator.renamed, .discussion-topic .branch-status.status-pending, + .discussion-item-review.is-pending .file-header, + .discussion-item-review.is-pending .comment-form-head.tabnav +{ + background-color: #261d08 !important; + border-color: #542 !important; + color: #ddd !important; +} + +.review-summary-form-wrapper, .discussion-item-review.is-pending .file, + .discussion-item-review.is-pending .file-header, + .discussion-item-review.is-pending .tabnav-tab.selected, + .discussion-item-review.is-pending .comment-form-head.tabnav +{ + border-color: #542 !important; +} + +#toc .octicon-diff-modified, .secret .repo-label span, .api .s2 +{ + color: #b74 !important; +} + +.deprecation-warning a +{ + color: #c97 !important; +} + /* semi-transparent brown */ +.compare-pr-placeholder, .compare-cutoff, .diff-cutoff, .flash.flash-warn, + .flash-global.flash-warn, .markdown-body li.added.moved, .repo-private-label, + .gist-secret-label, .label-private, .stale-files-tab, .signed-out-comment, + .warning, .commits-list-item em, .unsupported-browser +{ + background: rgba(51, 34, 17, .4) !important; + border: 1px solid #542 !important; + color: #ddd !important; +} + +.warning +{ + background: #321 !important; +} + +.warning:after +{ + border-bottom-color: #321 !important; +} + +.warning:before +{ + border-bottom-color: #542 !important; +} + +.btn.btn-secret +{ + background: linear-gradient(#321, #210) !important; + border-color: #542 !important; +} + +.btn.btn-secret:hover +{ + background: linear-gradient(#432, #321) !important; +} + +.btn.btn-secret[disabled], .btn.btn-secret[disabled]:hover +{ + background: #210 !important; + border-color: #542 !important; +} + /* yellow text */ + /* .bg-pending might be a GitHub bug as it sets the fg */ +.text-pending, a.text-pending, .text-renamed, a.text-renamed, .bg-pending, + a.bg-pending +{ + color: #cb4 !important; +} + /* yellow border (travis) */ +.branch-action-state-unknown .branch-action-body, + .branch-action-state-unknown .branch-status, + .branch-action-state-unstable .branch-action-body, + .branch-action-state-unstable .branch-status +{ + border-color: #884 !important; +} + +.branch-action-state-unknown .branch-action-body:before, + .branch-action-state-unstable .branch-action-body:before +{ + border-right-color: #884 !important; +} + /* green */ + /* labels */ +#forkqueue .legend .clean, #revisions ul li.current, .excerpt, .plan.business, + .popout, #statusbar, .clean td, #download_button, .status-box.good a, + .discussion-item-reopened .discussion-item-icon, .progress-bar .progress, + .new-issues, .new-pulls, .mergeable-clean .merge-status-icon, + .settings-email .default, .repo-owner-comment .comment-header-tag, + .mergeable-clean .bubble, .gh-header-status.open, + .branch-status.status-success .discussion-item-icon, .state-open, + .state-proposed, .big-notice, .state-indicator.open, .state-indicator.proposed, + .state-indicator.reopened, .boxed-group-success, + .branch-action-state-clean .branch-action-icon, + .user-list li .actions .status-modified, #message.good, .bg-green, + .discussion-item-reopened .discussion-item-icon, + .discussion-item-review.is-approved.is-writer .discussion-item-icon, + .add-topic-button:hover, .topic-tag-action .add-topic-button:hover +{ + background: #163 !important; + border-color: #041 !important; +} + /* Green border */ +.mergeable-clean .bubble .mergeable, + .branch-action-state-clean .branch-action-body +{ + border-color: #041 !important; +} + +.mergeable-clean .bubble:after, + .branch-action-state-clean .branch-action-body:before +{ + border-right-color: #041 !important; +} + +.completeness-indicator-success +{ + background: #152 !important; +} + +.billing-confirmation-box +{ + border-color: #083 !important; +} + /* original color */ +.signed-commit-badge.verified:hover +{ + border-color: #6cc644 !important; +} + +.signed-commit-verified-label, .signed-commit-badge.verified +{ + color: #55a532 !important; +} + /* Green text */ +.text-open, a.text-open, .text-success, a.text-success, .insertions, + .open.mini-icon, .open.mega-octicon, .open.octicon, .cadd, .gi .diff-line-num, + .authors-and-code .insertions, span.diffstat .diffstat-bar.diff-added, + span.diffstat .diffstat-bar i.plus, + ul.summary-stats li .octicon-git-branch-create, + ul.summary-stats li .octicon-issue-opened, #toc .octicon-diff-added, + .setup-info-module .features-list .octicon, .setup-form-container .secure, + .highlight .gi, .type-icon-state-open, a.type-icon-state-open, .text-green, + a.text-green, .release-label.latest a +{ + color: #6cc644 !important; +} + /* bright green background */ +.block-diff-added, .text-diff-added .block-diff-neutral +{ + background: #6cc644 !important; +} + +.release-label.latest +{ + border-color: #6cc644 !important; +} + /* interactive button - bright border */ +.btn-primary:not(.compare-button), .button.primary, .btn-theme-green +{ + background: linear-gradient(#407045, #305530) !important; + border-color: #083 !important; +} + +.button.primary:disabled, .button.primary:disabled:hover, + .button.primary.disabled, .button.primary.disabled:hover, + .btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary.disabled, + .btn-primary.disabled:hover, .btn-theme-green:disabled, + .btn-theme-green:disabled:hover +{ + background: linear-gradient(#203522, #152715) !important; + border-color: #041 !important; +} + /* New additions */ +.repo-owner-tag .tag, .gist-owner-tag .tag +{ + background: #070 !important; + color: #ddd !important; +} + /* Green hovered */ +.noproblems .pageheader_wrap, a.new-repo:hover +{ + background: #373 !important; +} + +.btn-primary:not(:disabled):not(.compare-button):hover, + .button.primary:not(:disabled):hover, .btn-theme-green:hover +{ + background: linear-gradient(#508055, #407045) !important; +} + /* orange */ +#user-links .unread_count, .minorproblem .pageheader_wrap +{ + background: rgba(203, 108, 0, .8) !important; +} + +.text-orange, a.text-orange, .release-label.prerelease +{ + color: #f3582c !important; +} + +.release-label.prerelease +{ + border-color: #f66a0a !important; +} + /* purple merge status icon, seen in merged issues with an existing branch */ +.merge-status-icon, .merged-pulls, .state-indicator.merged, .state-merged, + .discussion-item-merged .discussion-item-icon +{ + background: #6e5494 !important; +} + /* purple text */ +ul.summary-stats li .octicon-git-pull-request, .type-icon-state-merged, + a.type-icon-state-merged +{ + color: #8368aa !important; +} + +.text-purple, a.text-purple +{ + color: #943fb8 !important; +} + /* pjax loading */ +.pjax-loader-bar .progress +{ + background: /*[[base-color]]*/!important; + box-shadow: 0 0 10px /*[[base-color]]*/ !important; +} + +ul.view-modes-menu +{ + background-image: url("data:image/gif;base64,R0lGODlhBwAEAIAAACIiIv///yH5BAEAAAEALAAAAAAHAAQAAAIIhA+BGWoNWSgAOw==") !important; +} + +.mini-icon-windows:before +{ + background-position: -18px 0 !important; +} + /* Repo list (https://github.com/{user}?tab=repositories) */ +.repo-list-item p, .repo-list-item .repo-list-stats +{ + position: relative !important; + z-index: 1 !important; +} + /* HACK: Fix review comment timeline */ + /* https://github.com/nodejs/node/pull/8519#r78637092 */ +.review-comment-contents:after, .review-comment.is-comment-editing:after +{ + z-index: 0 !important; +} + +.review-comment .avatar +{ + position: relative !important; + z-index: 1 !important; + background: #181818 !important; + box-shadow: 0 0 0 4px #181818 !important; +} + +.reponav-item, .pagehead-tabs-item +{ + position: relative !important; + top: 2px !important; +} + +.participation-graph svg +{ + background: transparent !important; + opacity: .1 !important; + z-index: 0 !important; +} + +.inbox-zero-octocat, .network-graph-container +{ + opacity: .6 !important; +} + +.search .minibutton span +{ + background-position: center -95px !important; +} + +.upload-enabled textarea +{ + border-bottom: 1px dashed #444 !important; +} + /* history expand buttons */ +.commit .minibutton.expander-minibutton span +{ + background-position: 50% -45px !important; +} + +.commit.open .minibutton.expander-minibutton span +{ + background-position: 50% -145px !important; +} + /* pull request avatar bubble */ +.avatar-bubble:before, .discussion-bubble-content:before +{ + border-color: transparent #333 transparent transparent !important; +} + /* octocat spinners */ +img[src*="octocat-spinner"], img[src="/images/spinner.gif"], + .profile-picture-spinner +{ + width: 0 !important; + height: 0 !important; +} + +img[src*="octocat-spinner"], img[src="/images/spinner.gif"], .facebox-loading, + .branch-action-body .spinner, .status-indicator-loading, + .ajax-pagination-form.loading .ajax-pagination-btn:after, + .profile-picture-spinner, .more-repos-link.is-loading +{ + background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTM2NCAyOC42QzQyMC43IDU3IDQ1OS42IDk0LjQgNDg1IDE1MWwtMzEuNCAxNWMtMjAtNDEtNjMtODQtMTA0LjYtMTA0LjUiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjBzIiBkdXI9IjFzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPjwvcGF0aD48cGF0aCBmaWxsPSIjMzMzIiBkPSJNNDk0IDE2OWMyMCA2MCAyMSAxMTQtMSAxNzJsLTMyLjgtMTEuNGMxNS00My4zIDE1LTEwNCAwLTE0OCI+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbCIgdmFsdWVzPSIjMzMzOyNlZWU7IzMzMzsjMzMzIiBiZWdpbj0iMC4xMjVzIiBkdXI9IjFzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPjwvcGF0aD48cGF0aCBmaWxsPSIjMzMzIiBkPSJNNDg1LjQgMzU5LjJjLTI4LjMgNTYuNi02NS44IDk1LjUtMTIyLjQgMTIxbC0xNS4yLTMxLjRjNDEuMy0yMCA4NC4yLTYzIDEwNC43LTEwNC42Ij48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJmaWxsIiB2YWx1ZXM9IiMzMzM7I2VlZTsjMzMzOyMzMzMiIGJlZ2luPSIwLjI1MHMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9wYXRoPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0zNDQuNSA0ODguNWMtNjAgMjAtMTE0IDIxLTE3Mi0xbDExLjQtMzNjNDMuMiAxNSAxMDQgMTUgMTQ4IDAiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuMzc1cyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTE1NC4zIDQ4Mi44Yy01Ni42LTI4LjQtOTUuNS02NS44LTEyMS0xMjIuNGwzMS40LTE1LjJjMjAgNDEuMyA2MyA4NC4yIDEwNC42IDEwNC43Ij48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJmaWxsIiB2YWx1ZXM9IiMzMzM7I2VlZTsjMzMzOyMzMzMiIGJlZ2luPSIwLjUwMHMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9wYXRoPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0yMy43IDM0Mi43Yy0yMC02MC0yMS0xMTQgMS0xNzJsMzMgMTEuNGMtMTUgNDMuNS0xNSAxMDQgMCAxNDgiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuNjI1cyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTMxLjggMTUxQzYwIDk0LjIgOTcuNSA1NS4zIDE1NCAzMGwxNS4zIDMxLjNjLTQxLjIgMjAtODQgNjMtMTA0LjYgMTA0LjYiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuNzUwcyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTE3MyAyMWM2MC0yMCAxMTQtMjEgMTcyIDFsLTExLjUgMzIuOGMtNDMuMy0xNS0xMDQtMTUtMTQ4IDAiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuODc1cyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iI2VlZSIgZD0iTTE5NyA0NTl2LTQ4cy00LTQtMzMtMWMtMjggMy02Mi02Ni02NS02OSAyNC0xMCA0MyAyNiA2NSAzOGgzMXMzLTQ0IDIwLTM3YzE3IDYtNzIgMS05Ny02MXMxOS0xMjYgMjAtMTE1YzAgOS0xNy0zNS0xMC00NiAyMC0yNCA1MCAxMSA2OSAxNSA1IDAgMTgtOCA1OS03IDQxIDAgNTUgOCA2MCA2IDIyLTEwIDUxLTMyIDY1LTE3IDEwIDEyLTEgNjEtMSA0OXM0MyA4MSA2IDEzMmMtMjkgNDYtOTUgNDMtODQgNDYgMjEgMTUgMTQgOTEgMTQgMTE1bC0yMiA0di03NGMwLTktOS0xMC05LTl2ODVsLTIxIDF2LTg2aC0xMHY4NmwtMjAtMXYtODNzLTgtMS04IDEwdjcyIi8+PC9zdmc+") !important; + background-size: contain !important; +} + +.more-repos-link.is-loading +{ + background-repeat: no-repeat !important; + background-position: 50% 50% !important; + background-size: 16px 16px !important; +} + +.timeline-progressive-disclosure-container +{ + background: transparent url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NHB4IiBoZWlnaHQ9IjM0cHgiIHZpZXdCb3g9IjAgMCA0NCAzNCI+PHBvbHlsaW5lIGZpbGw9IiM0NDQiIHBvaW50cz0iMCwyMSAyMiw4IDQ0LDIxIDQ0LDI2IDIyLDEzIDAsMjYiLz48L3N2Zz4NCg==") repeat-x left center/22px 17px !important; +} + +img[src*="octocat-spinner"][width="128"] +{ + padding: 64px !important; +} + +img[src*="octocat-spinner"][width="64"], .profile-picture-spinner +{ + padding: 32px !important; +} + +img[src*="octocat-spinner"][width="32"] +{ + padding: 16px !important; +} + +img[src*="octocat-spinner"][width="16"] +{ + padding: 8px !important; +} + +img[src="/images/spinner.gif"] +{ + padding: 32px !important; +} + /* network members */ +.network-tree +{ + width: 26px !important; + height: 0 !important; + padding-top: 22px !important; + background-repeat: no-repeat !important; +} + +.network-tree[src$="t.png"] +{ + background-image: url("data:image/gif;base64,R0lGODlhFAAaAPABADMzMwAAACH5BAUAAAEALAAAAAAUABoAAAIkjI+pG8APY5O0uorfzRzt3n1g5pSTOTJiSq1s5L6ajMW0YgcFADs=") !important; +} + +.network-tree[src$="i.png"] +{ + background-image: url("data:image/gif;base64,R0lGODlhFAAaAPABADMzMwAAACH5BAUAAAEALAAAAAAUABoAAAIhjI+pG8APY5O0uorfzRzt3n1gJo6WGaJcqUJsy7ywIgcFADs=") !important; +} + +.network-tree[src$="l.png"] +{ + background-image: url("data:image/gif;base64,R0lGODlhFAAaAPABADMzMwAAACH5BAUAAAEALAAAAAAUABoAAAIejI+pG8APY5O0uorfzRzt3n1g5pSTOabqyrbuC68FADs=") !important; +} + +#searchfield +{ + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAMAAABFNRROAAAAM1BMVEUAAABKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkrmvr7+AAAAEXRSTlMAmEgOJpKQimpgRHVzVk8fFp8jXkwAAABRSURBVAjXVY1JDsAwCAMxhGxNl/+/toVEKpmLNcLCRJRqKTXRhOGwS4KyCCv8eoBnY1hkiIUgb6ah2THWly7SFS0uAKfZWm+mP59eUfNNgYdehjcBh7PIFcgAAAAASUVORK5CYII=") !important; + background-repeat: no-repeat !important; + background-position: 8px center !important; +} + /* octotree icons */ +a.octotree_toggle:not(.octotree_loading) > span:after, + .octotree_github_sidebar a.octotree_opts, .octotree_help > span +{ + filter: invert(100%) !important; +} + +a.octotree_toggle:not(.octotree_loading):hover > span:after, + .octotree_github_sidebar a.octotree_opts:hover, + .octotree_treeview .jstree-icon.tree +{ + filter: grayscale(100%) !important; +} + /* front page: 'more' spinner */ +.ajax-pagination-form.loading .ajax-pagination-btn +{ + position: relative !important; + border-color: #343434 !important; + background: #181818 !important; +} + +.ajax-pagination-form.loading .ajax-pagination-btn:after +{ + content: "" !important; + position: absolute !important; + width: 16px !important; + height: 16px !important; + left: 50% !important; + top: 50% !important; + transform: translate(-50%, -50%) !important; +} + +.branch-action-body .spinner, div.facebox-loading, .status-indicator-loading +{ + background-position: center center !important; + width: 100% !important; + background-repeat: no-repeat !important; +} + /* image preview background */ +.render-shell .img-view img, .file .image img, .file .image canvas, img.asset, + .render-shell img:not(.math) +{ + background-image: url("data:image/gif;base64,R0lGODlhCgAKAIAAABoaGgAAACwAAAAACgAKAAACEYQdmYcaDNxjEspKndVZbc8UADs=") !important; +} + +.render-shell:hover .img-view img, .file:hover .image img, + .file:hover .image canvas, img.asset:hover, .render-shell:hover img:not(.math) +{ + background-image: url("data:image/gif;base64,R0lGODlhCgAKAIAAAOXl5f///yH5BAAAAAAALAAAAAAKAAoAAAIRhB2ZhxoM3GMSykqd1VltzxQAOw==") !important; +} + /*