Skip to content

Commit 5c9c101

Browse files
authored
Merge pull request #2675 from XRPLF/fix_contrast
Fix low-contrast fields
2 parents 31297ba + b204919 commit 5c9c101

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

@theme/styles.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,8 @@ ul.nav.navbar-nav {
260260
--link-color-primary: #fff;
261261
--link-color-visited: #fff;
262262
--link-color-primary-hover: #9a52ff;
263+
264+
--search-highlight-text-color: #4BB7FF; /* color-blue-4 */
263265
}
264266

265267
:root .form-control-plaintext {

resources/dev-tools/rpc-tool.page.tsx

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -205,17 +205,19 @@ export default function RpcTool() {
205205
"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)."
206206
)}
207207
</p>
208-
<input
209-
onChange={(event) => setInputText(event.target.value)}
210-
value={inputText}
211-
id="target"
212-
className="form-control"
213-
required
214-
type="text"
215-
placeholder={translate(
216-
"XRP Ledger address, transaction ID, or ledger index"
217-
)}
218-
/>
208+
<div className="input-group">
209+
<input
210+
onChange={(event) => setInputText(event.target.value)}
211+
value={inputText}
212+
id="target"
213+
className="form-control"
214+
required
215+
type="text"
216+
placeholder={translate(
217+
"XRP Ledger address, transaction ID, or ledger index"
218+
)}
219+
/>
220+
</div>
219221
<span className="help-block">
220222
<small>
221223
{translate("resourses.rpc-tool.help-block.part1", "Try an account like ")}

0 commit comments

Comments
 (0)