node-cssjanus icon indicating copy to clipboard operation
node-cssjanus copied to clipboard

Support flipping mutiple values under a text-shadow or border-shadow rule

Open MatmaRex opened this issue 7 years ago • 1 comments

CSSJanus only supports flipping one text-shadow or border-shadow, while the CSS syntax allows multiple.

(Originally filed at https://phabricator.wikimedia.org/T62805)

Input:

* {
 text-shadow: red 99px -1px 1px, blue 99px 2px 1px;
}

Expected output:

* {
 text-shadow: red -99px -1px 1px, blue -99px 2px 1px;
}

Actual output:

* {
 text-shadow: red -99px -1px 1px, blue 99px 2px 1px;
}

MatmaRex avatar Jun 20 '18 18:06 MatmaRex

(Just noting that #36 also fixes this bug.)

YairRand avatar Jun 20 '18 18:06 YairRand