From 9048d13f5fbd7f4573bff94ca9d00be006626af8 Mon Sep 17 00:00:00 2001 From: Alex Simons Date: Sat, 19 Jun 2021 19:30:37 -0500 Subject: [PATCH] Firefox Option Font Enhancement (#48) * Changing option color to theme * Updated default font and updated changelog * Updated version in firefox manifest --- CHANGELOG.md | 4 ++++ firefoxThemes/README.md | 1 + firefoxThemes/manifest.json | 2 +- firefoxThemes/package.json | 2 +- firefoxThemes/popup/popup.css | 2 +- firefoxThemes/popup/popup.js | 5 +++++ getMasterThemes.sh | 0 7 files changed, 13 insertions(+), 3 deletions(-) mode change 100644 => 100755 getMasterThemes.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index fca8ac73..eb3f0b52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog # Unreleased +# 11.0.1 [FireFox Updates] + +- Updated the default option foreground color. + # 11.0.0 [Hanekawa, Shima Rin, Nagatoro, Yumeko, & Yuno] ## 5 New Themes diff --git a/firefoxThemes/README.md b/firefoxThemes/README.md index 29337d54..58820a68 100644 --- a/firefoxThemes/README.md +++ b/firefoxThemes/README.md @@ -3,6 +3,7 @@ ## Prerequisites - [Yarn Package Manager](https://classic.yarnpkg.com/en/docs/install/#debian-stable) +- Node 14 - [Firefox web browser](https://www.mozilla.org/en-US/firefox/new/) ## First time setup diff --git a/firefoxThemes/manifest.json b/firefoxThemes/manifest.json index f9ce9ad5..b77c99f1 100644 --- a/firefoxThemes/manifest.json +++ b/firefoxThemes/manifest.json @@ -1,7 +1,7 @@ { "name": "Doki Theme: Firefox Edition", "short_name": "Doki Theme", - "version": "11.0.0", + "version": "11.0.1", "description": "A theme collection of girls from various anime, manga, and visual novels series.", "manifest_version": 2, "icons": { diff --git a/firefoxThemes/package.json b/firefoxThemes/package.json index 09832965..c0715bff 100644 --- a/firefoxThemes/package.json +++ b/firefoxThemes/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-firefox", - "version": "11.0.0", + "version": "11.0.1", "description": "A theme collection of girls from various anime, manga, and visual novels series.", "main": "index.js", "repository": "https://github.com/doki-theme/doki-theme-web", diff --git a/firefoxThemes/popup/popup.css b/firefoxThemes/popup/popup.css index 41728bd7..e96f87e3 100644 --- a/firefoxThemes/popup/popup.css +++ b/firefoxThemes/popup/popup.css @@ -73,7 +73,7 @@ img { /*Waifu Option Styles*/ option { - color: midnightblue; + color: #47494b; } option[value=mixed] { diff --git a/firefoxThemes/popup/popup.js b/firefoxThemes/popup/popup.js index feecc691..c7b30fb1 100644 --- a/firefoxThemes/popup/popup.js +++ b/firefoxThemes/popup/popup.js @@ -25,6 +25,7 @@ function setCss(chosenTheme) { color: ${colors.infoForeground}; } + * { color: ${colors.lineNumberColor}; } @@ -42,6 +43,10 @@ select { color: ${colors.buttonFont}; } +option { + color: ${colors.buttonFont}; +} + .popup-body { background-color: ${colors.baseBackground}; } diff --git a/getMasterThemes.sh b/getMasterThemes.sh old mode 100644 new mode 100755