Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Bootstrap Wizard
3
***/
4
 
5
.form-wizard {
6
 
7
	.progress {
8
  		margin-bottom: 30px;
9
	}
10
 
11
	.steps {
12
		padding: 10px 0;
13
	  	margin-bottom: 15px;
14
	  	background-color: #fff ;
15
	 	background-image: none ;
16
	  	filter:none ;
17
	  	border: 0px;
18
	  	box-shadow: none ;
19
 
20
	  	> li {
21
	  		> a.step {
22
		  		background-color: #fff ;
23
		  		background-image: none ;
24
		  		filter:none;
25
		  		border: 0px;
26
		  		box-shadow: none ;
27
 
28
		  		&:hover {
29
  					background: none;
30
				}
31
 
32
				> .number {
33
					  background-color: #eee;
34
					  display: inline-block;
35
					  text-align: center !important;
36
					  font-size: 16px;
37
					  font-weight: 300;
38
					  padding: 11px 15px 13px 15px;
39
					  margin-right: 10px;
40
					  height: 45px;
41
					  width: 45px;
42
					  -webkit-border-radius: 50% !important;
43
					     -moz-border-radius: 50% !important;
44
					          border-radius: 50% !important;
45
				}
46
 
47
				> .desc {
48
				  	display: inline-block;
49
				  	font-size: 16px;
50
				  	font-weight: 300;
51
 
52
				  	> i {
53
  						display: none;
54
					}
55
				}
56
 
57
			}
58
 
59
			&.active {
60
				> a.step {
61
					.number {
62
						background-color: $brand-success;
63
	  					color: #fff;
64
	  				}
65
 
66
	  				.desc {
67
	  					color: #333;
68
	  				}
69
				}
70
			}
71
 
72
			&.done {
73
				> a.step {
74
					.number {
75
						background-color: $brand-warning;
76
  						color: #fff;
77
  					}
78
 
79
  					.desc {
80
  						color: #333;
81
 
82
	  					i {
83
	  						font-size: 12px;
84
							font-weight: normal;
85
							color: #999;
86
							display: inline-block;
87
	  					}
88
	  				}
89
				}
90
			}
91
		}
92
	}
93
}
94
 
95
@media (min-width: $screen-sm-min) and (max-width: $screen-lg-min) { /* 768px & 1200px */
96
  .form-wizard .step .desc {
97
    margin-top: 10px;
98
    display: block;
99
  }
100
}
101
 
102
@media (max-width: $screen-sm-min) { /* 768px */
103
  .form-wizard .steps > li > a {
104
    text-align: left;
105
  }
106
}