@EvilRaccoon said in More Speed Dial preferences.:
seems like there's no solution for white thumbnails other than looking for a custom thumbnail every time...
You could make it a bit better with CSS filters. Like this for example:
/* Makes speed dial thumbnails darker */
.thumbnail-image img {
filter: brightness(0.4) contrast(1.3);
}
There are also filters like grayscale(1) and invert(1), but those can really alter the images.
I'm trying to figure out where to change the thumbnail size in OperaGX CSS file
You can create a new CSS file on the same level as modSettings.css or an overrides.css file like mentioned on GitHub here. Then you can add whatever other CSS you want. This might work for you:
/* Reduce height of speed dials */
.startpage .draggable.dial,
.speeddial .dial:last-of-type {
height: 140px !important;
}
/* Fit thumbnail image better */
.startpage .dial .thumbnail-image {
height: 108px !important;
}
4aefb0e0-d299-4ee6-83cd-50915a062600-image.png