This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Distinct difference in menu for second level of Visualization Structure
#1
Hi,

I noticed that when inserting a second level in visualization structure, there is no special difference in the selection menu except for some small indent (also in visu it nice that you can pop up and "isolate this level"). Is there any way to make the difference of levels more distinct. Let' s say by changing colour of descriptions or having the possibility to expand/collapse e.t.c. ?

Thank you in advanced.
Reply
#2
You can change any property via Custom CSS. This example will set second level header background color to red:
Code:
.level.level-1 .a {
  background: red !important;
}

Expand/collapse can be done via Custom JS but there are no ready-made examples for this.
Reply
#3
(25.09.2020, 09:38)admin Wrote: You can change any property via Custom CSS. This example will set second level header background color to red:
Code:
.level.level-1 .a {
  background: red !important;
}

Expand/collapse can be done via Custom JS but there are no ready-made examples for this.

Hi, thanks for the tip. Is it possible to give some more options like changing background and font colour through RGB code? Also, how to make fonts bold. And finally same things for 1st level... (As you can see I don' t have knowledge of CSS...)

Thank you in advance!
Reply
#4
Use this:
Code:
.level.level-1 .a {
  font-weight: bold;
  background-color: #f90 !important;
}
Reply


Forum Jump: