diff options
| author | Mark Otto <[email protected]> | 2013-01-17 20:23:33 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-17 20:23:33 -0800 |
| commit | d9b35c2602b18c78a72ba4b1698b3ec93ccb868d (patch) | |
| tree | 9ad02dd103c908c5c9008d2296623e896d4498f7 /less/tests/css-tests.html | |
| parent | f068cdeb63770182b9e954eac9cbd11bf8df5d57 (diff) | |
| parent | 01b465928ec47d460ea1fd705e49aa2e0e9a4d28 (diff) | |
| download | bootstrap-d9b35c2602b18c78a72ba4b1698b3ec93ccb868d.tar.xz bootstrap-d9b35c2602b18c78a72ba4b1698b3ec93ccb868d.zip | |
Merge branch '2.3.0-wip' into 3.0.0-wip
Conflicts:
docs/assets/css/bootstrap.css
docs/components.html
docs/css.html
docs/customize.html
docs/examples/fluid.html
docs/extend.html
docs/getting-started.html
docs/index.html
docs/javascript.html
docs/scaffolding.html
docs/templates/layout.mustache
docs/templates/pages/base-css.mustache
docs/templates/pages/components.mustache
less/navbar.less
Diffstat (limited to 'less/tests/css-tests.html')
| -rw-r--r-- | less/tests/css-tests.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html index 9a5fd589d..22c83141a 100644 --- a/less/tests/css-tests.html +++ b/less/tests/css-tests.html @@ -994,8 +994,59 @@ +<div class="page-header"> + <h1>Alerts</h1> +</div> + +<h4>Alert default</h4> +<div class="alert"> + <button type="button" class="close" data-dismiss="alert">×</button> + <strong>Alert!</strong> Best check yourself, you're not looking too good. +</div> +<div class="alert alert-block"> + <button type="button" class="close" data-dismiss="alert">×</button> + <p><strong>Alert!</strong> Best check yourself, you're not looking too good.</p> +</div> +<h4>Success</h4> +<div class="alert alert-success"> + <button type="button" class="close" data-dismiss="alert">×</button> + <strong>Success!</strong> Best check yourself, you're not looking too good. +</div> +<div class="alert alert-block alert-success"> + <button type="button" class="close" data-dismiss="alert">×</button> + <p><strong>Success!</strong> Best check yourself, you're not looking too good.</p> +</div> +<h4>Info</h4> +<div class="alert alert-info"> + <button type="button" class="close" data-dismiss="alert">×</button> + <strong>Info!</strong> Best check yourself, you're not looking too good. +</div> +<div class="alert alert-block alert-info"> + <button type="button" class="close" data-dismiss="alert">×</button> + <p><strong>Info!</strong> Best check yourself, you're not looking too good.</p> +</div> + +<h4>Warning</h4> +<div class="alert "> + <button type="button" class="close" data-dismiss="alert">×</button> + <strong>Warning!</strong> Best check yourself, you're not looking too good. +</div> +<div class="alert alert-block alert-warning"> + <button type="button" class="close" data-dismiss="alert">×</button> + <p><strong>Warning!</strong> Best check yourself, you're not looking too good.</p> +</div> + +<h4>Error</h4> +<div class="alert alert-error"> + <button type="button" class="close" data-dismiss="alert">×</button> + <strong>Error!</strong> Best check yourself, you're not looking too good. +</div> +<div class="alert alert-block alert-error"> + <button type="button" class="close" data-dismiss="alert">×</button> + <p><strong>Error!</strong> Best check yourself, you're not looking too good.</p> +</div> </div><!-- /container --> |
