Fixed issue #962 - AutoFill icon in Safari is shown in many fields, which makes editing fields not easy.

This commit is contained in:
Martin Edenhofer 2017-04-18 18:16:51 +02:00
parent 7db9f5e3c0
commit 5c1d232df5

View file

@ -1559,6 +1559,15 @@ fieldset > .form-group {
flex-shrink: 0;
}
/* do not show safari auto fill icon - see issue #962 */
input::-webkit-contacts-auto-fill-button {
visibility: hidden;
display: none !important;
pointer-events: none;
position: absolute;
right: 0;
}
input[type="radio"],
input[type="checkbox"] {
margin: 0;