I changed my font and font size, but now the Documentation Hover is much larger than all other content in my editor. How can I change that font size?
Thanks!
I changed my font and font size, but now the Documentation Hover is much larger than all other content in my editor. How can I change that font size?
Thanks!
I found that if I create a Packages/User/mdpopups.css
file and override font-size
there, then I can make things look proper:
html {
--mdpopups-font-mono: "Input Mono";
font-size: 11pt;
}
normal popups and those created by mdpopups pick up font size from editor by default.
Maybe your color scheme defines a popup_css
with some custom settings? Not sure what else might mess with popup CSS stuff globally.