File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,13 @@ <h2>A powerful jQuery wizard plugin that supports accessibility and HTML5.</h2>
37
37
$ ( "#wizard" ) . steps ( {
38
38
headerTag : "h4" ,
39
39
bodyTag : "section"
40
- } ) ;
41
- $ ( "#wizard" ) . steps ( "insert" , 1 , {
40
+ } ) . steps ( "add" , {
41
+ title : "Fifth Step" ,
42
+ content : "New!"
43
+ } ) . steps ( "insert" , 1 , {
42
44
title : "Second Step" ,
43
45
content : "New!"
44
- } ) ;
45
- $ ( "#wizard" ) . steps ( "remove" , 2 ) ;
46
+ } ) . steps ( "remove" , 2 ) ;
46
47
} ) ;
47
48
</ script >
48
49
Original file line number Diff line number Diff line change 41
41
position : relative;
42
42
display : block;
43
43
width : 600px ;
44
- height : 40px ;
45
44
}
46
45
47
46
.wizard > .steps .number
65
64
66
65
.wizard > .steps .disabled a
67
66
{
68
- color : # fff ;
69
67
background : # 9ddcff ;
68
+ color : # fff ;
70
69
cursor : default;
71
70
}
72
71
80
79
.wizard > .steps .done a
81
80
{
82
81
background : # 9ddcff ;
82
+ color : # 2268b2 ;
83
83
}
84
84
85
85
.wizard > .steps .error a
86
86
{
87
87
background : # f00 ;
88
+ color : # 474747 ;
88
89
}
89
90
90
91
.wizard > .content
You can’t perform that action at this time.
0 commit comments