jquery-confirm icon indicating copy to clipboard operation
jquery-confirm copied to clipboard

button border style

Open jaguarxii opened this issue 1 year ago • 1 comments

jquery-confirm version: v3.3.4

I'm submitting a ... (check one with "x") [ ] bug report [X] feature request [ ] support request

Expected behavior: I am using bulma.io (css framework) and some styles are not applied to buttons because of its predefined border style border: none;.

Is it possible to remove this rule specification from the CSS definition?

Steps to reproduce: for instance, the css framework i Am using has an "outlined" style, which is not working because the "border: none" prevents it

The following code should show an outlined button, but shows "no border"

Related code:

btnNo: {
    text: "No",
    btnClass: "button is-brand-main is-outlined", keys: ["escape"],
},

image

By disabling the "border" rule from developer tools, the button shows ok

image

I already try to override its definition by using initial/inherit/unset, none of them worked as expected

jaguarxii avatar Oct 03 '24 17:10 jaguarxii