OLD | NEW |
(Empty) | |
| 1 foo: bar |
| 2 color: $color !important |
| 3 -moz-border-radius: 10px |
| 4 transition-timing-function: ease-in-out |
| 5 |
| 6 :color #{$color} |
| 7 :font-size 0.5em + 3em |
| 8 |
| 9 ---------------------------------------------------- |
| 10 |
| 11 [ |
| 12 ["property-line", [ |
| 13 ["property", "foo"], |
| 14 ["punctuation", ":"], |
| 15 " bar" |
| 16 ]], |
| 17 ["property-line", [ |
| 18 ["property", "color"], |
| 19 ["punctuation", ":"], |
| 20 ["variable", "$color"], |
| 21 ["important", "!important"] |
| 22 ]], |
| 23 ["property-line", [ |
| 24 ["property", "-moz-border-radius"], |
| 25 ["punctuation", ":"], |
| 26 " 10px" |
| 27 ]], |
| 28 ["property-line", [ |
| 29 ["property", "transition-timing-function"], |
| 30 ["punctuation", ":"], |
| 31 " ease-in-out" |
| 32 ]], |
| 33 ["property-line", [ |
| 34 ["punctuation", ":"], |
| 35 ["property", "color"], |
| 36 ["variable", "#{$color}"] |
| 37 ]], |
| 38 ["property-line", [ |
| 39 ["punctuation", ":"], |
| 40 ["property", "font-size"], |
| 41 " 0.5em ", ["operator", "+"], " 3em" |
| 42 ]] |
| 43 ] |
| 44 |
| 45 ---------------------------------------------------- |
| 46 |
| 47 Checks for properties. |
OLD | NEW |