Skip to content

Commit

Permalink
chore(demo): no transition on table tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Apr 28, 2019
1 parent 2d23585 commit 150d54f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions docs-src/App.vue
Expand Up @@ -257,13 +257,17 @@ label input {
&[aria-hidden='true'] {
visibility: hidden;
opacity: 0;
transition: opacity .15s, visibility .15s;
&:not(.no-transition) {
transition: opacity .15s, visibility .15s;
}
}
&[aria-hidden='false'] {
visibility: visible;
opacity: 1;
transition: opacity .15s;
&:not(.no-transition) {
transition: opacity .15s;
}
}
&.info {
Expand Down
3 changes: 2 additions & 1 deletion docs-src/PageTable.vue
Expand Up @@ -10,7 +10,8 @@
:key="i"
v-tooltip="{
content: data,
delay: 0
delay: 0,
classes: ['no-transition']
}"
>
{{ data }}
Expand Down

0 comments on commit 150d54f

Please sign in to comment.