From 8e02678c02d49dcfdc4db10c3e52f5affb717a24 Mon Sep 17 00:00:00 2001 From: icecream17 Date: Fri, 8 Nov 2024 14:34:51 -0600 Subject: [PATCH] disabled-strategy-color --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/Elems/AsideElems/StrategyList.css | 5 ++++- src/Elems/Version.tsx | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37d0c843..5074274f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ Note: Many earlier versions are not specified, that's too much work. When a `@types` dependency updates, they almost always don't affect anything. +## v0.36.3 + +- (css) Fix strategy disable not changing link color + slightly more accessible disabled color + ## v0.36.2 - (code) Use new Set methods, simplifies code. This shouldn't break support for old browsers. diff --git a/package.json b/package.json index fdcedd9c..e55ab14c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "solver", - "version": "0.36.2", + "version": "0.36.3", "private": true, "homepage": "https://icecream17.github.io/solver", "dependencies": { diff --git a/src/Elems/AsideElems/StrategyList.css b/src/Elems/AsideElems/StrategyList.css index 62faed9d..ec0729d4 100644 --- a/src/Elems/AsideElems/StrategyList.css +++ b/src/Elems/AsideElems/StrategyList.css @@ -34,7 +34,10 @@ /* Disabled strategy item */ .StrategyItem.disabled { - color: rgb(170, 170, 170); + color: #bbb; + --link-color: #abb8e8; + --link-visited-color: #c1b6c9; + --link-active-color: #df8367; } .StrategyItem.disabled:nth-child(odd) { diff --git a/src/Elems/Version.tsx b/src/Elems/Version.tsx index 27374702..a8703312 100644 --- a/src/Elems/Version.tsx +++ b/src/Elems/Version.tsx @@ -9,7 +9,7 @@ import StaticComponent from './StaticComponent'; * */ function Version () { - return v0.36.2 + return v0.36.3 } export default StaticComponent(Version)