diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-07-14 01:09:48 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-07-14 01:09:48 +0200 |
| commit | eb0693bda1edce80569ee15c1543a7a897c8f359 (patch) | |
| tree | 8935bcf968a08ebb29e27de91a904fe959e2ec1b | |
| parent | 54940888a575361fe6ed67a4ece2ae06b620bca7 (diff) | |
thicker border
| -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> |
