From cef25975561a4c3c7ccc23525fee43fb82ac1290 Mon Sep 17 00:00:00 2001 From: pat-s Date: Tue, 28 Mar 2023 14:15:02 +0200 Subject: [PATCH] light: fix coloring of settings button in org team settings --- theme-github-auto.css | 6 ++++++ theme-github.css | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/theme-github-auto.css b/theme-github-auto.css index 2900b71..49d12a2 100644 --- a/theme-github-auto.css +++ b/theme-github-auto.css @@ -411,6 +411,12 @@ .ui.basic.secondary.button:hover { background: var(--color-hover) !important; } + + // settings button in org team settings + .ui.teal.labels .label, .ui.ui.ui.teal.label, .ui.teal.button, .ui.teal.buttons .button { + background: var(--color-green); + color: #fff !important; + } } @media (prefers-color-scheme: dark) { :root { diff --git a/theme-github.css b/theme-github.css index e2b095e..190e7e4 100644 --- a/theme-github.css +++ b/theme-github.css @@ -406,3 +406,9 @@ ui.basic.blue.button:hover, .ui.basic.secondary.buttons .button:hover, .ui.basic.secondary.button:hover { background: var(--color-hover) !important; } + +// settings button in org team settings +.ui.teal.labels .label, .ui.ui.ui.teal.label, .ui.teal.button, .ui.teal.buttons .button { + background: var(--color-green); + color: #fff !important; +}