diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-11-21 14:10:35 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-11-21 14:10:35 +0100 |
commit | 3f17d35c506bd7784f475708765493c1148609c0 (patch) | |
tree | 7b6526a49c754d064462c2fafe459a99aa739f42 | |
parent | 904f5e34fbd3876b122b0842f74d332f4de5a287 (diff) | |
download | jenkins.debian.net-3f17d35c506bd7784f475708765493c1148609c0.tar.xz |
reproducible: use bold font instead of underlines to indicate packages with notes
-rwxr-xr-x | bin/reproducible_common.sh | 2 | ||||
-rw-r--r-- | userContent/static/style.css | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 6f1324d2..f90cd7fe 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -229,7 +229,7 @@ write_page_footer() { } write_page_meta_sign() { - write_page "<p style=\"font-size:0.9em;\">An underlined package is an indication that this package has a note. Visited packages are linked in green, those which have not been visited are linked in blue." + write_page "<p style=\"font-size:0.9em;\">A package name displayed with a bold font is an indication that this package has a note. Visited packages are linked in green, those which have not been visited are linked in blue." if $BUILDINFO_ON_PAGE ; then write_page "A β sign after a package which is unreproducible indicates that a .buildinfo file was generated." write_page "And that means the <a href=\"https://wiki.debian.org/ReproducibleBuilds#The_basics_for_making_packages_build_reproducible\">basics for building packages reproducibly are covered</a>." diff --git a/userContent/static/style.css b/userContent/static/style.css index 1c836fd7..891aa131 100644 --- a/userContent/static/style.css +++ b/userContent/static/style.css @@ -47,7 +47,7 @@ a, a.package { a.noted { color:#0088cc; - text-decoration:underline; + font-weight: bold; } a:hover, a:focus, a.package:hover, a.package:focus { @@ -57,7 +57,8 @@ a:hover, a:focus, a.package:hover, a.package:focus { a.noted:hover, a.noted:focus { color:#005580; - text-decoration:none; + text-decoration:underline; + font-weight: bold; } a.package:visited, a.noted:visited { |