blob: f8f6e9515f1905040d611152329e0877266e0c05 (
plain)
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
|
.arrowSteps {
list-style-type: none;
list-style-image: none;
border: 1px solid #666666;
position: relative;
}
.arrowSteps li {
float: left;
padding: 0px;
margin: 0px;
border: 0 none;
}
.arrowSteps li div {
padding: 0.5em;
text-align: center;
white-space: nowrap;
overflow: hidden;
}
.arrowSteps li.arrow div {
/* @embed */
background: url(images/jquery.arrowSteps.divider-ltr.png) no-repeat right center;
}
/* applied to the element preceding the highlighted step */
.arrowSteps li.arrow.tail div {
/* @embed */
background: url(images/jquery.arrowSteps.tail-ltr.png) no-repeat right center;
}
/* this applies to all highlighted, including the last */
.arrowSteps li.head div {
/* @embed */
background: url(images/jquery.arrowSteps.head-ltr.png) no-repeat left center;
font-weight: bold;
}
/* this applies to all highlighted arrows except the last */
.arrowSteps li.arrow.head div {
/* TODO: eliminate duplication of jquery.arrowSteps.head.png embedding */
/* @embed */
background: url(images/jquery.arrowSteps.head-ltr.png) no-repeat right center;
}
|