Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Site][Accessibility] Update link indicators to underline on hover #5374

Merged
merged 8 commits into from
Feb 22, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<img src="<%- url_for('content/adaptive-cards-100.png') %>" alt="Adaptive Cards logo"
class="w3-image" style="width: 75px; margin-right: 6px" />
<span class="w3-large brand">Adaptive Cards</span>
<p>Homepage design inspired by <a href="https://storybook.js.org">Storybook.js</a>.
Site powered by <a href="https://hexo.io">Hexo</a>.</p>
<p>Homepage design inspired by <a class="ac-footer-link-no-chevron" href="https://storybook.js.org">Storybook.js</a>.
Site powered by <a class="ac-footer-link-no-chevron" href="https://hexo.io">Hexo</a>.</p>
<p class="w3-small build-date">Build date: <%= new Date().toLocaleDateString() %></p>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,6 @@ dir {

.homepage a:hover {
color: blue;
text-decoration: none;
}

/* .fa-chevron-right {
Expand Down Expand Up @@ -668,7 +667,10 @@ dir {

.ac-footer a:hover {
color: #6b6b6b;
text-decoration: none;
}

.ac-footer-link-no-chevron{
color: #0b78d0!important;
}

.ac-footer .post-subtitle {
Expand Down