2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-23 19:20:34 +03:00

#46 Fix pointer cursor showing on not visited steps

This commit is contained in:
cristijora
2017-10-01 10:58:37 +03:00
parent 274123bbc6
commit 72dc9f74d8
2 changed files with 6 additions and 4 deletions
+4 -1
View File
@@ -26,8 +26,11 @@
background-color: transparent; background-color: transparent;
color: $form-placeholder-color; color: $form-placeholder-color;
outline: 0 !important; outline: 0 !important;
cursor: pointer;
} }
&.disabled {
pointer-events: none;
cursor: default;
}
} }
> li.active > a, > li.active > a,
+2 -3
View File
@@ -1,7 +1,6 @@
<template> <template>
<li :class="{active:tab.active}" <li :class="{active:tab.active}">
> <a href="javascript:void(0)" :class="{disabled: !tab.checked}">
<a>
<div class="wizard-icon-circle md" <div class="wizard-icon-circle md"
role="tab" role="tab"
:tabindex="tab.checked ? 0 : ''" :tabindex="tab.checked ? 0 : ''"