2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-11 10:32:24 +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;
color: $form-placeholder-color;
outline: 0 !important;
cursor: pointer;
}
&.disabled {
pointer-events: none;
cursor: default;
}
}
> li.active > a,
+2 -3
View File
@@ -1,7 +1,6 @@
<template>
<li :class="{active:tab.active}"
>
<a>
<li :class="{active:tab.active}">
<a href="javascript:void(0)" :class="{disabled: !tab.checked}">
<div class="wizard-icon-circle md"
role="tab"
:tabindex="tab.checked ? 0 : ''"