40 lines
567 B
CSS
40 lines
567 B
CSS
.wizard-pane {
|
|
position: absolute;
|
|
top: 0;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: opacity .2s ease;
|
|
}
|
|
|
|
.wizard-pane.active {
|
|
position: relative;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.wizard-pane.activing {
|
|
visibility: visible;
|
|
}
|
|
|
|
.wizard-content {
|
|
position: relative;
|
|
padding: 0;
|
|
transition: height .2s ease;
|
|
}
|
|
|
|
.panel-body > .wizard-buttons, .tab-content > .wizard-buttons {
|
|
margin-top: 22px;
|
|
}
|
|
|
|
.color-active {
|
|
color: #3e8ef7 !important;
|
|
}
|
|
|
|
.color-error {
|
|
color: #ff4c52 !important;
|
|
}
|
|
|
|
.color-done {
|
|
color: #11c26d !important;
|
|
}
|