Skip to content

Commit

Permalink
disabled-strategy-color
Browse files Browse the repository at this point in the history
  • Loading branch information
icecream17 authored Nov 8, 2024
1 parent 1141870 commit 8e02678
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solver",
"version": "0.36.2",
"version": "0.36.3",
"private": true,
"homepage": "https://icecream17.github.io/solver",
"dependencies": {
Expand Down
5 changes: 4 additions & 1 deletion src/Elems/AsideElems/StrategyList.css
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/Elems/Version.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import StaticComponent from './StaticComponent';
* <Version />
*/
function Version () {
return <span className="Version">v0.36.2</span>
return <span className="Version">v0.36.3</span>
}

export default StaticComponent(Version)

0 comments on commit 8e02678

Please sign in to comment.