The screenshot shows how plone buttons look when they are unstyled in a theme
Plone provides the following buttons for the interface
Need a rule that transforms the plone classes: context, standalone and destructive and plain
plain submit and plain buttons to some know styles:
For bootstrap 3 buttons it would look like this:
context -> primary (btn btn-primary)
standalone -> info (btn btn-info)
destructive -> danger (btn btn-danger)
plain submit/button -> default (btn btn-default)
For webflow, we can start by just dynamically applying the button class it would look like this:
context -> primary (button)
standalone -> info (button)
destructive -> danger (button)
plain submit/button -> default (button)
The screenshot shows how plone buttons look when they are unstyled in a theme
Plone provides the following buttons for the interface
Need a rule that transforms the plone classes: context, standalone and destructive and plain plain submit and plain buttons to some know styles:
For bootstrap 3 buttons it would look like this: context -> primary (btn btn-primary) standalone -> info (btn btn-info) destructive -> danger (btn btn-danger) plain submit/button -> default (btn btn-default)
For webflow, we can start by just dynamically applying the button class it would look like this: context -> primary (button) standalone -> info (button) destructive -> danger (button) plain submit/button -> default (button)