1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Normalize font weights on login form

This commit is contained in:
Hillel Coren 2017-02-26 20:53:01 +02:00
parent 00ae600d1c
commit a58ec63121
3 changed files with 15 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -326,3 +326,16 @@ fieldset[disabled] .btn-primary.active {
padding: 15px;
border: 1px solid #e8e8e8;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
font-weight: normal;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
font-weight: normal;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
font-weight: normal;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
font-weight: normal;
}