From ea8958a4bfe77316262af8a580f68ddb4941ccaf Mon Sep 17 00:00:00 2001 From: Mathias Kresin Date: Sat, 16 May 2015 23:23:13 +0200 Subject: [PATCH] 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. --- assets/css/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/css/app.css b/assets/css/app.css index 155b7a5..d0c3572 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -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;