Commit 944d6cff authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed bug causing background-position not to be folded

parent 22a73354
...@@ -10,7 +10,8 @@ let pattern = Str.regexp ("^\\(background\\|border\\|font\\|list-style" ^ ...@@ -10,7 +10,8 @@ let pattern = Str.regexp ("^\\(background\\|border\\|font\\|list-style" ^
"\\|outline\\|padding\\|margin\\)-\\(.*\\)$") "\\|outline\\|padding\\|margin\\)-\\(.*\\)$")
let order = function let order = function
| "background" -> ["color"; "image"; "repeat"; "attachment"; "position"] | "background" -> ["color"; "image"; "repeat"; "attachment"; "position-x";
"position-y"]
| "border" -> ["width"; "style"; "color"] | "border" -> ["width"; "style"; "color"]
| "font" -> ["style"; "variant"; "weight"; "size"; "family"] | "font" -> ["style"; "variant"; "weight"; "size"; "family"]
| "list-style" -> ["type"; "position"; "image"] | "list-style" -> ["type"; "position"; "image"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment