Fixed issue #962 - AutoFill icon in Safari is shown in many fields, which makes editing fields not easy.
This commit is contained in:
parent
7db9f5e3c0
commit
5c1d232df5
1 changed files with 9 additions and 0 deletions
|
@ -1559,6 +1559,15 @@ fieldset > .form-group {
|
||||||
flex-shrink: 0;
|
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="radio"],
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
Loading…
Reference in a new issue