disabled changed to readonly

disabled form fields cannot be selected for copying in Firefox browser.
This commit is contained in:
Ian Coleman
2014-09-25 10:06:28 +10:00
parent dd566a1e2f
commit d198865f75
2 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -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>