viewerjs icon indicating copy to clipboard operation
viewerjs copied to clipboard

An option to make the navbar's thumbnails bigger

Open ataylor32 opened this issue 5 years ago • 3 comments

From what I've seen in the docs, there doesn't seem to be a way to make the navbar's thumbnails bigger. I'm working on a website that has many users who don't have great vision. It would be nice to double the size of the thumbnails. Is this doable?

ataylor32 avatar Dec 09 '19 20:12 ataylor32

You can override the navbar's style to enlarge the thumbnails.

fengyuanchen avatar Dec 14 '19 07:12 fengyuanchen

I'd like this as well!

It's seem rather complicated to override the navbar's style, as there is a fixed width/height on 3-4-5 elements. And style is applied inline instead of in the css file.

simplenotezy avatar Feb 19 '20 16:02 simplenotezy

Just add for example 4x bigger values than default:

.viewer-list {
  height: 200px;
}
.viewer-list > li {
  height: 200px;
  width: 120px;
}

martinschilliger avatar Jun 13 '21 15:06 martinschilliger