I know that I can style the "Ok" and "Cancel" buttons created by Jeditable with a css file like this:
form.editable > button {
color : #F00
}
I want Jeditable to use the existing Bootstrap classes btn btn-danger
and btn btn-success
.
I know I can just copy and paste the CSS from bootstrap into my custom css file but this seems disgusting.
What is the proper way to do this? I have googled around without much success and read the jeditable docs, but the solution is not obvious to me.