mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-12-06 17:27:57 +00:00
Merge pull request #2675 from XRPLF/fix_contrast
Fix low-contrast fields
This commit is contained in:
@@ -260,6 +260,8 @@ ul.nav.navbar-nav {
|
|||||||
--link-color-primary: #fff;
|
--link-color-primary: #fff;
|
||||||
--link-color-visited: #fff;
|
--link-color-visited: #fff;
|
||||||
--link-color-primary-hover: #9a52ff;
|
--link-color-primary-hover: #9a52ff;
|
||||||
|
|
||||||
|
--search-highlight-text-color: #4BB7FF; /* color-blue-4 */
|
||||||
}
|
}
|
||||||
|
|
||||||
:root .form-control-plaintext {
|
:root .form-control-plaintext {
|
||||||
|
|||||||
@@ -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)."
|
"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>
|
</p>
|
||||||
<input
|
<div className="input-group">
|
||||||
onChange={(event) => setInputText(event.target.value)}
|
<input
|
||||||
value={inputText}
|
onChange={(event) => setInputText(event.target.value)}
|
||||||
id="target"
|
value={inputText}
|
||||||
className="form-control"
|
id="target"
|
||||||
required
|
className="form-control"
|
||||||
type="text"
|
required
|
||||||
placeholder={translate(
|
type="text"
|
||||||
"XRP Ledger address, transaction ID, or ledger index"
|
placeholder={translate(
|
||||||
)}
|
"XRP Ledger address, transaction ID, or ledger index"
|
||||||
/>
|
)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<span className="help-block">
|
<span className="help-block">
|
||||||
<small>
|
<small>
|
||||||
{translate("resourses.rpc-tool.help-block.part1", "Try an account like ")}
|
{translate("resourses.rpc-tool.help-block.part1", "Try an account like ")}
|
||||||
|
|||||||
Reference in New Issue
Block a user