Just have a look at the theme file at
```
/Applications/Geany.app/Contents/Resources/share/themes/Prof-Gnome/gtk-3.0/main-light.css
```
(assuming you are using the light theme, the dark one would be configured in
main-dark.css)
Scrollbar styling starts at line 3235. I just tried to modify
```css
scrollbar slider {
min-width: 6px;
min-height: 6px;
margin: -1px;
border: 3px solid transparent;
border-radius: 8px;
background-clip: padding-box;
background-color: #9ca0a1;
}
```
and increased `min-width` and `min-height` and it seems to work (Geany restart
is needed for this). You can also just put something like
```css
scrollbar slider {
min-width: 10px;
min-height: 10px;
}
```
into `geany.css` to avoid having to modify the theme directly.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-osx/issues/55#issuecomment-1978814905
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-osx/issues/55/[email protected]>