Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
themeEclipse
#topBar {
    background-color: red
}

#leftBarView{
	visibility: hidden
}

Example to hide the SignOnPhone or Mouse button in the viewer:

Please note that both elements were a "div" element before version 21.16. With version 21.16 and the versions afterwards  both elements were changed to a "button" element.

Before 21.16 and hide mouse and SignOnPhone

Code Block
languagejava
themeEclipse
div[title='Mouse'] {
    visibility: hidden;
}

div[title='SignOnPhone'] {
    visibility: hidden;
}

With 21.16 and the versions afterwards and hide mouse and SignOnPhone

Code Block
languagejava
themeEclipse
button[data-id='SignOnPhone'] {
    visibility: hidden;
}

button[data-id='Mouse'] {
    visibility: hidden;
}

Result of both actions:

Image Added

Without those configuration the following settings will be visible:

Image Added

...