@@ 146-148 (lines=3) @@ | ||
143 | return $indentation . "\t" . implode(",", $token->Selectors) . " {"; |
|
144 | } elseif ($token instanceof \CssAtKeyframesRulesetEndToken) { |
|
145 | return $indentation . "\t" . "}"; |
|
146 | } elseif ($token instanceof \CssAtKeyframesRulesetDeclarationToken) { |
|
147 | return $indentation . "\t\t" . $token->Property . ": " . $token->Value . ($token->IsImportant ? " !important" : "") . ($token->IsLast ? "" : ";"); |
|
148 | } elseif ($token instanceof \CssAtCharsetToken) { |
|
149 | return $indentation . "@charset " . $token->Charset . ";"; |
|
150 | } elseif ($token instanceof \CssAtFontFaceStartToken) { |
|
151 | return "@font-face {"; |
|
@@ 152-154 (lines=3) @@ | ||
149 | return $indentation . "@charset " . $token->Charset . ";"; |
|
150 | } elseif ($token instanceof \CssAtFontFaceStartToken) { |
|
151 | return "@font-face {"; |
|
152 | } elseif ($token instanceof \CssAtFontFaceDeclarationToken) { |
|
153 | return $indentation . "\t" . $token->Property . ": " . $token->Value . ($token->IsImportant ? " !important" : "") . ($token->IsLast ? "" : ";"); |
|
154 | } else { |
|
155 | return $indentation . $token; |
|
156 | } |
|
157 | } |