JayVii
JayVii
Another addition: In my [`ktistec-tweaks`](https://src.jayvii.de/pub/ktistec-tweaks) repository, I also have a little description on how to include custom CSS within docker-containers. For this, I decided to write custom rules in their...
I think either way has pro's and con's: - `custom.css`: Super easy to implement (just need to reference an additional css file), allows instant changes on-the-fly (which is nice if...
got a lot on my plate this week, but I could try to hack on something next weekend
I tried a few hacks, but nothing was really good enough (I am not very skillful in terms of CSS...). However, in general there is the theming option both for...
I did try some custom overrides that do seem to work fine for now. but they are awfully hacky tbh...: ``` @media (prefers-color-scheme: dark) { body { background-color: #111 !important;...
Sorry, I missed your message! I test it with firefox on linux. The instance runs inside docker. I updated the CSS in my instance. Unfortunately I need to re-do it...
Here aresome example screenshots of how it looks like if your browser is set to dark mode and you open up the site (it uses the [prefers-color-scheme CSS tag](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme): ...
FYI, I had the same issue with 2.0.0-6 (not with 2.0.0-5 for some reason, though). The info from https://github.com/toddsundsted/ktistec/issues/55#issuecomment-1352445140 cleared the issue and the docker-image started successfully afterwards. Might be...
The semantic UI sets the CSS for the images in the timeline as: ```css .ui.feed > .event img.extra.image { width: 100%; } ``` which results in the clipping of images...
I did some CSS dabbling and come up with [this](https://src.jayvii.de/pub/ktistec-tweaks/file/css/attachments.css.html): ```css /* Try to avoid image and video clipping in feed */ .ui.feed > .event img.extra.image, .ui.feed > .event video.extra.video...