diff options
| -rwxr-xr-x | StoneIsland/www/css/account.css | 4 | ||||
| -rwxr-xr-x | StoneIsland/www/index.html | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/StoneIsland/www/css/account.css b/StoneIsland/www/css/account.css index 4f9903e1..28e49ca4 100755 --- a/StoneIsland/www/css/account.css +++ b/StoneIsland/www/css/account.css @@ -160,7 +160,9 @@ input[type=text], input[type=password], input[type=number], input[type=date], in input[type=text], input[type=password], input[type=number], input[type=email] { -webkit-appearance: none; } - +input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=email] { + border-width: 2px; +} .half-input { margin: 0px auto; display: flex; diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index 9cb3780f..022c931e 100755 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -1146,11 +1146,11 @@ <input type="text" id="address_surname" name="Surname" aria-placeholder="Last Name"> <span class="err"></span> - <label for="address_surname">Address line 1</label> + <label for="address_address1">Address line 1</label> <input type="text" id="address_address1" name="Address1" aria-placeholder="Address Line 1"> <span class="err"></span> - <label for="address_surname">Address line 2</label> + <label for="address_address2">Address line 2</label> <input type="text" id="address_address2" name="Address2" aria-placeholder="Address Line 2"> <span class="err"></span> |
