jquery-wizard.css 579 B

1234567891011121314151617181920212223242526272829
  1. .wizard-pane {
  2. position: absolute;
  3. top: 0;
  4. visibility: hidden;
  5. opacity: 0;
  6. transition: opacity 0.2s ease; }
  7. .wizard-pane.active {
  8. position: relative;
  9. visibility: visible;
  10. opacity: 1; }
  11. .wizard-pane.activing {
  12. visibility: visible; }
  13. .wizard-content {
  14. position: relative;
  15. padding: 0;
  16. transition: height 0.2s ease; }
  17. .panel-body > .wizard-buttons, .tab-content > .wizard-buttons {
  18. margin-top: 22px; }
  19. .color-active {
  20. color: #3e8ef7 !important; }
  21. .color-error {
  22. color: #ff4c52 !important; }
  23. .color-done {
  24. color: #11c26d !important; }