Javascript app and wiki toolbar

LabKey Support Forum (Inactive)
Javascript app and wiki toolbar Anthony Corbett  2013-05-17 08:15
Status: Closed
 

The CSS above will remove webpart text buttons from the whole page (all webparts), if you want to remove it only for the main body and not the right side panel use the more restrictive selector:

Ext.select('td.labkey-body-panel div.labkey-wp-text-buttons').setStyle('visibility', 'hidden');


Firebug and its element inspector is the best place to dive into the HTML and try out css rules, again this is more of a hack then a solution.

-
Anthony