On Saturday, May 26, 2018 at 5:07:26 PM UTC+2, [email protected] wrote:
>
>
>> see: https://tiddlywiki.com/#Custom%20styles%20by%20data-tiddler-title
>>>
>>
>> Excellent, I'm on the right track then. Been studying those pages as
> well as the ones at tb5, especially the use of the browser's inspect
> element. I recognize your name from quite a few of threads I have read
> here-- I appreciate your patience and assistance.
>
> just a minor note-- the suggested css shorthand for combining similiar
> rules, ie
>
> [data-tags*="xyz"] .tc-title, .tc-subtitle {display: none;}
>
> didn't work for me, I had to separate them into separate rules? Was I
> correct with that?
>
What you wrote is equivalent to
[data-tags*="xyz"] .tc-title {
display: none;
}
.tc-subtitle {
display: none;
}
But that's probably not what you wanted.
[data-tags*="xyz"] .tc-title,
[data-tags*="xyz"] .tc-subtitle {
display: none;
}
It's much more readable and clear, what's meant
-m
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/3ed56287-152d-4b47-b14a-461e17059313%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.