mirror of
https://codeberg.org/kbruen/kai.infotren.git
synced 2025-06-19 10:42:30 +03:00
Compare commits
2 commits
c180e56584
...
1078807875
Author | SHA1 | Date | |
---|---|---|---|
1078807875 | |||
32facdbd72 |
2 changed files with 21 additions and 3 deletions
22
base.css
22
base.css
|
@ -77,7 +77,7 @@ header {
|
|||
left: env(titlebar-area-x, 0);
|
||||
top: env(titlebar-area-y, 0);
|
||||
width: env(titlebar-area-width, 100%);
|
||||
height: env(titlebar-area-height, 36px);
|
||||
min-height: env(titlebar-area-height, 36px);
|
||||
-webkit-app-region: drag;
|
||||
app-region: drag;
|
||||
|
||||
|
@ -88,7 +88,9 @@ header {
|
|||
}
|
||||
|
||||
.header-placeholder {
|
||||
margin-top: env(titlebar-area-height, 36px);
|
||||
box-sizing: border-box;
|
||||
height: max(env(titlebar-area-height, 36px), 42px);
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
header.embedded {
|
||||
|
@ -96,12 +98,28 @@ header.embedded {
|
|||
color: white;
|
||||
}
|
||||
|
||||
.header.embedded .IC {
|
||||
color: #00ee00 !important;
|
||||
}
|
||||
|
||||
.header.embedded .IR, .header.embedded .IRN {
|
||||
color: #ffaaaa !important;
|
||||
}
|
||||
|
||||
@media (display-mode: window-controls-overlay) {
|
||||
header {
|
||||
background-color: #0000ff;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header .IC {
|
||||
color: #00ee00 !important;
|
||||
}
|
||||
|
||||
.header .IR, .header .IRN {
|
||||
color: #ffaaaa !important;
|
||||
}
|
||||
|
||||
header .back {
|
||||
-webkit-app-region: no-drag;
|
||||
app-region: no-drag;
|
||||
|
|
2
sw.js
2
sw.js
|
@ -1,4 +1,4 @@
|
|||
const VERSION = 'v30'
|
||||
const VERSION = 'v32'
|
||||
const API_ORIGIN = 'https://scraper.infotren.dcdev.ro/'
|
||||
const API_TRAINS = `${API_ORIGIN}v3/trains`
|
||||
const API_STATIONS = `${API_ORIGIN}v3/stations`
|
||||
|
|
Loading…
Add table
Reference in a new issue