From 8fde97131c191d8ecef141085c72313a591c3427 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 10 Jan 2014 09:45:49 -0800 Subject: [PATCH] website/www: fix link styling in lists --- website/www/source/downloads-archive.html.erb | 13 ++++++++++++- website/www/source/stylesheets/_base.less | 18 +++++++++--------- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/website/www/source/downloads-archive.html.erb b/website/www/source/downloads-archive.html.erb index 54359b64e..42a71e5f1 100644 --- a/website/www/source/downloads-archive.html.erb +++ b/website/www/source/downloads-archive.html.erb @@ -14,8 +14,19 @@ download. Some even older versions are available from the legacy downloads page.

+

+The latest version of Vagrant can be found on the +main downloads page. +

+ +<% if $vagrant_versions.length > 1 %> +<% else %> +

+No old Vagrant versions could be found. +

+<% end %> diff --git a/website/www/source/stylesheets/_base.less b/website/www/source/stylesheets/_base.less index f37d8c002..7d5f4ac9b 100644 --- a/website/www/source/stylesheets/_base.less +++ b/website/www/source/stylesheets/_base.less @@ -89,17 +89,17 @@ h6 { p { letter-spacing: 1px; line-height: 32px; +} - a { - color: @docs-blue; +p a, ul li a { + color: @docs-blue; + text-decoration: none; + border-bottom: 1px solid @docs-blue; + + &:hover { text-decoration: none; - border-bottom: 1px solid @docs-blue; - - &:hover { - text-decoration: none; - color: darken(@blue, 10%); - border-bottom: 1px solid darken(@blue, 10%); - } + color: darken(@blue, 10%); + border-bottom: 1px solid darken(@blue, 10%); } }