|
@@ 218-220 (lines=3) @@
|
| 215 |
|
return $indentation . "\t" . implode(",", $token->Selectors) . " {"; |
| 216 |
|
} elseif ($token instanceof \CssAtKeyframesRulesetEndToken) { |
| 217 |
|
return $indentation . "\t" . "}"; |
| 218 |
|
} elseif ($token instanceof \CssAtKeyframesRulesetDeclarationToken) { |
| 219 |
|
return $indentation . "\t\t" . $token->Property . ": " . $token->Value . ($token->IsImportant ? " !important" : "") . ($token->IsLast ? "" : ";"); |
| 220 |
|
} elseif ($token instanceof \CssAtCharsetToken) { |
| 221 |
|
return $indentation . "@charset " . $token->Charset . ";"; |
| 222 |
|
} elseif ($token instanceof \CssAtFontFaceStartToken) { |
| 223 |
|
return "@font-face {"; |
|
@@ 224-226 (lines=3) @@
|
| 221 |
|
return $indentation . "@charset " . $token->Charset . ";"; |
| 222 |
|
} elseif ($token instanceof \CssAtFontFaceStartToken) { |
| 223 |
|
return "@font-face {"; |
| 224 |
|
} elseif ($token instanceof \CssAtFontFaceDeclarationToken) { |
| 225 |
|
return $indentation . "\t" . $token->Property . ": " . $token->Value . ($token->IsImportant ? " !important" : "") . ($token->IsLast ? "" : ";"); |
| 226 |
|
} else { |
| 227 |
|
return $indentation . $token; |
| 228 |
|
} |
| 229 |
|
} |