mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-30 14:06:00 +00:00
disabled changed to readonly
disabled form fields cannot be selected for copying in Firefox browser.
This commit is contained in:
+6
-6
@@ -13,8 +13,8 @@
|
||||
body {
|
||||
padding-bottom: 32px;
|
||||
}
|
||||
.form-control[disabled] {
|
||||
cursor: auto;
|
||||
.form-control[readonly] {
|
||||
cursor: text;
|
||||
}
|
||||
.feedback-container {
|
||||
position: fixed;
|
||||
@@ -77,7 +77,7 @@
|
||||
<div class="form-group">
|
||||
<label for="root-key" class="col-sm-2 control-label">BIP32 Root Key</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea id="root-key" class="root-key form-control" disabled="disabled"></textarea>
|
||||
<textarea id="root-key" class="root-key form-control" readonly="readonly"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@@ -137,7 +137,7 @@
|
||||
<div class="form-group">
|
||||
<label for="bip44-path" class="col-sm-2 control-label">BIP32 Derivation Path</label>
|
||||
<div class="col-sm-10">
|
||||
<input id="bip44-path" type="text" class="path form-control" value="m/44'/0'/0'/0" disabled="disabled">
|
||||
<input id="bip44-path" type="text" class="path form-control" value="m/44'/0'/0'/0" readonly="readonly">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@@ -162,13 +162,13 @@
|
||||
<div class="form-group">
|
||||
<label for="extended-priv-key" class="col-sm-2 control-label">BIP32 Extended Key</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea id="extended-priv-key" class="extended-priv-key form-control" disabled="disabled"></textarea>
|
||||
<textarea id="extended-priv-key" class="extended-priv-key form-control" readonly="readonly"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="extended-pub-key" class="col-sm-2 control-label">BIP32 Extended Key (addresses only)</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea id="extended-pub-key" class="extended-pub-key form-control" disabled="disabled"></textarea>
|
||||
<textarea id="extended-pub-key" class="extended-pub-key form-control" readonly="readonly"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user