From f0cafd6f01ab212dd6f0a3497542914abf29eb0c Mon Sep 17 00:00:00 2001 From: pat-s Date: Thu, 22 Sep 2022 14:37:08 +0200 Subject: [PATCH] light: align background color of branch names in PRs --- theme-github-auto.css | 5 +++++ theme-github.css | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/theme-github-auto.css b/theme-github-auto.css index 2d8bbf2..5280291 100644 --- a/theme-github-auto.css +++ b/theme-github-auto.css @@ -394,6 +394,11 @@ .ui.basic.primary.buttons .button:hover { box-shadow: inset 0 0 0 0px transparent !important; } + // background color of branch name in PRs + .issue.list .branches .branch { + background-color: #afb8c133; + border-radius: 6px; + } } @media (prefers-color-scheme: dark) { :root { diff --git a/theme-github.css b/theme-github.css index 66e06e9..9a1852d 100644 --- a/theme-github.css +++ b/theme-github.css @@ -388,3 +388,9 @@ ui.basic.blue.button:hover, .ui.basic.primary.buttons .button:hover { box-shadow: inset 0 0 0 0px transparent !important; } + +// background color of branch name in PRs +.issue.list .branches .branch { + background-color: #afb8c133; + border-radius: 6px; +}