atom-ide-ui
atom-ide-ui copied to clipboard
High dpi support.
Description
Fonts in Symbol References tab and data tip overlay are small. It'd be great if we can adjust the font.
Actual Behavior
Font size is set to 12px in Symbol References tab and data tip overlay.
Versions
- Atom: 1.25.0
- Client OS: Fedora 27
- atom-ide-ui: 0.9.4
Additional Details
- Installed packages (
apm ls --installed
): ├── [email protected] (disabled) ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] (disabled) ├── [email protected] ├── [email protected] ├── [email protected] (disabled) └── [email protected]
We may look into supporting this more natively, but for now you can always adjust your stylesheet.less.
This might be a good starting point for what you're looking for:
.datatip-overlay {
atom-text-editor {
font-size: 20px;
line-height: 20px;
width: 500px;
}
}
.find-references-file {
font-size: 20px;
atom-text-editor {
font-size: 20px !important;
}
}
Thanks! I get it working with this:
// stom-ide-ui
.datatip-overlay {
font-size: 20px;
pre {
font-size: 16px;
}
// atom-text-editor {
// font-size: 20px;
// line-height: 20px;
// width: 500px;
// }
}
.find-references-file {
font-size: 18px;
atom-text-editor {
font-size: 20px !important;
}
}
But what does .datatip-overlay atom-text-editor
do? Should I not comment it out?