Skip to content
This repository was archived by the owner on Jul 22, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 34 additions & 16 deletions github-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -1508,6 +1508,12 @@ table.capped-list tr:nth-child(even) {
color: #9e9e9e;
}

/* Repo Graph | Netowrk Tree */
/* Invert the colours of the network tree images. Who don't have a whole lot of control over these because they're PNGs provided by github. */
.network-tree {
-webkit-filter: invert(0.8);
filter: invert(0.8);
}

/* Repo Settings Tab */

Expand Down Expand Up @@ -1609,14 +1615,6 @@ hr,
border-color: #304251;
}


/* Profile | Contribution */

#contributions-calendar rect[fill="#eeeeee"] {
fill: #151f29;
}


/* Profile | Repo Tab */

.profilecols .filter-bar .filter-selected {
Expand Down Expand Up @@ -2155,6 +2153,8 @@ li.session-device {

/* End */

=======
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

leftover from merge conflict


/* Fix new additions to github. */

.topic-tag {
Expand Down Expand Up @@ -2182,34 +2182,51 @@ li.session-device {
.calendar-graph rect[fill="#7bc96f"],
.calendar-graph rect[fill="#239a3b"],
.calendar-graph rect[fill="#196127"],
.contrib-legend li[style*="#c6e48b"],
.contrib-legend li[style*="#7bc96f"],
.contrib-legend li[style*="#239a3b"],
.contrib-legend li[style*="#196127"],
.contrib-legend li[style*="#eee"],
.heat {
background-color: #4183C4 !important;
fill: #4183C4 !important;
opacity: .15;
}
.contrib-legend {
display: none !important;
}
.calendar-graph .days-selected rect.day.active {
stroke: #ddd !important;
}
.calendar-graph rect.day:hover {
stroke: #fff !important;
}
/* reg colors */

.calendar-graph rect[fill="#c6e48b"] {
.calendar-graph rect[fill="#eeeeee"] {
background-color: #222 !important;
fill: #222 !important;
}
.calendar-graph rect[fill="#c6e48b"], .contrib-legend li[style*="#c6e48b"] {
opacity: .3;
}
.calendar-graph rect[fill="#7bc96f"] {
.calendar-graph rect[fill="#7bc96f"], .contrib-legend li[style*="#7bc96f"] {
opacity: .5;
}
.calendar-graph rect[fill="#239a3b"] {
.calendar-graph rect[fill="#239a3b"], .contrib-legend li[style*="#239a3b"] {
opacity: .7;
}
.calendar-graph rect[fill="#196127"] {
.calendar-graph rect[fill="#196127"], .contrib-legend li[style*="#196127"] {
opacity: 1;
/* }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue here.

.contrib-legend li[style*="#d6e685"] {
background-color: #233C56 !important;
}
.contrib-legend li[style*="#8cc665"] {
background-color: #2D547B !important;
}
.contrib-legend li[style*="#44a340"] {
background-color: #366B9F !important;
}
.contrib-legend li[style*="#1e6823"] {
background-color: #4183C4 !important;
} */
/* user fix */

.underline-nav-item {
Expand Down Expand Up @@ -2372,3 +2389,4 @@ li.session-device {
.cm-variable-3 {
color:
}

Loading