From ceda742c9ae5a6e10ab06e194df6f7006229786e Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Fri, 3 May 2024 18:35:50 +0100 Subject: [PATCH] Override base styles --- theme-github-dark.css | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/theme-github-dark.css b/theme-github-dark.css index 6247224..c1eda81 100755 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -68,8 +68,6 @@ --color-warning-border: rgba(187, 128, 9, 0.4); --color-warning-text: var(--color-yellow); --color-project-board-bg: var(--color-box-body); - --color-project-board-dark-label: #eee; - --color-project-board-light-label: #111; /* code editor colors are set in https://github.com/go-gitea/gitea/blob/f5b300ea77081a1b78ac044cb1c0f9225538d091/web_src/js/features/codeeditor.js#L82-L97. */ /* monaco editor dark theme is toggled via variable `--is-dark-theme` */ @@ -333,10 +331,11 @@ a.ui.label:hover { background-color: var(--color-header-wrapper) !important; } .project-column-title { - font-weight: 600; + font-weight: 600 !important; + color: var(--color-white) !important; } .project-column-issue-count { - margin-right: 4px; + margin-right: 4px !important; } .issue-card-title { color: var(--color-white) !important; @@ -347,9 +346,9 @@ a.ui.label:hover { } .ui.container .ui.container { margin: 0 !important; - width: 100%; - max-width: unset; - padding-right: 4px; + width: 100% !important; + max-width: unset !important; + padding: 0 4px !important; } .ui.container .ui.container h2 { color: var(--color-white); @@ -397,7 +396,7 @@ a.ui.label:hover { } .ui.label.scope-right { border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; + border-bottom-left-radius: 0 !important; } .ui.label { padding: .3em .8em; @@ -606,8 +605,8 @@ textarea, } .ui.attached.isSigned.isVerified.message { - background-color: var(--color-success-bg); - color: var(--color-white); + background-color: var(--color-success-bg) !important; + color: var(--color-white) !important; border: 1px solid var(--color-primary) !important; }