Skip to content

Commit 7f1f480

Browse files
committed
fix(css): Fix registration styles (Fixes #5)
1 parent 29c58fe commit 7f1f480

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

assets/css/login.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
}
2727

2828
#loginform,
29+
#registerform,
2930
#resetpassform,
3031
#lostpasswordform,
3132
.admin-email-confirm-form {
@@ -47,18 +48,19 @@
4748
@apply .text-brand .mt-1 .border-none;
4849
}
4950

50-
input[type="text"],
51-
input[type="password"] {
51+
input[type='text'],
52+
input[type='email'],
53+
input[type='password'] {
5254
@apply .bg-trim-alt .text-trim-alt-invert .border .border-trim .py-1 .px-2 .mt-1;
5355
}
5456

55-
input[type="checkbox"] {
56-
@apply .bg-trim-alt .text-trim-alt-invert .shadow .border .border-trim
57+
input[type='checkbox'] {
58+
@apply .bg-trim-alt .text-trim-alt-invert .shadow .border .border-trim;
5759
}
5860

5961
input:checked::before {
6062
@apply .opacity-50;
61-
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23fff%27%2F%3E%3C%2Fsvg%3E");
63+
content: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23fff%27%2F%3E%3C%2Fsvg%3E');
6264
}
6365

6466
input:focus,

plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Modern Login
55
* Plugin URI: https://github.com/log1x/modern-login
66
* Description: A whitelabeled and modernized wp-login.php
7-
* Version: 1.0.6
7+
* Version: 1.0.7
88
* Author: Brandon Nifong
99
* Author URI: https://github.com/log1x
1010
* Licence: MIT

0 commit comments

Comments
 (0)