Operating system
Windows
Joplin version
2.13.13
Desktop version info
Joplin 2.13.13 (prod, win32)
Client ID: aed0e7bb27974a1a928714f1d929cfcf
Sync Version: 3
Profile Version: 44
Keychain Supported: Yes
Revision: c3cdeeb
Automatic Backlinks to note: 3.0.3
Copy Code Blocks: 1.1.0
Note Statistics: 1.0.4
Quick Move: 1.1.0
Remove Images: 0.0.2
Simple Backup: 1.3.6
Tag Links: 0.1.0
Templates: 2.4.0
What issue do you have?
I'm having a hard time reading the text on two particular places of Joplin: the settings page and the notes list.
Despite me being a passionate and seasoned Firefox user who is familiar with userChrome.css, I'm still struggling to find the specific elements responsible for those font sizes in the inspector. Of course I read the article on customization.
In the set page, my difficulty lies particularly in the keyboard shortcuts section. The right-side is too small, as seen in screenshot 1:
As for the notes list, which is even more important, the difference from the notebooks list is deafening (screenshot 2).
My current userChrome.css file is this, after drawing a few pieces of CSS from posts around here. The commented sections are failed attempts.
/*.note-list,*/
.item-list,
.list-item,
.list-item-container,
.side-bar,
div[toggleblock="1"], /* Notebooks and Tags headers */
.side-bar div div, /* synchronization message */
.synchronize-button {
font-family: "SF Pro Display", sans-serif, !important;
font-size: 1.2em !important;
font-weight: 500 !important;
}
::-webkit-scrollbar {
width: 12px;
}
/* NOTE LIST
.note-list > div,
.note-list > div > a
{
font-family: "SF Pro Display", sans-serif, !important;
background-color: white !important;
color: black !important;
font-size: 1.2em !important;
}
.note-list > div:hover,
.note-list a.list-item:hover
{
background-color: #ccc !important;
color: black !important;
}
.note-list > div > a:focus,
.note-list a.list-item:focus
{
background-color: black !important;
color: white !important;
}
*/
Any help?