diff options
| author | Mark Otto <[email protected]> | 2013-01-17 12:21:34 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-17 12:21:34 -0800 |
| commit | bbb3c0a0e6b4134264f341c2714c4cadccb23e5c (patch) | |
| tree | 948eb8445ebde40d37cef62203bea4a28ef8ee4d /less | |
| parent | b80bf2c138ebf7853ea6fcc27e788bd64ea9b852 (diff) | |
| parent | 650c77ddb9df25f2ef4bad7feaba2be9ce15c827 (diff) | |
| download | bootstrap-bbb3c0a0e6b4134264f341c2714c4cadccb23e5c.tar.xz bootstrap-bbb3c0a0e6b4134264f341c2714c4cadccb23e5c.zip | |
Merge branch 'ravage84-patch-2' into 2.3.0-wip
Diffstat (limited to 'less')
| -rw-r--r-- | less/tests/css-tests.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html index 035ba8bd4..e1b93c9ce 100644 --- a/less/tests/css-tests.html +++ b/less/tests/css-tests.html @@ -1291,10 +1291,69 @@ <h4>Striped</h4> <div class="gradient-striped"></div> +<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> + +<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> + +<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> + +<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> +<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> +<h4>Alert block default</h4> +<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 block</h4> +<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 block</h4> +<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 block</h4> +<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 block</h4> +<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 --> |
