mirror of
https://codeberg.org/kbruen/kai.infotren.git
synced 2025-02-22 17:19:37 +02:00
Fix a.no-custom-a
This commit is contained in:
parent
86b2caf6e9
commit
c231586b6d
2 changed files with 5 additions and 5 deletions
8
base.css
8
base.css
|
@ -162,7 +162,7 @@ p, ul {
|
||||||
margin: 0 8px;
|
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-size: 17px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
@ -199,18 +199,18 @@ li.items:not(.disabled):hover:not(:focus) {
|
||||||
background-color: lightskyblue;
|
background-color: lightskyblue;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:not(.no-a-custom) {
|
a:not(.no-a-custom):not(.no-custom-a) {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.no-a-custom {
|
a.no-a-custom, a.no-custom-a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: inherit;
|
text-decoration: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.inline:not(.no-a-custom) {
|
a.inline:not(.no-a-custom):not(.no-custom-a) {
|
||||||
display: inline;
|
display: inline;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
2
sw.js
2
sw.js
|
@ -1,4 +1,4 @@
|
||||||
const VERSION = 'v26'
|
const VERSION = 'v27'
|
||||||
const API_ORIGIN = 'https://scraper.infotren.dcdev.ro/'
|
const API_ORIGIN = 'https://scraper.infotren.dcdev.ro/'
|
||||||
const API_TRAINS = `${API_ORIGIN}v3/trains`
|
const API_TRAINS = `${API_ORIGIN}v3/trains`
|
||||||
const API_STATIONS = `${API_ORIGIN}v3/stations`
|
const API_STATIONS = `${API_ORIGIN}v3/stations`
|
||||||
|
|
Loading…
Add table
Reference in a new issue