Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
div:not(.container):not(.container-fluid):not([class^="col-xs-"]):not([class^="col-sm-"]):not([class^="col-md-"]):not([class^="col-lg-"])
 > .row {
    margin-right: 0;
    margin-left: 0;
}


4.2 Hiding autofill on Safari browser.

In order to disable autofill on Safari, the above css code should be placed into solution stylesheet. The following code template can be also found in standard_ngclient.css. 

input::-webkit-contacts-auto-fill-button {

  visibility: hidden;

   display: none !important;

  pointer-events: none;

  position: absolute;

  right: 0;

}