hide prev/now/next links on small screens
This commit is contained in:
parent
ffb2523e84
commit
38e03bcc88
1 changed files with 3 additions and 3 deletions
|
@ -93,17 +93,17 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s4 center-align">
|
<div class="col s4 center-align">
|
||||||
% if ($hafas) {
|
% if ($hafas) {
|
||||||
<a class="btn-small" href="<%= url_for('sstation', station => stash('station'))->query({hafas => 1, timestamp => $datetime->clone->subtract(hours => 1)->epoch}) %>"><i class="material-icons left" aria-hidden="true">chevron_left</i>früher</a>
|
<a class="btn-small" href="<%= url_for('sstation', station => stash('station'))->query({hafas => 1, timestamp => $datetime->clone->subtract(hours => 1)->epoch}) %>"><i class="material-icons left" aria-hidden="true">chevron_left</i><span class="hide-on-small-only">früher</span></a>
|
||||||
% }
|
% }
|
||||||
</div>
|
</div>
|
||||||
<div class="col s4 center-align">
|
<div class="col s4 center-align">
|
||||||
% if ($now_in_range) {
|
% if ($now_in_range) {
|
||||||
<a class="btn-small" href="#now"><i class="material-icons left" aria-hidden="true">vertical_align_center</i>Jetzt</a>
|
<a class="btn-small" href="#now"><i class="material-icons left" aria-hidden="true">vertical_align_center</i><span class="hide-on-small-only">Jetzt</span></a>
|
||||||
% }
|
% }
|
||||||
</div>
|
</div>
|
||||||
<div class="col s4 center-align">
|
<div class="col s4 center-align">
|
||||||
% if ($hafas) {
|
% if ($hafas) {
|
||||||
<a class="btn-small" href="<%= url_for('sstation', station => stash('station'))->query({hafas => 1, timestamp => $datetime->clone->add(hours => 1)->epoch}) %>">später<i class="material-icons right" aria-hidden="true">chevron_right</i></a>
|
<a class="btn-small" href="<%= url_for('sstation', station => stash('station'))->query({hafas => 1, timestamp => $datetime->clone->add(hours => 1)->epoch}) %>"><span class="hide-on-small-only">später</span><i class="material-icons right" aria-hidden="true">chevron_right</i></a>
|
||||||
% }
|
% }
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue