You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tt-rss/themes/default.php

15 lines
289 B
PHP

<?php
header("Content-type: text/css");
function import_tag($filename) {
return "@import \"$filename?".filemtime($filename)."\";";
}
$styles = [ "tt-rss.css", "dijit.css", "cdm.css", "prefs.css" ];
foreach ($styles as $style) {
print import_tag("../css/$style") . "\n";
}
?>