summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-19 21:22:01 +0400
committerAndrew Dolgov <[email protected]>2013-05-19 21:22:01 +0400
commit5bbc4bb4b04519036946db961ddea551fdf2eb6c (patch)
tree78bc9a94551c8899ac2c1479811fedd568e8dd00 /classes
parenta5eca8875078f7fea55e009a47694a2111354ae6 (diff)
move stylesheets to css/, reference default tt-rss stylesheets from
default.css to make custom themes easier
Diffstat (limited to 'classes')
-rw-r--r--classes/article.php2
-rw-r--r--classes/handler/public.php8
-rw-r--r--classes/opml.php2
-rw-r--r--classes/pref/prefs.php2
4 files changed, 7 insertions, 7 deletions
diff --git a/classes/article.php b/classes/article.php
index e9f86f298..398132d12 100644
--- a/classes/article.php
+++ b/classes/article.php
@@ -44,7 +44,7 @@ class Article extends Handler_Protected {
} else if ($mode == "raw") {
if ($_REQUEST['html']) {
header("Content-Type: text/html");
- print '<link rel="stylesheet" type="text/css" href="tt-rss.css"/>';
+ print '<link rel="stylesheet" type="text/css" href="css/tt-rss.css"/>';
}
$article = format_article($id, false);
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 7fa744107..3e868d56e 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -382,7 +382,7 @@ class Handler_Public extends Handler {
header('Content-Type: text/html; charset=utf-8');
print "<html><head><title>Tiny Tiny RSS</title>";
- stylesheet_tag("utility.css");
+ stylesheet_tag("css/utility.css");
javascript_tag("lib/prototype.js");
javascript_tag("lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls");
print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
@@ -553,7 +553,7 @@ class Handler_Public extends Handler {
print "<html>
<head>
<title>Tiny Tiny RSS</title>
- <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
+ <link rel=\"stylesheet\" type=\"text/css\" href=\"css/utility.css\">
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
</head>
<body>
@@ -735,7 +735,7 @@ class Handler_Public extends Handler {
header('Content-Type: text/html; charset=utf-8');
print "<html><head><title>Tiny Tiny RSS</title>";
- stylesheet_tag("utility.css");
+ stylesheet_tag("css/utility.css");
javascript_tag("lib/prototype.js");
print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
@@ -835,7 +835,7 @@ class Handler_Public extends Handler {
<head>
<title>Database Updater</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <link rel="stylesheet" type="text/css" href="utility.css"/>
+ <link rel="stylesheet" type="text/css" href="css/utility.css"/>
</head>
<style type="text/css">
span.ok { color : #009000; font-weight : bold; }
diff --git a/classes/opml.php b/classes/opml.php
index 3f4030dea..b37b72c21 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -24,7 +24,7 @@ class Opml extends Handler_Protected {
print "<html>
<head>
- <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
+ <link rel=\"stylesheet\" href=\"css/utility.css\" type=\"text/css\">
<title>".__("OPML Utility")."</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
</head>
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index 077addf41..32071e3b3 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -962,7 +962,7 @@ class Pref_Prefs extends Handler_Protected {
$value = str_replace("<br/>", "\n", $value);
- print_notice(T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "tt-rss.css"));
+ print_notice(T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "css/tt-rss.css"));
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";