From 9b6efdb7df4a93b9d40b567053830c9194c0d473 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 20 May 2015 14:11:46 +0200 Subject: do not strike through cancelled trains, mark them yellow-ish instead --- public/default.css | 8 ++------ templates/clean.html.ep | 9 ++++++--- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/public/default.css b/public/default.css index 2ddb687..c7159a4 100644 --- a/public/default.css +++ b/public/default.css @@ -175,15 +175,12 @@ div.displayclean li .dest { overflow: hidden; } -div.displayclean li .cancelled { - text-decoration: line-through; - text-decoration-color: red; - -moz-text-decoration-color: red; +div.displayclean li.cancelled { + background-color: #ffe7d0; } div.displayclean li .countdown { color: #000000; - background-color: #f8f8f8; font-size: 3em; position: absolute; right: 5px; @@ -234,7 +231,6 @@ div.displayclean li .countdown .platform { div.displayclean li .time { color:#000000; - background-color: #f8f8f8; font-size:2.4em; position:absolute; right:5px; diff --git a/templates/clean.html.ep b/templates/clean.html.ep index 8ee8173..0bbdf54 100644 --- a/templates/clean.html.ep +++ b/templates/clean.html.ep @@ -16,13 +16,16 @@ % my $extraclasses = q{}; % if ($departure->{is_cancelled}) { % $extraclasses .= ' cancelled'; +
  • +% } +% else { +
  • % } -
  • % my $linetype = q{}; % if ( $departure->{train_type} eq 'S' ) { % $linetype = 'sbahn'; % } - + % if ($departure->{train_type} and $departure->{train_no}) { %= $departure->{train_type} % } @@ -143,7 +146,7 @@ %= $departure->{destination} - + % if ($departure->{delay} and not $departure->{is_cancelled}) { % if ($show_realtime) { % if ($departure->{delay} > 0) { -- cgit v1.2.3