wiki:plugin:bootswrapper:button

Buttons

Default Standard button
Primary Provides extra visual weight and identifies the primary action in a set of buttons
Success Indicates a successful or positive action
Info Contextual button for informational alert messages
Warning Indicates caution should be taken with this action
Danger Indicates a dangerous or potentially negative action
Link Deemphasize a button by making it look like a link while maintaining button behavior


<btn type="default">Default</btn>
<btn type="primary">Primary</btn>
<btn type="success">Success</btn>
<btn type="info">Info</btn>
<btn type="warning">Warning</btn>
<btn type="danger">Danger</btn>
<btn type="link">Link</btn>


<btn type="success" size="lg" icon="glyphicon glyphicon-edit">[[:wiki:welcome]]</btn>

Welcome to your new DokuWiki


Fancy larger or smaller buttons? Add size=“lg”, size=“sm”, or size=“xs” for additional sizes.

Large button Large button

Default button Default button

Small button Small button

Extra small button Extra small button


<btn type="primary" size="lg">Large button</btn>
<btn type="default" size="lg">Large button</btn>
 
<btn type="primary">Default button</btn>
<btn type="default">Default button</btn>
 
<btn type="primary" size="sm">Small button</btn>
<btn type="default" size="sm">Small button</btn>
 
<btn type="primary" size="xs">Extra small button</btn>
<btn type="default" size="xs">Extra small button</btn>


Create block level buttons—those that span the full width of a parent – by adding block=“true” option.

Block level button
Block level button


<btn type="primary" size="lg" block="true">Block level button</btn>
<btn type="default" size="lg" block="true">Block level button</btn>


Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. Bootstrap Wrapper Plugin detect automatically the active state of current page.

Buttons Panels

<btn type="primary">[[button]]</btn> <btn type="default">[[panel]]</btn>


Make buttons look unclickable by fading them back with opacity.

Buttons Panels

<btn type="primary" disabled="true">[[button]]</btn> <btn type="default" disabled="true">[[panel]]</btn>
Attribute Default Value Allowed Values Description
type default default primary success info warning danger link Type of button
icon optional Font icon class (eg. Glyphicon or Font-Awesome)
size optional lg sm Button size
block optional true false Block level buttons
collapse optional Target element selector to collapse (see Collapse)
disabled optional true false Disable the button
modal optional Modal ID (see Modal)
  • wiki/plugin/bootswrapper/button.txt
  • Last modified: 8 years ago
  • by Giuseppe Di Terlizzi