From 40cbb6ee34e9d961b7d039c341f4df3eedeb474d Mon Sep 17 00:00:00 2001 From: Fatimah Date: Wed, 14 Feb 2024 11:38:05 +0100 Subject: [PATCH] ui: added class for text color --- .../invenio_communities/community_theme_template.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/invenio_communities/templates/semantic-ui/invenio_communities/community_theme_template.css b/invenio_communities/templates/semantic-ui/invenio_communities/community_theme_template.css index bc029a73c..8e7446fbf 100644 --- a/invenio_communities/templates/semantic-ui/invenio_communities/community_theme_template.css +++ b/invenio_communities/templates/semantic-ui/invenio_communities/community_theme_template.css @@ -12,7 +12,7 @@ color: {{ theme.secondaryTextColor }} !important; } -.theme-primary a, .theme-primary h1, .theme-primary h2 { +.theme-primary a, .theme-primary h1, .theme-primary h2, .theme-primary p { color: {{ theme.primaryTextColor }} !important; } @@ -34,6 +34,10 @@ background-color: {{ theme.primaryColor }} !important; } +.theme-primary-text a { + color: {{ theme.primaryColor }} !important; +} + .theme-tertiary, .ui.tertiary.button { background-color: {{ theme.tertiaryColor }} !important; color: {{ theme.tertiaryTextColor }};