mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-23 21:40:33 +03:00
#46 Fix pointer cursor showing on not visited steps
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
@@ -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 : ''"
|
||||||
|
|||||||
Reference in New Issue
Block a user