From 711793c4708c260585676494fe65cb4084f9e262 Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Mon, 16 Aug 2021 10:18:46 +0100 Subject: [PATCH] Use css variables for badge (#29) --- extensions/lock/less/forum.less | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/extensions/lock/less/forum.less b/extensions/lock/less/forum.less index e8a0866ad..6a838e500 100644 --- a/extensions/lock/less/forum.less +++ b/extensions/lock/less/forum.less @@ -1,7 +1,11 @@ +:root { + --lock-color: #888; +} + .DiscussionLockedPost { .EventPost-icon, .EventPost-info, .EventPost-info a { - color: #888; + color: var(--lock-color); } }