diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2005-11-26 07:48:37 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2005-11-26 07:48:37 +0100 |
| commit | 503eb3498a037c8772289d4baf6044261b4f9f31 (patch) | |
| tree | a31abdcce82c206dab96da096af7978947fcf715 /tt-rss.php | |
| parent | 54a60e1a0001da296b73eee86c27babdb9abd4c3 (diff) | |
generic theme support, misc compact stylesheet iframe fixes
Diffstat (limited to 'tt-rss.php')
| -rw-r--r-- | tt-rss.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tt-rss.php b/tt-rss.php index 7983afca0..9d1dadbb6 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -18,6 +18,11 @@ <link rel="stylesheet" type="text/css" href="tt-rss.css"> + <? $user_theme = $_SESSION["theme"]; + if ($user_theme) { ?> + <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css"> + <? } ?> + <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?> <? if ($user_css_url) { ?> <link type="text/css" href="<?= $user_css_url ?>"/> |