docker / kitematic

Visual Docker Container Management on Mac & Windows
https://kitematic.com
Apache License 2.0
12.25k stars 1.41k forks source link

0.17.12 does not scroll the mais list macOS version #5747

Open JSWilProf opened 3 years ago

JSWilProf commented 3 years ago

Expected behavior

I what see all items then I use to scroll and new items is shown

Actual behavior

Scroll does nothing

Information about the Issue

version 0.17.12 does not work version 0.17.11 does

Steps to reproduce the behavior

  1. Extract zip
  2. Install on Application folder
  3. Open app
  4. Use it
jacoblyw commented 3 years ago

Same problem scrolling Docker Hub search on 0.17.13

Information about the Issue Can't scroll search results in 0.17.13 on Mac OS

Steps to reproduce the behavior

  1. Click to add new container
  2. Search for container. If the results are more than the window, there are no scrollbars (or scrolling) to view overflow results.

I'm going to revert to 0.17.11

It would be nice to not have to do this (and abandoning Kitematic for Docker Desktop isn't an option since the feature set isn't there yet.

billybobza commented 3 years ago

So I think I've found the problem, Kitematic is an Electron app, and there is an issue with the CSS.

This is an issue with other electron apps where the overflow is set to hidden, which this is. I've seen this in the source code. Only thing is I'm not sure how to build an Electron app from the source code (yet).

For those fixing this, I'd start with changing /styles/container-home.less: overflow: hidden;

to overflow: auto;

Hope this helps someone.