From 8c4cb42e82f45b7a39fd9441d7da20e65440db01 Mon Sep 17 00:00:00 2001 From: markseu Date: Thu, 10 Mar 2016 20:44:10 +0100 Subject: [PATCH] System update (developers cut) --- system/plugins/core.php | 8 ++++---- system/themes/flatsite.css | 7 ++++++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/system/plugins/core.php b/system/plugins/core.php index 854053c..87fbc1a 100755 --- 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
\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
\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
\n"; } return $statusCode; } diff --git a/system/themes/flatsite.css b/system/themes/flatsite.css index 817d970..f843989 100644 --- 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; }