Skip to content

Commit 417cf25

Browse files
author
Rafael J. Staib
committed
Add some style changes
1 parent d42d2a3 commit 417cf25

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

add-remove.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ <h2>A powerful jQuery wizard plugin that supports accessibility and HTML5.</h2>
3737
$("#wizard").steps({
3838
headerTag: "h4",
3939
bodyTag: "section"
40-
});
41-
$("#wizard").steps("insert", 1, {
40+
}).steps("add", {
41+
title: "Fifth Step",
42+
content: "New!"
43+
}).steps("insert", 1, {
4244
title: "Second Step",
4345
content: "New!"
44-
});
45-
$("#wizard").steps("remove", 2);
46+
}).steps("remove", 2);
4647
});
4748
</script>
4849

stylesheets/jquery.steps.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
position: relative;
4242
display: block;
4343
width: 600px;
44-
height: 40px;
4544
}
4645

4746
.wizard > .steps .number
@@ -65,8 +64,8 @@
6564

6665
.wizard > .steps .disabled a
6766
{
68-
color: #fff;
6967
background: #9ddcff;
68+
color: #fff;
7069
cursor: default;
7170
}
7271

@@ -80,11 +79,13 @@
8079
.wizard > .steps .done a
8180
{
8281
background: #9ddcff;
82+
color: #2268b2;
8383
}
8484

8585
.wizard > .steps .error a
8686
{
8787
background: #f00;
88+
color: #474747;
8889
}
8990

9091
.wizard > .content

0 commit comments

Comments
 (0)