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:
@@ -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,
|
||||
|
||||
@@ -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 : ''"
|
||||
|
||||
Reference in New Issue
Block a user