silverwind

Results 1226 comments of silverwind
trafficstars

I tried setting `isEditing` but it did unfocus after the first written letter. What seems to work is this: ```js ReactDOM.findDOMNode(this).querySelector(".bp3-editable-text-content").dispatchEvent(new Event("focus")); ````

@giladgray thanks for reopening. I think it would be a great addition to have a `autofocus` option available on components. The questions is which ones should it be? I'd imagine...

https://github.com/openstyles/stylus/issues/767 indicates USO vars should work inside `domain()`, so we can probably add a custom domain option. Question is really if a `domain("")` will break anything, but I don't expect...

Yeah, GHE is and probably never will be properly supported because public GH moves much faster. We can at least give a user an option to try it, but it'll...

How are they embedded? iframe?

I see. What's also odd is that black bar on bottom. I wonder if it's somehow possible to define styles that only apply when a page is iframed. I guess...

Generally we recommend dark theme as the base setting in Github. We did invert these timeline images once, I guess the selector for them must have gone stale.

Hmm not sure on this one. We generally follow the rule that if something is not colored in the original themes, we don't add color. Of course there are exceptions...

If there's a tool to convert CSS to that format, I could maybe see us publishing that format but it will not support customization from the looks of it. Also...

I'd say extract all theme colors to CSS variables defined in JSON files, then build the usercss options from those files in `usercss.js` like ``` :root { --ghd-code-comment: #123; --ghd-code-keyword:...