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:
parent
ef949883ed
commit
ea8958a4bf
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user