From bd0ba2a120b7a5067c876ce8a5fbd4539132819f Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Wed, 10 Apr 2024 18:44:07 +0200 Subject: train details: indicate on time / delayed time stamps by color also: revert back to showing scheduled time first and real/estimated time next --- sass/app.scss | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'sass/app.scss') diff --git a/sass/app.scss b/sass/app.scss index 767dcad..f24ac9c 100644 --- a/sass/app.scss +++ b/sass/app.scss @@ -618,17 +618,42 @@ div.app { list-style-type: circle; } + .time-early { + color: $early-stop-color; + } + + .time-delayed { + color: $delayed-stop-color; + } + + .time-sched-only { + color: $delayed-stop-color; + } + + .time-sched-ontime { + color: $early-stop-color; + } + + .annotation { color: $fg2; list-style-type: none; padding-left: 3em; } - .sched-delayed:before { + .-sched:before { + content: " "; + } + + .time-sched:after { + content: " "; + } + + .time-sched-only:before { content: "("; } - .sched-delayed:after { + .time-sched-only:after { content: ")"; } -- cgit v1.2.3