From: Ian Coleman Date: Wed, 24 Sep 2014 23:54:03 +0000 (+1000) Subject: Disabled fields use normal text-select cursor X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=dd566a1e2f7e01442890330db3845f3521cf011f;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git Disabled fields use normal text-select cursor --- diff --git a/bip39-standalone.html b/bip39-standalone.html index 84d875d..b30bd53 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -21,6 +21,9 @@ body { padding-bottom: 32px; } + .form-control[disabled] { + cursor: auto; + } .feedback-container { position: fixed; top: 0; diff --git a/src/index.html b/src/index.html index 4a9647e..fb287f5 100644 --- a/src/index.html +++ b/src/index.html @@ -13,6 +13,9 @@ body { padding-bottom: 32px; } + .form-control[disabled] { + cursor: auto; + } .feedback-container { position: fixed; top: 0;