From 4dc96e204fa2d462fc60ab6bd8f3ff759b0f2646 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 9 Feb 2023 12:46:45 +0100 Subject: [PATCH] UI: Remove custom color styling on labels Thanks to a patch upstream labels in tabs are no longer marked as "primary". --- public/css/theme-bthree-dark.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/public/css/theme-bthree-dark.css b/public/css/theme-bthree-dark.css index 21f9760..38be4f9 100644 --- a/public/css/theme-bthree-dark.css +++ b/public/css/theme-bthree-dark.css @@ -115,11 +115,11 @@ --color-purple: hsl(285, 55.9%, 58%); --color-purple-light: hsl(285, 55.6%, 52%); --color-pink: hsl(326, 64.6%, 50.2%); - --color-grey: hsl(220, 6.6%, 64.3%); --color-pink-light: hsl(326, 64.5%, 45%); --color-brown: hsl(23.4, 33%, 48%); --color-brown-light: hsl(23.5, 33%, 43%); - --color-grey-light: hsl(213, 12%, 20%); + --color-grey: hsl(213, 12%, 30%); + --color-grey-light: hsl(213, 12%, 40%); --color-black: hsl(213, 21%, 15%); --color-black-light: hsl(223, 20%, 13%); --color-gold: hsl(47, 50%, 46.3%); @@ -350,8 +350,7 @@ strong, b, h1, h2, h3, h4, h5, h6, /* Labels. e.g. issues count indicator in repo tabs. */ .ui.small.label { - background-color: var(--color-label-primary-bg) !important; - border-radius: 999em; + border-radius: 2em; } /* Top navigation bar. @@ -365,6 +364,10 @@ strong, b, h1, h2, h3, h4, h5, h6, display: none; } +.ui.menu .item>.label { + color: var(--color-label-text); +} + .following.bar #navbar { min-height: 45px; }