re-add css property appearance

I've removed the property a long time ago from the css with the hint
that it doesn't change any visible. That was wrong.

The property is related to mobile Safari. The appearance property is
needed to remove the rounded corners from buttons and to add the glow
effect to active input fields.
This commit is contained in:
Mathias Kresin 2015-05-16 23:23:13 +02:00
parent ef949883ed
commit ea8958a4bf
1 changed files with 4 additions and 0 deletions

View File

@ -175,6 +175,8 @@ input[type="text"] {
font-size: 99%;
margin-bottom: 10px;
margin-top: 5px;
-webkit-appearance: none;
appearance: none;
}
input[type="email"]:focus,
@ -286,6 +288,8 @@ textarea.form-error {
/* buttons */
.btn {
-webkit-appearance: none;
appearance: none;
display: inline-block;
color: #333;
border: 1px solid #ccc;