A normal end user should not be able to accidentally edit or delete shadow, system tiddlers. For this reason, I used the below CSS rule:
[data-tiddler-title^="$:/"] .tc-tiddler-controls button:not(
[aria-label*="close"]
){
display:none;
}
(Note: Create a tiddler, tag it with $:/tags/Stylesheet
, set the type to text/css
My question is how to limit this to shadow tiddlers, or specific system tiddlers? Is there any CSS solution or I have to go to use Wikitext and check the tiddler is a shadow tiddler?
Revision 1
This solution is not language specific
[data-tiddler-title^="$:/"] .tc-tiddler-controls button:not(.tc-btn-\%24\%3A\%2Fcore\%2Fui\%2FButtons\%2Fclose){
display:none;
}