From 52be3c11ef7eb79312a06a2ba8719bb38f05d176 Mon Sep 17 00:00:00 2001 From: ADITYA VIKRAM Date: Wed, 10 Sep 2025 10:28:34 -0400 Subject: [PATCH 1/6] wording fix in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aafe3c0f..522b0123 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ _**On first login, new user must change password by using the `passwd` command** - ### Using Local Setup - Run `install.ps1` (recommended) or `install.bat` (legacy) or `install.sh` (on linux) to get dependencies set up locally - - `install.ps1` supports performing a clean installation by using the `-CleanInstall` flag. Use this if you encounter a `npm install` failure. Caution: Ensure you have commited/pushed any important changes before running this command. + - `install.ps1` supports performing a clean installation by using the `-CleanInstall` flag. Use this if you encounter a `npm install` failure. **Caution:** Ensure you have commited/pushed any important changes before running this command with the `-CleanInstall` flag. - `install.ps1` also supports skipping initializing the server or the ui, using the `-SkipServer` and `-SkipUI` flags. - You will need to manually install the Prettier extension on your IDE ([for VSCode](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)) ([for IntelliJ](https://plugins.jetbrains.com/plugin/10456-prettier)). From 0b151e559b85e3e574b9232c1741300beeb0e55e Mon Sep 17 00:00:00 2001 From: llf5185 Date: Tue, 23 Sep 2025 15:10:24 -0400 Subject: [PATCH 2/6] Re-added focus outline to CSS button class --- ui/src/css/components/modal.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/src/css/components/modal.css b/ui/src/css/components/modal.css index 6b484a56..beb3d883 100644 --- a/ui/src/css/components/modal.css +++ b/ui/src/css/components/modal.css @@ -11,6 +11,11 @@ a.ui.button { margin-bottom: 0.5em; } +.button:focus { + outline: medium auto; + outline-color: auto; +} + .ui.dimmer .ui.workaround.loader { color: var(--text-primary); } From 46bb18c3a78129e7babada6e38eadbc10bd66309 Mon Sep 17 00:00:00 2001 From: llf5185 Date: Wed, 24 Sep 2025 09:13:37 -0400 Subject: [PATCH 3/6] Improved visual clarity of proposal button outline This change is to remedy the issue in the previous commit where the focused outline color (which was white) of the proposal submission buttons would blend in with the page background. --- ui/src/css/components/proposal.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/css/components/proposal.css b/ui/src/css/components/proposal.css index ca600fbb..eef18883 100644 --- a/ui/src/css/components/proposal.css +++ b/ui/src/css/components/proposal.css @@ -84,6 +84,10 @@ input[id^="hidden_"]:invalid { align-items: center; } +.proposal-submit-buttons .button:focus { + outline-color: var(--border-color); +} + .project-editor-input-container { display: flex; flex-direction: column; From ee446da16898f294c21113015e56120ce4993387 Mon Sep 17 00:00:00 2001 From: llf5185 Date: Wed, 24 Sep 2025 16:39:28 -0400 Subject: [PATCH 4/6] Improve button outline visual clarity for Dev Menu --- .../util/components/DevSignInModalContent.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/ui/src/components/util/components/DevSignInModalContent.js b/ui/src/components/util/components/DevSignInModalContent.js index 5c40f9b2..ee0d9345 100644 --- a/ui/src/components/util/components/DevSignInModalContent.js +++ b/ui/src/components/util/components/DevSignInModalContent.js @@ -326,7 +326,14 @@ export default function DevSignInModalContent() {
-