OLD | NEW |
(Empty) | |
| 1 { |
| 2 "lines-between-rulesets": 1, |
| 3 "remove-empty-rulesets": true, |
| 4 "always-semicolon": true, |
| 5 "color-case": "lower", |
| 6 "block-indent": " ", |
| 7 "color-shorthand": true, |
| 8 "element-case": "lower", |
| 9 "eof-newline": true, |
| 10 "leading-zero": true, |
| 11 "quotes": "double", |
| 12 "space-before-colon": "", |
| 13 "space-after-colon": " ", |
| 14 "space-before-combinator": " ", |
| 15 "space-after-combinator": " ", |
| 16 "space-between-declarations": "\n", |
| 17 "space-before-opening-brace": "\n", |
| 18 "space-after-opening-brace": "\n", |
| 19 "space-after-selector-delimiter": "\n", |
| 20 "space-before-selector-delimiter": "", |
| 21 "space-before-closing-brace": "\n", |
| 22 "strip-spaces": true, |
| 23 "tab-size": 2, |
| 24 "sort-order-fallback": "abc", |
| 25 "sort-order": [ |
| 26 "display", |
| 27 "visibility", |
| 28 |
| 29 "position", |
| 30 "top", |
| 31 "right", |
| 32 "bottom", |
| 33 "left", |
| 34 "float", |
| 35 "clear", |
| 36 "z-index", |
| 37 |
| 38 "flex", |
| 39 "flex-direction", |
| 40 "flex-order", |
| 41 "flex-pack", |
| 42 "flex-align", |
| 43 "box-sizing", |
| 44 "table-layout", |
| 45 "empty-cells", |
| 46 "border-spacing", |
| 47 "border-collapse", |
| 48 "overflow", |
| 49 "overflow-x", |
| 50 "overflow-y", |
| 51 "width", |
| 52 "min-width", |
| 53 "max-width", |
| 54 "height", |
| 55 "min-height", |
| 56 "max-height", |
| 57 "margin", |
| 58 "margin-top", |
| 59 "margin-right", |
| 60 "margin-bottom", |
| 61 "margin-left", |
| 62 "padding", |
| 63 "padding-top", |
| 64 "padding-right", |
| 65 "padding-bottom", |
| 66 "padding-left", |
| 67 "border", |
| 68 "border-collapse", |
| 69 "border-width", |
| 70 "border-style", |
| 71 "border-color", |
| 72 "border-top", |
| 73 "border-top-width", |
| 74 "border-top-style", |
| 75 "border-top-color", |
| 76 "border-right", |
| 77 "border-right-width", |
| 78 "border-right-style", |
| 79 "border-right-color", |
| 80 "border-bottom", |
| 81 "border-bottom-width", |
| 82 "border-bottom-style", |
| 83 "border-bottom-color", |
| 84 "border-left", |
| 85 "border-left-width", |
| 86 "border-left-style", |
| 87 "border-left-color", |
| 88 "border-radius", |
| 89 "border-top-left-radius", |
| 90 "border-top-right-radius", |
| 91 "border-bottom-right-radius", |
| 92 "border-bottom-left-radius", |
| 93 "border-image", |
| 94 "border-image-source", |
| 95 "border-image-slice", |
| 96 "border-image-width", |
| 97 "border-image-outset", |
| 98 "border-image-repeat", |
| 99 "outline", |
| 100 "outline-width", |
| 101 "outline-style", |
| 102 "outline-color", |
| 103 "outline-offset", |
| 104 "box-shadow", |
| 105 "text-shadow", |
| 106 |
| 107 "color", |
| 108 "opacity", |
| 109 "background", |
| 110 "background-color", |
| 111 "background-image", |
| 112 "background-repeat", |
| 113 "background-attachment", |
| 114 "background-position", |
| 115 "background-position-x", |
| 116 "background-position-y", |
| 117 "background-clip", |
| 118 "background-origin", |
| 119 "background-size", |
| 120 |
| 121 "font", |
| 122 "font-family", |
| 123 "font-size", |
| 124 "font-weight", |
| 125 "font-style", |
| 126 "font-variant", |
| 127 "line-height", |
| 128 "text-align", |
| 129 "text-align-last", |
| 130 "vertical-align", |
| 131 "white-space", |
| 132 "text-decoration", |
| 133 "text-transform", |
| 134 "letter-spacing", |
| 135 "word-spacing", |
| 136 "text-transform", |
| 137 "text-overflow", |
| 138 "text-overflow-ellipsis", |
| 139 "text-overflow-mode", |
| 140 "word-wrap", |
| 141 "word-break", |
| 142 "tab-size", |
| 143 |
| 144 "content", |
| 145 "quotes", |
| 146 "cursor", |
| 147 "counter-reset", |
| 148 "counter-increment", |
| 149 "list-style", |
| 150 "list-style-position", |
| 151 "list-style-type", |
| 152 "list-style-image", |
| 153 |
| 154 "transition", |
| 155 "transition-delay", |
| 156 "transition-timing-function", |
| 157 "transition-duration", |
| 158 "transition-property", |
| 159 "transform", |
| 160 "transform-origin", |
| 161 "animation", |
| 162 "animation-name", |
| 163 "animation-duration", |
| 164 "animation-play-state", |
| 165 "animation-timing-function", |
| 166 "animation-delay", |
| 167 "animation-iteration-count", |
| 168 "animation-iteration-count", |
| 169 "animation-direction" |
| 170 ] |
| 171 } |
OLD | NEW |