ie11CustomProperties icon indicating copy to clipboard operation
ie11CustomProperties copied to clipboard

CSS variables (Custom Properties) polyfill for IE11

Results 18 ie11CustomProperties issues
Sort by recently updated
recently updated
newest added

Fixed https://github.com/nuxodin/ie11CustomProperties/issues/62

** Description ** Just run test.htm directly from disk drive with css link to local file in same directory. Error on L636 (fetchCss function): `request.open('GET', url);` ** Version ** 4.1.0...

** Description ** I know this project was discontinued by the autor, but I still wanted to document this issue. I have one variable which gets its value reassigned in...

**Description** After updating from v3 to v4, some elements is not receiving proper styles from the custom properties, but looking at the Developer Tools, the two elements of the example...

On version 4.1.0, I encountered the next behaviour: ![image](https://user-images.githubusercontent.com/26359091/87665272-533c9d00-c76f-11ea-9e45-63925a0a62bb.png) My code looks like: color: var(--white) !important; where var(--white) is --white: #ffffff. Thanks in advance :D!

We have a use case where for theme switch we are using alternative stylesheets, so when our app loads first time it is a normal style sheet with rel="stylesheet" and...

First: Many thanks for making this -- looks like this will save us quite some time! I'm encountering a problem with CSS `::before` and `::after` elements. Minimal example follows using...

This is a fix for getPropertyValue when called with undefined or falsy value as main argument #76 In IE11 when getPropertyValue is called with no arguments the function throws an...

** Description ** In IE11 the getPropertyValue implementation throws an error on `property = property.trim();` [https://github.com/nuxodin/ie11CustomProperties/blob/master/ie11CustomProperties.js#L518](https://github.com/nuxodin/ie11CustomProperties/blob/master/ie11CustomProperties.js#L518) when property value is undefined. In IE11 getPropertyValue should return an empty string if...

When an element's pseudo class is styled using css variables, the styling fails to render in ie11 if the element itself has not been styled using css variables. Here is...