_content: fix for links to have underline on keyboard focus

Change-Id: I373e92ffe1f245eb0bd5b696d9885fe290f1b326
Reviewed-on: https://go-review.googlesource.com/c/website/+/506676
Run-TryBot: Jamal Carvalho <jamal@golang.org>
Reviewed-by: Jamal Carvalho <jamal@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Prudhvi Krishna Chintala <prudhvikrishna@google.com>
Auto-Submit: Jamal Carvalho <jamal@golang.org>
This commit is contained in:
prudhvikrishna 2023-06-27 11:50:41 -07:00 коммит произвёл Gopher Robot
Родитель b424f0c6d0
Коммит 60cac895de
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -269,7 +269,8 @@ a:visited {
color: var(--color-text-link);
text-decoration: none;
}
a:hover {
a:hover,
a:focus {
text-decoration: underline;
}
.Site {
@ -978,6 +979,9 @@ h1 + h2.subtitle {
a.BreadcrumbNav-link {
font-size: 0.875rem;
text-decoration: none;
&:hover, &:focus {
text-decoration: underline;
}
}
.BreadcrumbNav-li:last-child {
padding-right: 0.812rem;
@ -1912,6 +1916,10 @@ a.WhoUsesCaseStudy-librariesViewMoreLink {
display: flex;
font-size: 0.875rem;
text-decoration: none;
&:hover,
&:focus {
text-decoration: underline;
}
}
.WhyGo-reasonPackages {
color: var(--color-text);
@ -2961,6 +2969,9 @@ a.WhoUsesCaseStudy-librariesViewMoreLink {
display: flex;
margin-top: 1rem;
text-decoration: none;
&:hover, &:focus {
text-decoration: underline;
}
}
.Solutions-headlineBody a i,
.WhyGo-reasonLearnMoreLink a i,
@ -3073,7 +3084,8 @@ a.WhoUsesCaseStudy-librariesViewMoreLink {
border: var(--border);
border-radius: 0.25rem;
}
.MarketingCard a:hover {
.MarketingCard a:hover,
.MarketingCard a:focus {
text-decoration: none;
}
.MarketingCard-section {