Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
#46 Fix pointer cursor showing on not visited steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cristijora committed Oct 1, 2017
1 parent 274123b commit 72dc9f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/assets/form-wizard/_navs-pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 2 additions & 3 deletions src/components/WizardStep.vue
Original file line number Diff line number Diff line change
@@ -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 : ''"
Expand Down

0 comments on commit 72dc9f7

Please sign in to comment.