_bootstrap-wizard.scss
1.7 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/***
Bootstrap Wizard
***/
.form-wizard {
.progress {
margin-bottom: 30px;
}
.steps {
padding: 10px 0;
margin-bottom: 15px;
background-color: #fff ;
background-image: none ;
filter:none ;
border: 0px;
box-shadow: none ;
> li {
> a.step {
background-color: #fff ;
background-image: none ;
filter:none;
border: 0px;
box-shadow: none ;
&:hover {
background: none;
}
> .number {
background-color: #eee;
display: inline-block;
text-align: center !important;
font-size: 16px;
font-weight: 300;
padding: 11px 15px 13px 15px;
margin-right: 10px;
height: 45px;
width: 45px;
-webkit-border-radius: 50% !important;
-moz-border-radius: 50% !important;
border-radius: 50% !important;
}
> .desc {
display: inline-block;
font-size: 16px;
font-weight: 300;
> i {
display: none;
}
}
}
&.active {
> a.step {
.number {
background-color: $brand-success;
color: #fff;
}
.desc {
color: #333;
}
}
}
&.done {
> a.step {
.number {
background-color: $brand-warning;
color: #fff;
}
.desc {
color: #333;
i {
font-size: 12px;
font-weight: normal;
color: #999;
display: inline-block;
}
}
}
}
}
}
}
@media (min-width: $screen-sm-min) and (max-width: $screen-lg-min) { /* 768px & 1200px */
.form-wizard .step .desc {
margin-top: 10px;
display: block;
}
}
@media (max-width: $screen-sm-min) { /* 768px */
.form-wizard .steps > li > a {
text-align: left;
}
}