summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-03 12:49:40 +0300
committerAndrew Dolgov <[email protected]>2017-12-03 12:50:07 +0300
commit5e68e24679e9a2248a3c28c8a4078b4bdad09f9c (patch)
tree673e36c0be03613d2bb2cec27ee61b3bcfed9242 /classes
parent4dc3f7e7790a4a1dff2a260a7c81c79e9f94acb3 (diff)
css/less updates
Diffstat (limited to 'classes')
-rw-r--r--classes/article.php5
-rw-r--r--classes/handler/public.php14
2 files changed, 10 insertions, 9 deletions
diff --git a/classes/article.php b/classes/article.php
index 0352e1b9e..1b4d26f70 100644
--- a/classes/article.php
+++ b/classes/article.php
@@ -634,12 +634,11 @@ class Article extends Handler_Protected {
$rv['content'] .= "<html><head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
<title>".$line["title"]."</title>".
- stylesheet_tag("css/default.css")."
-
+ stylesheet_tag("css/default.css")."
<link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
<link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
- </head><body id=\"ttrssZoom\">";
+ </head><body class=\"claro ttrss_zoom\">";
}
$rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">";
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 8b513df67..9fccf884b 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -538,14 +538,16 @@ class Handler_Public extends Handler {
header('Content-Type: text/html; charset=utf-8');
print "<html>
<head>
- <title>Tiny Tiny RSS</title>
- <link rel=\"stylesheet\" type=\"text/css\" href=\"css/utility.css\">
- <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
- <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
- <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
+ <title>Tiny Tiny RSS</title>";
+ print stylesheet_tag("css/utility.css");
+ print stylesheet_tag("css/default.css");
+
+ print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
+ <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
+ <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
</head>
- <body>
+ <body class='claro'>
<img class=\"floatingLogo\" src=\"images/logo_small.png\"
alt=\"Tiny Tiny RSS\"/>
<h1>".__("Subscribe to feed...")."</h1><div class='content'>";