Disable maximise/minimise option for widget in Dashboard Theme WAB

628
2
Jump to solution
01-25-2018 05:49 AM
deleted-user-GKyg-xriCvci
New Contributor II

Hello, I am struggling with customizing my Web App and I hope someone can help me. While using Dashboard Theme, all the widgets on dashboard by default have an option to maximise them. (Picture below).

I am using WAB Dev Edition to customize my apps but I can't find any settings which could disable this functionality or at least hide this icon. Also, the same for widget label, is there a possibility to hide it?

Any help would be appreciated.

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Aleksandra,

  Sure you can simply add a new css rule to the themes\DashboardTheme\common.css:

.lm_header .lm_controls .lm_maximise,
.lm_header .lm_tab .lm_title {
  display:none;
}

View solution in original post

2 Replies
RobertScheitlin__GISP
MVP Emeritus

Aleksandra,

  Sure you can simply add a new css rule to the themes\DashboardTheme\common.css:

.lm_header .lm_controls .lm_maximise,
.lm_header .lm_tab .lm_title {
  display:none;
}
deleted-user-GKyg-xriCvci
New Contributor II

It worked. Thank you very much Robert. 

0 Kudos