Skip to content

Commit

Permalink
Fix passive gestures and resolve accessibility issues (#588)
Browse files Browse the repository at this point in the history
* Fix passive gestures and resolve accessibility issues

* Fix typos

* Fix styling of links in FAQ
  • Loading branch information
TimvdLippe authored Jan 28, 2018
1 parent 2e555a9 commit 78b1449
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
14 changes: 9 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
-->

<!doctype html>
<html lang="">
<html lang="en">

<head>
<meta charset="utf-8">
Expand Down Expand Up @@ -175,10 +175,14 @@

<!-- Nav on mobile: side nav menu -->
<app-toolbar>
<paper-icon-button class="menu-button" icon="menu" drawer-toggle></paper-icon-button>

<a href="/">
<img class="headerLogo" height="32" width="200" src="images-optimized/lancie/logo_without_date.png" />
<paper-icon-button class="menu-button" icon="menu" drawer-toggle aria-label="Drawer navigation menu"></paper-icon-button>

<a href="/" aria-label="Homepage">
<img
class="headerLogo"
height="32" width="200"
src="images-optimized/lancie/logo_without_date.png"
alt="Area FiftyLAN logo" />
</a>

<nav class="navigation-tabs">
Expand Down
5 changes: 5 additions & 0 deletions src/index-imports.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<link rel="import" href="../bower_components/polymer/polymer.html">
<script>
Polymer.setPassiveTouchGestures(true);
</script>

<link rel="import" href="../bower_components/app-layout/app-toolbar/app-toolbar.html">
<link rel="import" href="../bower_components/app-layout/app-scroll-effects/effects/waterfall.html">
<link rel="import" href="../bower_components/app-layout/app-header-layout/app-header-layout.html">
Expand Down
6 changes: 3 additions & 3 deletions src/lancie-faq/lancie-faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
display: block;
}

.markdown-html a {
color: rgba(255, 255, 255, 0.87);
marked-element a {
color: var(--secondary-color);
}
</style>

Expand All @@ -32,7 +32,7 @@
on-error="onError"></iron-ajax>

<marked-element markdown="[[text]]">
<div class="markdown-html"></div>
<div slot="markdown-html"></div>
</marked-element>

</template>
Expand Down

0 comments on commit 78b1449

Please sign in to comment.