classafFancordionBootstrap::BootstrapSkin
sys::Obj afFancordion::FancordionSkin afFancordionBootstrap::BootstrapSkin
A Fancordion Skin for Twitter Bootstrap.
To use the vanilla Bootstrap
skin, set the skinType
field on FancordionRunner:
using afFancordion using afFancordionBootstrap** My Bootstrap Fixtureclass BootstrapFixture : FixtureTest { override FancordionRunner fancordionRunner() { FancordionRunner() { it.skinType = BootstrapSkin# } } ... }
To use the themed version of Bootstrap, set the gimmeSomeSkin
field instead:
it.gimmeSomeSkin = |->FancordionSkin| { BootstrapSkin(true) }
- bootstrapCssUri
virtual Uri bootstrapCssUri()
Returns the location of the Bootstrap CSS file.
Defaults to
`fan://afFancordionBootstrap/res/bootstrap/css/bootstrap.min.css`
but is overridden by Bootswatch skins.- make
new make(Bool useTheme := false)
Creates a Bootstrap skin. Set
useTheme
totrue
to use the themed version of Bootstrap. The themed version uses colour gradients on buttons and other components.- tableCss
Str tableCss := "table"
The CSS classes used for tables. Set to enhance your tables:
skin.tableCss = "table table-striped table-bordered table-hover table-condensed"
Defaults to just
table
. See Bootstrap Tables for details.