Browse Source

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

Martin Edenhofer 8 years ago
parent
commit
5c1d232df5
1 changed files with 9 additions and 0 deletions
  1. 9 0
      app/assets/stylesheets/zammad.scss

+ 9 - 0
app/assets/stylesheets/zammad.scss

@@ -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;