<div [ngClass]="pageURL ? 'modal' : ''">
<div [ngClass]="pageURL ? 'modal-dialog' : ''">
- <div class="modal-content">
+ <div class="modal-content content-theme">
<div class="modal-header">
<h4 class="modal-title float-start">
<ng-content select=".modal-title"></ng-content>
float: none;
margin-top: 1rem;
}
+
+// Fix for overridden browser autofill CSS.
+// This needs to be removed when using Carbon forms.
+input:-webkit-autofill,
+input:-webkit-autofill:hover,
+input:-webkit-autofill:focus,
+input:-webkit-autofill:active {
+ box-shadow: 0 0 0 10px white inset !important;
+ -webkit-text-fill-color: inherit !important;
+ transition: background-color 5000s ease-in-out 0s;
+}