diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-05-09 01:52:29 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-09 21:20:25 +0100 |
commit | ee11af8e9e6d2d5a71dd5e162126d17b28b8e316 (patch) | |
tree | cb0dd3bc5fa27b76d50aebe7ef601c14e4960770 | |
parent | Remove references to website assets (diff) | |
download | gentoobrowse-api-ee11af8e9e6d2d5a71dd5e162126d17b28b8e316.tar.bz2 gentoobrowse-api-ee11af8e9e6d2d5a71dd5e162126d17b28b8e316.tar.xz gentoobrowse-api-ee11af8e9e6d2d5a71dd5e162126d17b28b8e316.zip |
Render dots between links with CSS
Prevents text version looking all weird with links render LIs with their own dots
-rw-r--r-- | gentoobrowse-api/service/notifications/xslt/base.xslt | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gentoobrowse-api/service/notifications/xslt/base.xslt b/gentoobrowse-api/service/notifications/xslt/base.xslt index b78e643..fe45cba 100644 --- a/gentoobrowse-api/service/notifications/xslt/base.xslt +++ b/gentoobrowse-api/service/notifications/xslt/base.xslt @@ -60,6 +60,7 @@ section>.page-header{color:#5a5a5a} .footer{padding-top:20px;padding-bottom:20px} } a{cursor:pointer} +ul.footer-links li::before, ul.footer-links li:last-child::after {content:'·';color:#999} </style> <title><xsl:call-template name="title" /></title> </head> @@ -95,25 +96,15 @@ a{cursor:pointer} <p>Gentoo Browse is not an official Gentoo website. The name "Gentoo" and the "g" logo are trademarks of the Gentoo Foundation, Inc.</p> <p>Many thanks to the people behind the tech powering Gentoo Browse.</p> <ul class="footer-links"> - <li class="muted">·</li> <li><a href="http://www.gentoo.org/">Gentoo</a></li> - <li class="muted">·</li> <li><a href="http://www.postgresql.org/">PostgreSQL</a></li> - <li class="muted">·</li> <li><a href="http://httpd.apache.org/">Apache</a></li> - <li class="muted">·</li> <li><a href="http://www.fastcgi.com/drupal/">FastCGI</a></li> - <li class="muted">·</li> <li><a href="http://www.w3.org/TR/xslt/">XSLT</a></li> - <li class="muted">·</li> <li><a href="http://www.boost.org/">Boost</a></li> - <li class="muted">·</li> <li><a href="https://zeroc.com/products/ice">ZeroC Ice</a></li> - <li class="muted">·</li> <li><a href="http://twitter.github.com/bootstrap/index.html">Bootstrap</a></li> - <li class="muted">·</li> <li><a href="http://icespider.randomdan.homeip.net/">IceSpider</a></li> - <li class="muted">·</li> </ul> </div> </footer> |