How can I change the color of the dimmer in my modal when I am unable to do so currently?
<div class="ui modal">
<i class="close icon"></i>
<div class="header">
Profile Picture
</div>
<div class="content">
<p>sth</p>
</div>
<div class="actions">
<div class="ui black button">
Nope
</div>
<div class="ui positive right labeled icon button">
Yep, that's me
<i class="checkmark icon"></i>
</div>
</div>
</div>
In JavaScript:
My attempts to change the dimmer color using the following code have not been successful. What am I missing?
$('.ui.modal').each(function() {
$(this).modal({allowMultiple: true}).modal('show').css('background-color', 'yellow');
});