Skip to content

Commit 650c77d

Browse files
committed
Update less/tests/css-tests.html
Extended css-tests with alerts (alerts and alert-blocks)
1 parent 558bc52 commit 650c77d

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

less/tests/css-tests.html

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,10 +1291,69 @@ <h4>Radial</h4>
12911291
<h4>Striped</h4>
12921292
<div class="gradient-striped"></div>
12931293

1294+
<div class="page-header">
1295+
<h1>Alerts</h1>
1296+
</div>
1297+
1298+
<h4>Alert default</h4>
1299+
<div class="alert">
1300+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1301+
<strong>Alert!</strong> Best check yourself, you're not looking too good.
1302+
</div>
1303+
1304+
<h4>Success</h4>
1305+
<div class="alert alert-success">
1306+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1307+
<strong>Success!</strong> Best check yourself, you're not looking too good.
1308+
</div>
1309+
1310+
<h4>Info</h4>
1311+
<div class="alert alert-info">
1312+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1313+
<strong>Info!</strong> Best check yourself, you're not looking too good.
1314+
</div>
1315+
1316+
<h4>Warning</h4>
1317+
<div class="alert ">
1318+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1319+
<strong>Warning!</strong> Best check yourself, you're not looking too good.
1320+
</div>
12941321

1322+
<h4>Error</h4>
1323+
<div class="alert alert-error">
1324+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1325+
<strong>Error!</strong> Best check yourself, you're not looking too good.
1326+
</div>
12951327

1328+
<h4>Alert block default</h4>
1329+
<div class="alert alert-block">
1330+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1331+
<p><strong>Alert!</strong> Best check yourself, you're not looking too good.</p>
1332+
</div>
12961333

1334+
<h4>Success block</h4>
1335+
<div class="alert alert-block alert-success">
1336+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1337+
<p><strong>Success!</strong> Best check yourself, you're not looking too good.</p>
1338+
</div>
12971339

1340+
<h4>Info block</h4>
1341+
<div class="alert alert-block alert-info">
1342+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1343+
<p><strong>Info!</strong> Best check yourself, you're not looking too good.</p>
1344+
</div>
1345+
1346+
<h4>Warning block</h4>
1347+
<div class="alert alert-block alert-warning">
1348+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1349+
<p><strong>Warning!</strong> Best check yourself, you're not looking too good.</p>
1350+
</div>
1351+
1352+
<h4>Error block</h4>
1353+
<div class="alert alert-block alert-error">
1354+
<button type="button" class="close" data-dismiss="alert">&times;</button>
1355+
<p><strong>Error!</strong> Best check yourself, you're not looking too good.</p>
1356+
</div>
12981357

12991358

13001359
</div><!-- /container -->

0 commit comments

Comments
 (0)