ccampbell / rainbow

Simple syntax highlighting library written in javascript
http://rainbowco.de
Apache License 2.0
3.3k stars 465 forks source link

Fix preloader div blocking code highlight #233

Closed matt-downs closed 2 years ago

matt-downs commented 6 years ago

Issue

The .preloader div continues to float over the code even after the animation has finished. This makes it difficult to highlight the code when clicking and dragging from the top left: 2018-01-09_10-21-01

Example showing .preloader div over the code: chrome_2018-01-09_10-20-13

Solution

This change ensures that the .preloader div is set as display: block; when the surrounding pre element has the .loading class, otherwise it is set as display: none; to avoid interfering with the code.