fix(dashboard): weather widget white-on-white in light mode
This commit is contained in:
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.29.3] - 2026-04-28
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Dashboard: weather widget background gradient was overridden by the higher-specificity `.dashboard .widget { background: var(--color-surface) }` rule, causing white text on a white background in light mode
|
||||||
|
|
||||||
## [0.29.2] - 2026-04-28
|
## [0.29.2] - 2026-04-28
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "oikos",
|
"name": "oikos",
|
||||||
"version": "0.29.2",
|
"version": "0.29.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "oikos",
|
"name": "oikos",
|
||||||
"version": "0.29.2",
|
"version": "0.29.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcrypt": "^6.0.0",
|
"bcrypt": "^6.0.0",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "oikos",
|
"name": "oikos",
|
||||||
"version": "0.29.2",
|
"version": "0.29.3",
|
||||||
"description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.",
|
"description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.",
|
||||||
"main": "server/index.js",
|
"main": "server/index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -2278,6 +2278,10 @@
|
|||||||
|
|
||||||
.dashboard .weather-widget {
|
.dashboard .weather-widget {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
|
||||||
|
color: var(--color-text-on-accent);
|
||||||
|
border-color: transparent;
|
||||||
|
box-shadow: var(--shadow-md);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dashboard .weather-widget__refresh {
|
.dashboard .weather-widget__refresh {
|
||||||
|
|||||||
Reference in New Issue
Block a user