Skip to content
Snippets Groups Projects
Commit ea6c996a authored by Eduard Moraru's avatar Eduard Moraru
Browse files

XWIKI-10192: The "Username" and "Password" input fields don't have the same size

- Forcing browsers (IE) to inherit the font family for text and password inputs. IE seems to report that it does so, but in reality it does not.
parent d5158c0a
No related branches found
No related tags found
No related merge requests found
...@@ -157,6 +157,7 @@ input[type="text"], input[type="password"] { ...@@ -157,6 +157,7 @@ input[type="text"], input[type="password"] {
border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px;
box-shadow: 0px 1px 2px $theme.borderColor; box-shadow: 0px 1px 2px $theme.borderColor;
color: $theme.textColor; color: $theme.textColor;
font-family: inherit;
} }
::-webkit-input-placeholder { ::-webkit-input-placeholder {
color: $theme.textSecondaryColor !important; color: $theme.textSecondaryColor !important;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment