diff options
author | Ian Coleman <coleman.ian@gmail.com> | 2014-09-25 10:06:28 +1000 |
---|---|---|
committer | Ian Coleman <coleman.ian@gmail.com> | 2014-09-25 10:06:28 +1000 |
commit | d198865f7552237188659c778c0456988c6619df (patch) | |
tree | 4ba534f3d53370816d3abec64e0d5b9f73905942 /src/index.html | |
parent | dd566a1e2f7e01442890330db3845f3521cf011f (diff) | |
download | BIP39-d198865f7552237188659c778c0456988c6619df.tar.gz BIP39-d198865f7552237188659c778c0456988c6619df.tar.zst BIP39-d198865f7552237188659c778c0456988c6619df.zip |
disabled changed to readonly
disabled form fields cannot be selected for copying in Firefox browser.
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/index.html b/src/index.html index fb287f5..40955dd 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -13,8 +13,8 @@ | |||
13 | body { | 13 | body { |
14 | padding-bottom: 32px; | 14 | padding-bottom: 32px; |
15 | } | 15 | } |
16 | .form-control[disabled] { | 16 | .form-control[readonly] { |
17 | cursor: auto; | 17 | cursor: text; |
18 | } | 18 | } |
19 | .feedback-container { | 19 | .feedback-container { |
20 | position: fixed; | 20 | position: fixed; |
@@ -77,7 +77,7 @@ | |||
77 | <div class="form-group"> | 77 | <div class="form-group"> |
78 | <label for="root-key" class="col-sm-2 control-label">BIP32 Root Key</label> | 78 | <label for="root-key" class="col-sm-2 control-label">BIP32 Root Key</label> |
79 | <div class="col-sm-10"> | 79 | <div class="col-sm-10"> |
80 | <textarea id="root-key" class="root-key form-control" disabled="disabled"></textarea> | 80 | <textarea id="root-key" class="root-key form-control" readonly="readonly"></textarea> |
81 | </div> | 81 | </div> |
82 | </div> | 82 | </div> |
83 | </form> | 83 | </form> |
@@ -137,7 +137,7 @@ | |||
137 | <div class="form-group"> | 137 | <div class="form-group"> |
138 | <label for="bip44-path" class="col-sm-2 control-label">BIP32 Derivation Path</label> | 138 | <label for="bip44-path" class="col-sm-2 control-label">BIP32 Derivation Path</label> |
139 | <div class="col-sm-10"> | 139 | <div class="col-sm-10"> |
140 | <input id="bip44-path" type="text" class="path form-control" value="m/44'/0'/0'/0" disabled="disabled"> | 140 | <input id="bip44-path" type="text" class="path form-control" value="m/44'/0'/0'/0" readonly="readonly"> |
141 | </div> | 141 | </div> |
142 | </div> | 142 | </div> |
143 | </form> | 143 | </form> |
@@ -162,13 +162,13 @@ | |||
162 | <div class="form-group"> | 162 | <div class="form-group"> |
163 | <label for="extended-priv-key" class="col-sm-2 control-label">BIP32 Extended Key</label> | 163 | <label for="extended-priv-key" class="col-sm-2 control-label">BIP32 Extended Key</label> |
164 | <div class="col-sm-10"> | 164 | <div class="col-sm-10"> |
165 | <textarea id="extended-priv-key" class="extended-priv-key form-control" disabled="disabled"></textarea> | 165 | <textarea id="extended-priv-key" class="extended-priv-key form-control" readonly="readonly"></textarea> |
166 | </div> | 166 | </div> |
167 | </div> | 167 | </div> |
168 | <div class="form-group"> | 168 | <div class="form-group"> |
169 | <label for="extended-pub-key" class="col-sm-2 control-label">BIP32 Extended Key (addresses only)</label> | 169 | <label for="extended-pub-key" class="col-sm-2 control-label">BIP32 Extended Key (addresses only)</label> |
170 | <div class="col-sm-10"> | 170 | <div class="col-sm-10"> |
171 | <textarea id="extended-pub-key" class="extended-pub-key form-control" disabled="disabled"></textarea> | 171 | <textarea id="extended-pub-key" class="extended-pub-key form-control" readonly="readonly"></textarea> |
172 | </div> | 172 | </div> |
173 | </div> | 173 | </div> |
174 | </form> | 174 | </form> |