Mickaël Menu
Mickaël Menu
So far I didn't need to really debug inside Readium CSS itself, but the map files could be useful indeed. I have no opinion on the sub-modules headers, I guess...
> We should remove `|| document.getElementById("iframe-wrapper").contentWindow.document.documentElement` since it doesn’t add much to it, implementers dealing with iframes know they are using an iframe and the context is the contentDocument anyway....
A workaround that doesn't involve an update of Readium CSS is to use the day mode (`appearance 0`) and set the text and background colors manually: ```css --RS__backgroundColor: #faf4e8; --RS__textColor:...
> Do you know what happens if you apply exactly `392.72px`? How would you do this? I tried injecting `--RS__colWidth: 392.72px` but no matter the value, it doesn't change anything...
> but in the interval, you can do something like: > > ``` > > ``` That worked! I could reach the end of the chapter without any noticeable offset....
Great, thanks again!
It's pixel perfect with `--RS__viewportWidth: calc(1080px / 2.75);`, which can be set in JavaScript with: ```javascript setProperty("--RS__viewportWidth", "calc(" + nativeViewportWidth + "px / " + window.devicePixelRatio + ")"); ``` I...
I opened a PR on the Kotlin navigator: https://github.com/readium/r2-navigator-kotlin/pull/178 Considering that we can't really do much more at our level, feel free to close the issue when you want Jiminy....
I don't think there's any reason to avoid this, but showing only the title in the `:ZkNotes` is cleaner. I'm not sure we can change the color to hide the...
> Do people typically only search notes by the title only? Personally I use `junegunn/fzf.vim` for content search from within Vim. > Forgive my ignorance but does :ZkNotes search for...