How to change the color of Hover popup links?
How to change the color of Hover popup links?
jwortmann
#2
If you only want to change the link color in the LSP popups, you can create a file mdpopups.css in the Packages/User folder with content:
.lsp_popup a {
color: peachpuff;
}
1 Like
phaiax
#3
Use this in Packages/User/mdpopups.css
to style the links you highlighted:
.actions a {
color: red;
}
0 Likes