Skip to content

Commit

Permalink
Merge pull request #2675 from XRPLF/fix_contrast
Browse files Browse the repository at this point in the history
Fix low-contrast fields
  • Loading branch information
amarantha-k authored Jul 23, 2024
2 parents 31297ba + b204919 commit 5c9c101
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions @theme/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ ul.nav.navbar-nav {
--link-color-primary: #fff;
--link-color-visited: #fff;
--link-color-primary-hover: #9a52ff;

--search-highlight-text-color: #4BB7FF; /* color-blue-4 */
}

:root .form-control-plaintext {
Expand Down
24 changes: 13 additions & 11 deletions resources/dev-tools/rpc-tool.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,17 +205,19 @@ export default function RpcTool() {
"This is a debug tool for printing raw information about an account (by classic address), a transaction (by hash) or a ledger (by sequence number)."
)}
</p>
<input
onChange={(event) => setInputText(event.target.value)}
value={inputText}
id="target"
className="form-control"
required
type="text"
placeholder={translate(
"XRP Ledger address, transaction ID, or ledger index"
)}
/>
<div className="input-group">
<input
onChange={(event) => setInputText(event.target.value)}
value={inputText}
id="target"
className="form-control"
required
type="text"
placeholder={translate(
"XRP Ledger address, transaction ID, or ledger index"
)}
/>
</div>
<span className="help-block">
<small>
{translate("resourses.rpc-tool.help-block.part1", "Try an account like ")}
Expand Down

0 comments on commit 5c9c101

Please sign in to comment.