mirror of
https://github.com/logseq/logseq.git
synced 2026-05-29 23:19:38 +00:00
30 lines
560 B
CSS
30 lines
560 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 absolute animate-in zoom-in-95;
|
|
|
|
z-index: calc(var(--ls-z-index-level-1) + 1);
|
|
width: 270px;
|
|
}
|
|
|
|
.ls-context-menu-content {
|
|
.menu-links-wrapper {
|
|
@apply border-none shadow-none overflow-visible;
|
|
}
|
|
|
|
[role=separator] {
|
|
@apply opacity-80;
|
|
}
|
|
}
|