From 4868b1604747c1f35a24bb5e409fc16bc735523c Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Wed, 14 Dec 2016 18:37:19 -0600 Subject: [PATCH 1/4] Add support for styling the branch infobar --- github-dark.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-dark.css b/github-dark.css index 09172b7..1549338 100644 --- a/github-dark.css +++ b/github-dark.css @@ -435,7 +435,7 @@ table.files td.icon { color: #ccc; } -.commit-tease { +.commit-tease, .branch-infobar { color: #8485ce; background-color: #364952; border-color: #4c85a0; @@ -1957,4 +1957,4 @@ li.session-device { } -/* End */ \ No newline at end of file +/* End */ From a968945691531ac759f0d66c193c07134e4e3b26 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Wed, 14 Dec 2016 18:58:18 -0600 Subject: [PATCH 2/4] Fixed color for TutorialPopover. --- github-dark.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/github-dark.css b/github-dark.css index 1549338..59b911f 100644 --- a/github-dark.css +++ b/github-dark.css @@ -435,12 +435,17 @@ table.files td.icon { color: #ccc; } -.commit-tease, .branch-infobar { +.commit-tease, .branch-infobar, .TutorialPopover { color: #8485ce; background-color: #364952; border-color: #4c85a0; } +.TutorialPopover::after { + border-top-color: #364952; + border-bottom-color: transparent; +} + .commits-list-item .commit-author { color: #00aba5; } From e92bab78e3aaef485b4406926a45318209f793cc Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Sat, 24 Dec 2016 14:52:31 -0600 Subject: [PATCH 3/4] Changed background color per feedback from @cquanu Also: * Moved `.TutorialPopover` into its own section * Removed `.branch-infobar`, since that work has been done already in a different branch --- github-dark.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/github-dark.css b/github-dark.css index 59b911f..6ffb9d3 100644 --- a/github-dark.css +++ b/github-dark.css @@ -435,12 +435,18 @@ table.files td.icon { color: #ccc; } -.commit-tease, .branch-infobar, .TutorialPopover { +.commit-tease { color: #8485ce; background-color: #364952; border-color: #4c85a0; } +.TutorialPopover { + color: #8485ce; + background-color: #1a2632; + border-color: #4c85a0; +} + .TutorialPopover::after { border-top-color: #364952; border-bottom-color: transparent; From 26ffcf7c2170bb89d3c709f0ac1655cf8c97d30c Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Sat, 24 Dec 2016 15:17:32 -0600 Subject: [PATCH 4/4] Added style updates for dropdowns. --- github-dark.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/github-dark.css b/github-dark.css index 6ffb9d3..478a231 100644 --- a/github-dark.css +++ b/github-dark.css @@ -441,7 +441,7 @@ table.files td.icon { border-color: #4c85a0; } -.TutorialPopover { +.TutorialPopover, .dropdown-menu { color: #8485ce; background-color: #1a2632; border-color: #4c85a0; @@ -452,6 +452,12 @@ table.files td.icon { border-bottom-color: transparent; } +.dropdown-menu::after { + background-color: #1a2632; + border-bottom-color: #1a2632; + border-top-color: transparent; +} + .commits-list-item .commit-author { color: #00aba5; }