12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .multi-step .btn.btn-primary {
- color: white;
- }
-
- .multi-step .modal-header .modal-steps .step:before {
- border-color: #EAEAEA;
- }
-
- .multi-step .modal-header .modal-steps .step .dot {
- border-color: #EAEAEA;
- background-color: #EAEAEA;
- }
-
- .multi-step .modal-header .modal-steps .step:after {
- border-color: #EAEAEA;
- }
- .multi-step .modal-header .modal-steps .step.current .dot:before {
- background-color: #EAEAEA;
- }
-
- .multi-step .modal-header .modal-steps .step.skipped:after {
- border-color: #ffc107;
- }
-
- .multi-step .modal-header .modal-steps .step.skipped .dot {
- border-color: #ffc107;
- }
-
- .multi-step .modal-header .modal-steps .step.skipped .dot:before {
- background-color: #ffc107;
- }
-
- .multi-step .modal-footer .btn-prev {
- background-color: #39c0ba;
- }
-
- .multi-step .modal-footer .btn-prev.disabled {
- background-color: #EAEAEA;
- color: #000;
- }
-
- .multi-step .modal-footer .btn-skip {
- background-color: #ffc107;
- }
-
- .multi-step .modal-footer .btn-skip.disabled {
- background-color: #EAEAEA;
- color: #000;
- }
-
- .multi-step .modal-footer .btn-next {
- background-color: #39c0ba;
- }
-
- .multi-step .modal-footer .btn-next.disabled {
- background-color: #EAEAEA;
- color: #000;
- }
|