Compare commits

...

2 commits

Author SHA1 Message Date
1078807875
Fix colors in embedded header 2023-01-23 05:11:09 +01:00
32facdbd72
Fix header placeholder size 2023-01-23 05:03:08 +01:00
2 changed files with 21 additions and 3 deletions

View file

@ -77,7 +77,7 @@ header {
left: env(titlebar-area-x, 0); left: env(titlebar-area-x, 0);
top: env(titlebar-area-y, 0); top: env(titlebar-area-y, 0);
width: env(titlebar-area-width, 100%); width: env(titlebar-area-width, 100%);
height: env(titlebar-area-height, 36px); min-height: env(titlebar-area-height, 36px);
-webkit-app-region: drag; -webkit-app-region: drag;
app-region: drag; app-region: drag;
@ -88,7 +88,9 @@ header {
} }
.header-placeholder { .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 { header.embedded {
@ -96,12 +98,28 @@ header.embedded {
color: white; color: white;
} }
.header.embedded .IC {
color: #00ee00 !important;
}
.header.embedded .IR, .header.embedded .IRN {
color: #ffaaaa !important;
}
@media (display-mode: window-controls-overlay) { @media (display-mode: window-controls-overlay) {
header { header {
background-color: #0000ff; background-color: #0000ff;
color: white; color: white;
} }
.header .IC {
color: #00ee00 !important;
}
.header .IR, .header .IRN {
color: #ffaaaa !important;
}
header .back { header .back {
-webkit-app-region: no-drag; -webkit-app-region: no-drag;
app-region: no-drag; app-region: no-drag;

2
sw.js
View file

@ -1,4 +1,4 @@
const VERSION = 'v30' const VERSION = 'v32'
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`