Skip to content

Disable built in component styles #497

@knoobie

Description

@knoobie

After upgrading our application to 4.6 (from 3.x) - I noticed that you have changed your styling approach from css files to js included css. Appreciate that!

It just comes with the little downside, when you explicit wanna exclude some css. We removed all the button styling before - so your default styling won't interfere with bootstrap's styling.

Example:

buttons: [
    {
      action() {
        return this.cancel();
      },
      classes: 'btn btn-secondary',
      text: 'Beenden'
    }, {
      action() {
        return this.next();
      },
      classes: 'btn btn-primary',
      text: 'Weiter'
    }
  ]

Now your classes overwrite the bootstrap styling because of your inline css. Is there a way to disable for example the css of the buttons? Like "removeClasses" or "disableStyling".

Proposal (sorry, no js guy)

grafik

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions