diff --git a/CHANGELOG.md b/CHANGELOG.md index 7490f4f..50f890c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 1.0.5: 2024-06-23 + +* Force the text fill for number inputs as white instead of using a variable, Finally fixes #5 + ### 1.0.4: 2024-06-23 * Fix text fill color diff --git a/assets/scss/_main.scss b/assets/scss/_main.scss index 6ff6a70..db3a339 100644 --- a/assets/scss/_main.scss +++ b/assets/scss/_main.scss @@ -1577,9 +1577,9 @@ body.wp-admin:not(.gutenberg-editor-page) { // Autocomplete inputs input[type="number"] { /* stylelint-disable-next-line */ - -webkit-text-fill-color: var(--color-white) !important; + -webkit-text-fill-color: #fff !important; /* stylelint-disable-next-line */ - text-fill-color: var(--color-white) !important; + text-fill-color: #fff !important; } .button, diff --git a/package-lock.json b/package-lock.json index 6aa1225..196567e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "simple-dark-mode-for-wp-dashboard", - "version": "1.0.4", + "version": "1.0.5", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 72fdf56..8a6bd48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-dark-mode-for-wp-dashboard", - "version": "1.0.4", + "version": "1.0.5", "description": "The simplest way to make your WordPress Dashboard dark. No settings, just activate the plugin and enjoy the darkness. Tries to follow the WordPress Coding Standards and best practices and be as straightforward as possible.", "author": "Roni Laukkarinen (roni@dude.fi)", "devDependencies": {