Casey Holzer
Casey Holzer
@desandro Why is this issue closed? As far as I can tell, it's still not possible to change options after initialization.
This is especially egregious in Chrome. See https://codesandbox.io/s/elated-goodall-d3h8eb?file=/src/index.js. ``` const app = document.getElementById("app"); app.style.fontFamily = "Segoe UI, Arial, sans-serif"; var juice = require("juice"); var result = juice(` div{color:red;} ${app.outerHTML} `);...
I'm looking for this exact thing. I'm trying to keep the leftmost column in place when scrolling horizontally. I'm using style on the column definition to accomplish this: ```js style:...
That's all I need, but I could see how somebody might want more columns to be sticky as well (e.g. the first 2). Offering the ability to style individual header...
Looks like there's a working fork here: https://github.com/sectsect/modernizr-loader.
At least on Yahoo, each player is assigned their own ID which is easily determined by the link to their player page. Could maybe implement the option to specify the...
I thought about adding the option to include team name, which should cover most cases. A position option would probably cover a lot of cases too. I think you've got...
It doesn't look like it yet. More info on a fix: https://reactjs.org/docs/react-component.html#unsafe_componentwillreceiveprops https://itnext.io/react17-or-how-to-get-rid-of-componentwillreceiveprops-c91f9a6f6f03
Is it the goal of this PR to update all the defaults in the docs as well (i.e. using values from https://github.com/webpack/webpack/blob/main/lib/config/defaults.js)?
scrollLeft is calculated differently for `direction="rtl"` in Chrome, Firefox, and IE/Edge, which is the cause of the rtl issues. Browser Type Most Left Most Right Initial WebKit default 0 100...