Pietro Vertechi
Pietro Vertechi
I think it may be due on older version of Electron not supported the `datalist` tag, should be fixed on Blink master. Could you try `Pkg.checkout("Blink")` and report here whether...
Interesting. Are you calling Blink from the REPL or from Atom? Somehow, the two things call different Electron installation. What problem are you experiencing exactly? Do options not display or...
Could you copy paste your inspect element here? Just to make sure I'm not doing something unorthodox that Blink doesn't accept.
That HTML works on Blink on my machine. If I do: ```julia using Blink w = Window() html = """ """ body!(w,html) ``` I get the options to show up...
The `slider` stuff was actually very tricky to get right because it needs to work with arbitrary `AbstractVector` of potentially "unitful" quantity but at the same time I wanted to...
Layout /stylingis a bit of a delicate issue right now. My current plan is to have one default backend (Bulma) and use Bulma's default functions for layout (see the columns...
Sure! Though the correct file is `custom.css` in InteractBulma (I should probably rename/reorganize those files). A few more things: - if you call the slider with `label=nothing, readout=false` you get...
I've done a small reorganization so that you can include your new styles in style.css in InteractBase (and I'll delete custom.css as soon as it's not needed any more). To...
I could probably make the `Bulma` type a bit richer so that for example `Bulma(extra = "mystyle.css")` would be a theme that loads bulma libraries + `"mystyle.css"`. Concerning the separate...
Should be easy enough to add a `customcss` argument that adds some custom library to a theme: I'll get to it as soon as I have more time. Would love...