View Single Post
Old 06-16-2025, 01:57 PM   #40
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 8,816
Karma: 6000000
Join Date: Nov 2009
Device: many
In fact, I think that at least one of the Examples for a style selector in Clips is wrong.

One style says "Highlight Anchor ids" and if appiled as an attribute selector on anchors seems to do nothing:
Code:
a[id class!="sigil_indexc_marker] { color: blue; }
I think what should be there according to modern CSS guides is the following:

Code:
a[id]:not([class="sigil_index_marker"]){ color:blue; }
The bottom one at least does what you think and works. The actual clip one seems to be broken.

Maybe we really should recreate the Clips Examples as they seem to be in bad shape.
KevinH is offline   Reply With Quote