Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions css/custom_theme.css.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,15 @@
font-weight: var(--field-weight);
}

.with_frm_style input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 30px var(--bg-color) inset <?php echo esc_html( $important ); ?>;
}

.with_frm_style input:-webkit-autofill:focus {
/* Prevent the user agent autofill background color from taking effect on focus. */
transition: background-color 5000s ease-in-out 0s<?php echo esc_html( $important ); ?>;
}

<?php if ( ! empty( $important ) ) : ?>
<?php if ( $use_chosen_js ) { ?>
.with_frm_style .chosen-container-multi .chosen-choices,
Expand Down
Loading