trymeouteh

Results 443 comments of trymeouteh

Flatpak will be a great option for any Linux user to easily install Joplin.

2.44.6 and it does show the height is added to the element in the browser. ``` body { background-color: black; height: 1000%; } const myEditor = SUNEDITOR.create('myEditor', { resizingBar: false,...

This still persists in v2.45.1 However I think I found the issue. It is the _height_ and _width_ property for the `.se-container` class. Here is my code ``` body {...

> I notice the absence of a port when creating the container. I believe that xdebug2 uses port 9000 while xdebug3 uses 9003 so you might need to export that...

> > However this will force the container to use the host network > > It shouldn't be necessary to set `--network=host` in order to use the `host.containers.internal` address. For...

This is what I get when I run these commands in the terminal... ``` $ podman run docker.io/library/alpine grep host.containers.internal /etc/hosts 10.0.2.15 host.containers.internal host.docker.internal $ ifconfig enp0s3: inet 10.0.2.15 $...

UPDATE: I disabled SELinux in the Fedora VM by changing `SELINUX=disabled` in the */etc/selinux/config* file. I was able to get the debugger to work with SELinux disabled, however I still...

UPDATE: When I create the container without using the `--network=host` flag but set `xdebug.client_host` setting in the *php.ini* to my device local IP address `xdebug.client_host = 172.16.1.123`, it will work....

``` $ podman container inspect my-container | grep NetworkMode "NetworkMode": "slirp4netns", ```

I found this worked for me ``` /* Fixes checkboxes from not displaying indeterminate state when using svgs */ .pretty.p-has-indeterminate input[type="checkbox"]:indeterminate~.state.p-is-indeterminate .svg { display: block; opacity: 1; } ``` And...