I was trying to rework this concept of Virtual tiddlers to work on missing tiddlers. I wanted to hide at least the edit button, only on the missing tiddler, idealy by CSS introduced in a custom View Template.
<style>
[data-tiddler-title=`$(currentTiddler)$`] {
.tc-tiddler-controls button:not(.tc-btn-\%24\%3A\%2Fcore\%2Fui\%2FButtons\%2Fclose) {
display:none;
}
.tc-title {
font-style: normal;
font-weight: normal;
}
/* just for demo */
border: 1px solid yellow;
}
</style>
- The above does not work