commit 8c4cb42e82f45b7a39fd9441d7da20e65440db01
parent 2272462503ce143b6f4f8006e8eec94da7a6a7c2
Author: markseu <mark2011@mayberg.se>
Date: Thu, 10 Mar 2016 20:44:10 +0100
System update (developers cut)
Diffstat:
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/system/plugins/core.php b/system/plugins/core.php
@@ -223,10 +223,10 @@ class YellowCore
if(defined("DEBUG") && DEBUG>=1)
{
foreach($this->page->headerData as $key=>$value) echo "YellowCore::sendPage $key: $value<br/>\n";
- $fileNameTheme = $this->config->get("themeDir").$this->page->get("theme").".css";
- $templateName = $this->page->get("template");
- $parserName = $this->page->get("parser");
- echo "YellowCore::sendPage theme:$fileNameTheme template:$templateName parser:$parserName<br/>\n";
+ $theme = $this->page->get("theme");
+ $template = $this->page->get("template");
+ $parser = $this->page->get("parser");
+ echo "YellowCore::sendPage theme:$theme template:$template parser:$parser<br/>\n";
}
return $statusCode;
}
diff --git a/system/themes/flatsite.css b/system/themes/flatsite.css
@@ -1,4 +1,5 @@
-/* Flatsite theme 0.6.3 */
+/* Flatsite theme */
+/* Version: 0.6.4 */
/* Designer: Mark Mayberg */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
@@ -48,6 +49,9 @@ a, img { border:none; text-decoration:none; }
.footer { margin-top:2em; clear:both; }
.footer a { color:#07d; }
.footer a:hover { color:#07d; text-decoration:underline; }
+.footer-left { float:left; }
+.footer-right { float:right; }
+.footer-banner { clear:both; }
.left { float:left; margin:0 1em 0 0; }
.center { display:block; margin:0 auto; }
.right { float:right; margin:0 0 0 1em; }
@@ -130,6 +134,7 @@ a, img { border:none; text-decoration:none; }
.navigation-search { padding-top:0.5em; }
.with-sidebar .main { margin-right:0em; }
.with-sidebar .sidebar { display:none; }
+ .footer-right { display:none; }
}
@media print {
body, h1, h2, h3, h4, h5, h6 { background-color:white; color:black; }