| 123456789101112131415161718192021222324252627 |
- /* 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 {
- @apply p-0;
- .menu-links-wrapper {
- @apply border-none shadow-none;
- }
- }
|