diff --git a/public/css/element.css b/public/css/element.css index f7007c501..0920b12d4 100644 --- a/public/css/element.css +++ b/public/css/element.css @@ -10547,12 +10547,6 @@ background: #6da252; } -.el-step__head.is-success .el-step__icon:hover { - cursor: pointer; - border: 5px solid #3c3f72; - background: #3c3f72; -} - .el-step__head.is-wait .el-step__icon-inner { color: #999999; } diff --git a/resources/assets/js/views/wizard/company.js b/resources/assets/js/views/wizard/company.js index 42e0762cf..eca63d48e 100644 --- a/resources/assets/js/views/wizard/company.js +++ b/resources/assets/js/views/wizard/company.js @@ -40,7 +40,7 @@ const app = new Vue({ methods: { next() { - if (this.active++ > 1) this.active = 0; + if (this.active++ > 3) this.active = 0; } } }); diff --git a/resources/assets/js/views/wizard/currencies.js b/resources/assets/js/views/wizard/currencies.js index 68168bdd8..0d3096f63 100644 --- a/resources/assets/js/views/wizard/currencies.js +++ b/resources/assets/js/views/wizard/currencies.js @@ -108,7 +108,7 @@ const app = new Vue({ }, next() { - if (this.active++ > 1) this.active = 0; + if (this.active++ > 3) this.active = 0; } } }); diff --git a/resources/assets/js/views/wizard/finish.js b/resources/assets/js/views/wizard/finish.js index d4ef21a76..626052e86 100644 --- a/resources/assets/js/views/wizard/finish.js +++ b/resources/assets/js/views/wizard/finish.js @@ -37,7 +37,7 @@ const app = new Vue({ methods: { next() { - if (this.active++ > 1) this.active = 0; + if (this.active++ > 3) this.active = 0; } } }); diff --git a/resources/assets/js/views/wizard/taxes.js b/resources/assets/js/views/wizard/taxes.js index f99ebc2fc..ab39ba81f 100644 --- a/resources/assets/js/views/wizard/taxes.js +++ b/resources/assets/js/views/wizard/taxes.js @@ -80,7 +80,7 @@ const app = new Vue({ }, next() { - if (this.active++ > 1) this.active = 0; + if (this.active++ > 3) this.active = 0; } } }); diff --git a/resources/views/partials/wizard/steps.blade.php b/resources/views/partials/wizard/steps.blade.php index 178268306..0b0131b49 100644 --- a/resources/views/partials/wizard/steps.blade.php +++ b/resources/views/partials/wizard/steps.blade.php @@ -1,10 +1,10 @@ @stack('steps_start')