[SOLVED] Help needed with custom .ios css

Hello,
I am trying to have one dialog box to be transparent. I am unable to find a way to add .ios {
–f7-dialog-bg-color:transparent} just for one dialog box.
I have also tried with DOM css event but no luck.
Thanks in advance!!!

CSS custom properties can be added via style property on element, like:

<div style="--f7-dialog-bg-color: transparent">...</div>
var dialog = app.dialog.create(...);
dialog.$el.css('--f7-dialog-bg-color', 'transparent')

Thank you very much sir…
I achieved this with creating dialog in html and call it using .open method :slight_smile: