How to hide Scissors Button (Toolbox) in Exhibit
From SIMILE Widgets
In Exhibit apps, the little orange box that appears (by default in the top right) when you hover over a view is called the Toolbox. When clicked, it displays a menu that allows you to extract/download your data in various ways.
Here are a few ways you can hide the toolbox:
1. Most views in Exhibit have a showToolbox option. Set this value to false to disable it.
ex:showToolbox="false"
2. You can use CSS to hide the display of the containing div.
div.exhibit-toolboxWidget-popup { display: none; }

