EN: A question for the LogSeq experts: is it possible to design the different graphs differently? I always have several graphs open at the same time and would like to recognise immediately which graph

EN: A question for the LogSeq experts: is it possible to design the different graphs differently? I always have several graphs open at the same time and would like to recognise immediately which graph I am in.
---
DE: Eine Frage an die LogSeq-Experten: gibt es die Möglichkeit, die verschiedenen Graphen optisch unterschiedlich zu gestalten? Ich habe ständig mehrere Graphen parallel offen und möchte sofort erkennen, in welchem Graphen ich mich befinde.

#LogSeq

10 points · 6 comments · view on lemmy.world

6 Comments

asmund@mastodon.social · 3 pts · 2y (1 reply)

@jeff @logseq have a css snippet that sets a custom background color on the header bar. I use different colors on the different graphs for exactly this purpose.

.cp__header {
background-color: pink;
}

jeff@friendica.opensocial.space · 2 pts · 2y

@asmund Oh, cool! That works. Thank you very much 🙂
Is there actually a list of CSS tags (like cp__header) that can be customised?

Inductor@feddit.de · 1 pts · 2y (3 replies)

Yes, I think a lot of the config is per graph. That means you should be able to set custom css or stuff like journal queries differently for each graph.

jeff@friendica.opensocial.space · 2 pts · 2y (2 replies)

@Inductor Great, that's good! - How and where can you define journal queries?

Inductor@feddit.de · 1 pts · 2y (1 reply)

Under config.edn at :default-queries. Those are the queries it shows under the current journal page.

In config.edn you can also set all sorts of other stuff like which features are enabled and what the default page/sidebar is.

jeff@friendica.opensocial.space · 2 pts · 2y

@Inductor Ah, ok - Thank you for this hint 🙂