-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcase-stages.html
57 lines (47 loc) · 1.94 KB
/
case-stages.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Case Stages Building block</title>
<!-- CSS for Knowledge Worker pages -->
<link href="css/kie-main-kw.css" rel="stylesheet" media="screen, print">
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Patternfly JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/patternfly/3.23.1/js/patternfly.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.18/c3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
</head>
<body>
<ul class='nav kie-nav-wizard' data-toggle="tooltip" data-placement="bottom"
title="Step 1 - Completed
Step 2 - Completed
Step 3 - Completed and long text here
Step 4 - Completed
Step 5 - Active (current)
Step 6 - Not Yet Reached asdf
Step 7 - Not Yet Reached
Step 8 - Not Yet Reached and also quite long
Step 9 - Not Yet Reached">
<li><a>Step 1 - Completed</a></li>
<li><a>Step 2 - Completed</a></li>
<li><a>Step 3 - Completed and long text here</a></li>
<li><a>Step 4 - Completed</a></li>
<li class='active'><a>Step 5 - Active</a></li>
<li><a>Step 6 - Not Yet Reached</a></li>
<li><a>Step 7 - Not Yet Reached</a></li>
<li><a>Step 8 - Not Yet Reached and also quite long</a></li>
<li><a>Step 9 - Not Yet Reached</a></li>
</ul>
<!-- This script is needed for the tooltips -->
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</body>
</html>