Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNigel <munro98@gmail.com>2015-01-14 04:51:09 +0300
committerNigel <munro98@gmail.com>2015-01-14 04:51:09 +0300
commit3f856a1159d9c82bc3dbce67a805a362cbde16c2 (patch)
treeab790e197dacff254c6404cbe9d10be4de98a50e /core/ReportRenderer.php
parentcf9c94cda1711b729e22727c3d9c85d6c405f127 (diff)
Changed the Email report to look more consistent with the piwik UI.
Diffstat (limited to 'core/ReportRenderer.php')
-rw-r--r--core/ReportRenderer.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/ReportRenderer.php b/core/ReportRenderer.php
index c82c2f1cf1..c34012cd27 100644
--- a/core/ReportRenderer.php
+++ b/core/ReportRenderer.php
@@ -23,11 +23,11 @@ use Piwik\BaseFactory;
*/
abstract class ReportRenderer extends BaseFactory
{
- const DEFAULT_REPORT_FONT_FAMILY = 'dejavusans';
- const REPORT_TEXT_COLOR = "68,68,68";
- const REPORT_TITLE_TEXT_COLOR = "126,115,99";
- const TABLE_HEADER_BG_COLOR = "228,226,215";
- const TABLE_HEADER_TEXT_COLOR = "37,87,146";
+ const DEFAULT_REPORT_FONT_FAMILY = 'Verdana, sans-serif';
+ const REPORT_TEXT_COLOR = "13,13,13";
+ const REPORT_TITLE_TEXT_COLOR = "13,13,13";
+ const TABLE_HEADER_BG_COLOR = "255,255,255";
+ const TABLE_HEADER_TEXT_COLOR = "13,13,13";
const TABLE_HEADER_TEXT_TRANSFORM = "uppercase";
const TABLE_HEADER_TEXT_WEIGHT = "normal";
const TABLE_CELL_BORDER_COLOR = "231,231,231";