Created
November 7, 2022 07:05
-
-
Save d3v1an7/ad5085aabfdb37047fb7a96e9ca37b36 to your computer and use it in GitHub Desktop.
Logseq theme customisation: switch A/B/C priorities to P1/P2/P3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a[priority], | |
a.priority { | |
font-size: 0px; | |
} | |
a[priority]::before { | |
font-size: var(--ls-page-text-size); | |
} | |
a[priority=A]::before, | |
a.priority[href="#/page/A" i]:before { | |
content: "P1"; | |
visibility: visible; | |
} | |
a[priority=B]::before, | |
a.priority[href="#/page/B" i]:before { | |
content: "P2"; | |
visibility: visible; | |
} | |
a[priority=C]::before, | |
a.priority[href="#/page/C" i]:before { | |
content: "P3"; | |
visibility: visible; | |
} | |
a.priority[href="#/page/A" i], | |
[href="#/page/B" i], | |
[href="#/page/C" i] { | |
visibility: hidden; | |
width: 1.5em; | |
height: 1.5em; | |
white-space: nowrap; | |
position: relative; | |
} | |
a[priority]::before, | |
a.priority::before { | |
display: inline-block; | |
font-size: 16px; | |
font-weight: 650; | |
height: 1rem; | |
line-height: 1rem; | |
text-align: center; | |
width: 38px; | |
margin-left: -3px; | |
} | |
a.tooltip-priority:first-of-type::before { | |
margin-left: 0.5em; | |
margin-top: 0.5em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment