mirror of
https://github.com/logseq/logseq.git
synced 2026-05-04 10:56:32 +00:00
19 lines
449 B
CSS
19 lines
449 B
CSS
/* Is this required? */
|
|
.content p a:hover {
|
|
text-decoration: none;
|
|
border-bottom: 1px solid;
|
|
border-bottom-color: var(--ls-link-text-hover-color, black);
|
|
}
|
|
|
|
.content a.initial-color,
|
|
.content a.initial-color:hover {
|
|
color: initial;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#custom-context-menu {
|
|
@apply rounded-md shadow-lg transition ease-out duration-100 transform
|
|
opacity-100 scale-100 absolute;
|
|
|
|
z-index: calc(var(--ls-z-index-level-1) + 1);
|
|
} |