add animation for virtual list header

This commit is contained in:
Nolan Lawson 2018-02-11 22:50:20 -08:00
parent 0c9757a941
commit be16ebfa78

View file

@ -11,10 +11,12 @@
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
z-index: 10; z-index: 10;
transition: none;
} }
.virtual-list-header.shown { .virtual-list-header.shown {
opacity: 1; opacity: 1;
pointer-events: auto; pointer-events: auto;
transition: opacity 0.333s linear;
} }
</style> </style>
<script> <script>