aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-01-17 12:24:16 -0800
committerMark Otto <[email protected]>2013-01-17 12:24:16 -0800
commit01b465928ec47d460ea1fd705e49aa2e0e9a4d28 (patch)
treeca70fe9a423f724070ba691005c6b6c6091e66b1
parentbbb3c0a0e6b4134264f341c2714c4cadccb23e5c (diff)
downloadbootstrap-01b465928ec47d460ea1fd705e49aa2e0e9a4d28.tar.xz
bootstrap-01b465928ec47d460ea1fd705e49aa2e0e9a4d28.zip
overhaul alerts section of tests
-rw-r--r--less/tests/css-tests.html68
1 files changed, 30 insertions, 38 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html
index e1b93c9ce..cdb6c7bca 100644
--- a/less/tests/css-tests.html
+++ b/less/tests/css-tests.html
@@ -1291,68 +1291,60 @@
<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">&times;</button>
- <strong>Alert!</strong> Best check yourself, you're not looking too good.
+ <button type="button" class="close" data-dismiss="alert">&times;</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">&times;</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">&times;</button>
- <strong>Success!</strong> Best check yourself, you're not looking too good.
+ <button type="button" class="close" data-dismiss="alert">&times;</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">&times;</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">&times;</button>
- <strong>Info!</strong> Best check yourself, you're not looking too good.
+ <button type="button" class="close" data-dismiss="alert">&times;</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">&times;</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">&times;</button>
- <strong>Warning!</strong> Best check yourself, you're not looking too good.
+ <button type="button" class="close" data-dismiss="alert">&times;</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">&times;</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">&times;</button>
- <strong>Error!</strong> Best check yourself, you're not looking too good.
+ <button type="button" class="close" data-dismiss="alert">&times;</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">&times;</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">&times;</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">&times;</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">&times;</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">&times;</button>
- <p><strong>Error!</strong> Best check yourself, you're not looking too good.</p>
+ <button type="button" class="close" data-dismiss="alert">&times;</button>
+ <p><strong>Error!</strong> Best check yourself, you're not looking too good.</p>
</div>