From 8fb6ad6f6ec40cb4cab5a4b84cf5c8dc8cc8c7b5 Mon Sep 17 00:00:00 2001 From: pat-s Date: Sat, 9 Oct 2021 09:29:32 +0300 Subject: [PATCH] dark theme: repo timeline svg icon coloring and warning messages block --- theme-github-dark.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/theme-github-dark.css b/theme-github-dark.css index e8935ce..121eda5 100644 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -329,3 +329,23 @@ textarea, .repo-buttons .ui.labeled.button.disabled>.label { color: #adbac7; } + +/* border color of warning message */ +.ui.warning.message { + background-color: #22272e; + color: var(--color-text); +} +.ui.warning.message, .ui.attached.warning.message { + box-shadow: null; +} +.ui.warning.message, .ui.attached.warning.message { + box-shadow: 0 0 0 0px #c9ba9b inset, 0 0 #0000; +} + +/* repo svg icons */ +.repository.view.issue .comment-list .timeline-item .badge .svg { + fill: black; +} +.repository.view.issue .comment-list .timeline-item .badge.badge-commit { + background: radial-gradient(var(--color-timeline) 40%,transparent 40%) no-repeat; +}