Making Source Visibility Icons Larger

TrueDungeon

New Member
Hello,

I'm looking for a way to increase the size of the visibility icons inside the source window.

Would this be possible through themes? If so, would someone be able to paste the code that I could use?

Thank you!
 

dmiller

New Member
I use these custom styles added to the end of the default theme. Note that they also increase the text size.

CSS:
SourceTree::item {
    font-size: 32px !important;
}

SourceTree::item {
    min-height: 48px;
}

SourceTreeItem QLabel {
    font-size: 32px !important;
}


SourceTreeItem QCheckBox {
    min-width: 32px !important;
    min-height: 32px !important;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 16px;
    padding-left: 16px;
}

VisibilityCheckBox::indicator {
    min-width: 32px !important;
    min-height: 32px !important;
}

LockedCheckBox::indicator {
    min-width: 32px !important;
    min-height: 32px !important;
}
 
Top