@media (min-width: 960px) {
.tc-sidebar-scrollable {
background-color: rgba(244, 244, 244, 0.4);
}
<$reveal state="$:/state/sidebar" type="nomatch" text="yes">
.tc-sidebar-scrollable {
display: none;
}
</$reveal>
}
thank you
it worked... but
now it also make the side panel background of the jd mobile layout (which is terrific on phone screens) transparent.. and that makes it impossible to read anything. So I did some guess work (since I don't really write code) and added a @media to fix it.
So this is code
@media (min-width: 960px) {
.tc-sidebar-scrollable {
background-color: rgba(244, 244, 244, 0.4);
}
<$reveal state="$:/state/sidebar" type="nomatch" text="yes">
.tc-sidebar-scrollable {
display: none;
}
</$reveal>
}
Any recommendation on how to integrate this tiddler properly in to the wiki so it is not "lost" when I forget about it?