Francois Gouget : winetest/css: Fix the color of links on index page titles.
Module: tools Branch: master Commit: 3e0d8b17e7054f119b695e46a5df10ca717ffcc8 URL: https://source.winehq.org/git/tools.git/?a=commit;h=3e0d8b17e7054f119b695e46... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Tue Apr 20 16:46:33 2021 +0200 winetest/css: Fix the color of links on index page titles. The color and decorations must be specified for the hover and visited cases too. Also add support for putting links in h2 titles. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- winetest/summary.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/winetest/summary.css b/winetest/summary.css index 2bc9b44..9793cdf 100644 --- a/winetest/summary.css +++ b/winetest/summary.css @@ -27,9 +27,10 @@ h1, h2 { padding: 4px; margin: 0; } -h1 :link { - color: #ffe0e0; -} +h1 :link, h2 :link { color: #ffe0e0; } +h1 a:visited, h2 a:visited { color: #ffe0e0; } +h1 a:hover, h2 a:hover { color: #ffe0e0; text-decoration: underline; } + div.main, div.group { margin: 10px 0 0 0; background-color: white;
participants (1)
-
Alexandre Julliard