From 7cf70317e81d49acb0f0f27b07089d99614f66e6 Mon Sep 17 00:00:00 2001 From: Oscar Date: Thu, 23 Nov 2017 15:28:32 +0100 Subject: [PATCH] #634: overwrite appearance of password submit input Bug: The button to set a password had a different look than other buttons on the site Fix: add -webkit-appearance none on the button element to force browser to discard the default styling. For a reduced test case demonstrating the fix see https://codepen.io/ovl/full/qVYgoO/ --- assets/main.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/main.css b/assets/main.css index 9d2e8273..fb2f6925 100644 --- a/assets/main.css +++ b/assets/main.css @@ -840,6 +840,9 @@ tbody { border: 1px solid #0297f8; color: white; cursor: pointer; + + /* Force flat button look */ + -webkit-appearance: none; font-size: 15px; padding-bottom: 3px; padding-left: 10px;