#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/
This commit is contained in:
parent
7d8aaac5d2
commit
7cf70317e8
|
@ -840,6 +840,9 @@ tbody {
|
||||||
border: 1px solid #0297f8;
|
border: 1px solid #0297f8;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
/* Force flat button look */
|
||||||
|
-webkit-appearance: none;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
|
|
Loading…
Reference in New Issue