From 7e48f2e63f827cba3ee62105b76317d126efdee4 Mon Sep 17 00:00:00 2001 From: Udit Patel Date: Fri, 15 Jun 2018 10:34:43 +0530 Subject: [PATCH] Design Bug in light theme Background Color and Text-selection-color is same so when we select text for copy or something.. For example in white background white text became invisible.. To fix this problem i change the selection text color to red so when anyone select the text in light theme they see text in red color when they select the text.. --- static/themes/light.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/themes/light.css b/static/themes/light.css index 052bf632f..7b428512d 100644 --- a/static/themes/light.css +++ b/static/themes/light.css @@ -1 +1,6 @@ -:root {} +:root { + + /* Text */ +--text-selection-color: var(--color-red); + +} -- 2.45.3