Disable Standard WebUI Functions

Here are listed css code on how to hide standard features of WebUI. Note that this cannot be done by widget, only by project.

Download Image

To hide the Download button:

1.widget-menu__items-wrapper .widget-menu__item[title="Download Image"] {
2    display: none;
3}
With css
../../_images/after_download.png
Without css
../../_images/before_download.png

Add Filter Rule

To hide the Add Filter Rule button:

1.popup-menu .filter-items .filter-icon {
2    display: none;
3}
With css
../../_images/after_filter.png
Without css
../../_images/before_filter.png

Search Button

1.widgetdiv .awf-dock-button .search-support-content {
2    visibility: hidden;
3}
With css
../../_images/after_search.png
Without css
../../_images/before_search.png