From c231586b6d78035d2c2d7b1434ea73740d4810f7 Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Sat, 31 Dec 2022 13:57:20 +0200 Subject: [PATCH] Fix a.no-custom-a --- base.css | 8 ++++---- sw.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base.css b/base.css index e5cb1b9..af3c83c 100644 --- a/base.css +++ b/base.css @@ -162,7 +162,7 @@ p, ul { margin: 0 8px; } -p.link, a:not(.no-a-custom) { +p.link, a:not(.no-a-custom):not(.no-custom-a) { font-size: 17px; font-weight: 700; } @@ -199,18 +199,18 @@ li.items:not(.disabled):hover:not(:focus) { background-color: lightskyblue; } -a:not(.no-a-custom) { +a:not(.no-a-custom):not(.no-custom-a) { display: block; padding: 8px; color: black; } -a.no-a-custom { +a.no-a-custom, a.no-custom-a { color: inherit; text-decoration: inherit; } -a.inline:not(.no-a-custom) { +a.inline:not(.no-a-custom):not(.no-custom-a) { display: inline; padding: 2px; } diff --git a/sw.js b/sw.js index e565c6a..bf32fe0 100755 --- a/sw.js +++ b/sw.js @@ -1,4 +1,4 @@ -const VERSION = 'v26' +const VERSION = 'v27' const API_ORIGIN = 'https://scraper.infotren.dcdev.ro/' const API_TRAINS = `${API_ORIGIN}v3/trains` const API_STATIONS = `${API_ORIGIN}v3/stations`