I'm attempting to show a Bootstrap 4 modal without a backdrop. I've tried the following code with no success:
.modal.right. modal-backdrop.show {
background-color: transparent !important;
}
When I try this modification, it works (but affects all classes, not just 'right'):
modal-backdrop.show {
background-color: red;
}
You can test it out here: https://codepen.io/cdemez/pen/abdmxXZ
If anyone has a solution to this issue, please share!