Improve screen layout for themes + Radar layout adjustments
This commit is contained in:
parent
fb056f4876
commit
fef73485dd
8 changed files with 52 additions and 11 deletions
|
|
@ -45,11 +45,15 @@ class CurrentWeather extends WeatherDisplay {
|
||||||
const wind = this.data.WindSpeed > 0
|
const wind = this.data.WindSpeed > 0
|
||||||
? this.data.WindDirection.padEnd(3, '') + this.data.WindSpeed.toString().padStart(3, ' ')
|
? this.data.WindDirection.padEnd(3, '') + this.data.WindSpeed.toString().padStart(3, ' ')
|
||||||
: 'Calm';
|
: 'Calm';
|
||||||
|
const isDefaultTheme = (document.documentElement.dataset.theme ?? 'default') === 'default';
|
||||||
|
const windText = !isDefaultTheme && this.data.WindGust > 0
|
||||||
|
? `${wind} - Gusts to ${this.data.WindGust}`
|
||||||
|
: wind;
|
||||||
|
|
||||||
const fill = {
|
const fill = {
|
||||||
temp: this.data.Temperature + String.fromCharCode(176),
|
temp: this.data.Temperature + String.fromCharCode(176),
|
||||||
condition,
|
condition,
|
||||||
wind,
|
wind: windText,
|
||||||
location: this.data.city.substr(0, 20),
|
location: this.data.city.substr(0, 20),
|
||||||
humidity: `${this.data.Humidity}%`,
|
humidity: `${this.data.Humidity}%`,
|
||||||
dewpoint: this.data.DewPoint + String.fromCharCode(176),
|
dewpoint: this.data.DewPoint + String.fromCharCode(176),
|
||||||
|
|
@ -59,7 +63,7 @@ class CurrentWeather extends WeatherDisplay {
|
||||||
icon: { type: 'img', src: this.data.Icon },
|
icon: { type: 'img', src: this.data.Icon },
|
||||||
};
|
};
|
||||||
|
|
||||||
if (this.data.WindGust > 0) fill['wind-gusts'] = `Gusts to ${this.data.WindGust}`;
|
if (isDefaultTheme && this.data.WindGust > 0) fill['wind-gusts'] = `Gusts to ${this.data.WindGust}`;
|
||||||
|
|
||||||
const area = this.elem.querySelector('.main');
|
const area = this.elem.querySelector('.main');
|
||||||
area.innerHTML = '';
|
area.innerHTML = '';
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,7 @@ const getThemeAssetUrl = (themeName, assetKey) => {
|
||||||
const applyTheme = (themeName) => {
|
const applyTheme = (themeName) => {
|
||||||
const selectedTheme = getAvailableThemes().includes(themeName) ? themeName : DEFAULT_THEME;
|
const selectedTheme = getAvailableThemes().includes(themeName) ? themeName : DEFAULT_THEME;
|
||||||
localStorage.setItem(THEME_STORAGE_KEY, selectedTheme);
|
localStorage.setItem(THEME_STORAGE_KEY, selectedTheme);
|
||||||
|
document.documentElement.dataset.theme = selectedTheme;
|
||||||
|
|
||||||
document.documentElement.style.setProperty('--theme-background-1', `url('${getThemeAssetUrl(selectedTheme, 'background1')}')`);
|
document.documentElement.style.setProperty('--theme-background-1', `url('${getThemeAssetUrl(selectedTheme, 'background1')}')`);
|
||||||
document.documentElement.style.setProperty('--theme-background-1-chart', `url('${getThemeAssetUrl(selectedTheme, 'background1Chart')}')`);
|
document.documentElement.style.setProperty('--theme-background-1-chart', `url('${getThemeAssetUrl(selectedTheme, 'background1Chart')}')`);
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
&.right {
|
&.right {
|
||||||
right: 0px;
|
right: 0px;
|
||||||
font-family: "Star4000 Large";
|
font-family: "Star4000 Large";
|
||||||
font-size: 20px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
|
||||||
|
|
@ -93,3 +93,34 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:root[data-theme]:not([data-theme='default']) {
|
||||||
|
.weather-display .main.current-weather {
|
||||||
|
&.main {
|
||||||
|
.col {
|
||||||
|
&.left {
|
||||||
|
margin-top: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.right {
|
||||||
|
margin-top: 36px;
|
||||||
|
padding: 21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.wind-container {
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
&>div {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wind {
|
||||||
|
text-align: right;
|
||||||
|
font-size: 22px;
|
||||||
|
display: contents;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -23,4 +23,8 @@
|
||||||
min-height: 280px;
|
min-height: 280px;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:root[data-theme]:not([data-theme='default']) .weather-display .local-forecast .forecasts {
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -49,9 +49,10 @@
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
display: block;
|
display: block;
|
||||||
border: 2px solid black;
|
border: 2.7px solid #000;
|
||||||
width: 100%;
|
width: 90%;
|
||||||
height: 22px;
|
height: 12px;
|
||||||
|
margin-top: 4px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -97,7 +98,7 @@
|
||||||
top: -20px;
|
top: -20px;
|
||||||
font-family: 'Star4000 Small';
|
font-family: 'Star4000 Small';
|
||||||
font-size: 18pt;
|
font-size: 18pt;
|
||||||
left: 130px;
|
left: 132px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
server/styles/ws.min.css
vendored
2
server/styles/ws.min.css
vendored
File diff suppressed because one or more lines are too long
|
|
@ -39,4 +39,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<div class="box box-3"></div>
|
<div class="box box-3"></div>
|
||||||
<div class="label">LT RN</div>
|
<div class="label">LTRN</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<div class="box box-4"></div>
|
<div class="box box-4"></div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue