From 5bd38819682d40421166d6ebc15e7346e9ade690 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Thu, 29 Jul 2021 22:41:53 +0000
Subject: [PATCH] [map] Allow zero-prefixed stop identifiers (fix for bus stops)
---
index.css | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/index.css b/index.css
index bca5873..522cc9a 100644
--- a/index.css
+++ b/index.css
@@ -34,10 +34,18 @@
font-size: inherit;
}
+h2#times-stop {
+ margin-top: 0;
+}
.vehicleInfo {
+ font-size: 21px;
+}
+#times-table .vehicleInfo {
float: right;
margin: -5px 0;
- font-size: 21px;
+}
+#route-vehicle .vehicleInfo {
+ margin-right: .5em;
}
#vehicle-data {
float: right;
@@ -78,6 +86,8 @@
/* Loading animation */
nav.loading {
background-image: -webkit-linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
+ background-image: -moz-linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
+ background-image: -ms-linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
background-image: -o-linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
background-image: linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
-webkit-background-size: 40px 40px;
--
Gitblit v1.9.1