From 9caf12b1fec2c42a2703b65aa162b20d73d0c2b9 Mon Sep 17 00:00:00 2001 From: Vincent Romagnoli Date: Thu, 16 May 2024 18:54:44 +0200 Subject: [PATCH] Fix custom style for link-color. This will change color for: - links () - .btn-text and .btn-link - .nav-tabs and .nav-link --- app/views/shared/_catalog_css.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/shared/_catalog_css.html.erb b/app/views/shared/_catalog_css.html.erb index 85369f857..52df2f6e2 100644 --- a/app/views/shared/_catalog_css.html.erb +++ b/app/views/shared/_catalog_css.html.erb @@ -27,7 +27,7 @@ .item-table td { <%= render('shared/css_properties', stl: catalog.custom_style('item-text')) %> } - a,a:hover,a:visited { + a,a:hover,.btn-text,.btn-text:hover,.btn-link,.btn-link:hover,.nav-tabs .nav-link,.nav-tabs .nav-link:not(.active):hover { color: <%= catalog.custom_style('link-color') %>; }