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:
authorStefan Giehl <stefan@matomo.org>2019-02-13 01:31:08 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2019-02-13 01:31:08 +0300
commitc6cc4cd89e3b64767219293aab33863b9c501684 (patch)
tree203416d78a5c277cc4aedbfc3811ac981344ae62 /plugins/CoreHome/VisitorDetails.php
parent6c4bfb8b8ea121e326110cfddd50ced30a90fb8a (diff)
Show actions in visitorlog as a (unnumerated) timeline (#13916)
* Show actions in visitorlog as a (unnumerated) timeline * use new svg icons in visitor log * use new icons also for visitor type * ligthen icons a bit * improve icon alignment * lighten icons bit more * adjust line color * Lighten svg images even further. * Updating screenshots. * show conversion count as green circle * Fixing tests. * Update expected screenshots.
Diffstat (limited to 'plugins/CoreHome/VisitorDetails.php')
-rw-r--r--plugins/CoreHome/VisitorDetails.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CoreHome/VisitorDetails.php b/plugins/CoreHome/VisitorDetails.php
index 88ae63a09c..d40e51c174 100644
--- a/plugins/CoreHome/VisitorDetails.php
+++ b/plugins/CoreHome/VisitorDetails.php
@@ -35,9 +35,9 @@ class VisitorDetails extends VisitorDetailsAbstract
$status = $this->getVisitEcommerceStatus();
if (in_array($status, array('ordered', 'orderedThenAbandonedCart'))) {
- return "plugins/Morpheus/images/ecommerceOrder.png";
+ return "plugins/Morpheus/images/ecommerceOrder.svg";
} elseif ($status == 'abandonedCart') {
- return "plugins/Morpheus/images/ecommerceAbandonedCart.png";
+ return "plugins/Morpheus/images/ecommerceAbandonedCart.svg";
}
// Note: it is important that there is no icon when there was no ecommerce conversion
return null;
@@ -56,7 +56,7 @@ class VisitorDetails extends VisitorDetailsAbstract
protected function getVisitorGoalConvertedIcon()
{
return $this->isVisitorGoalConverted()
- ? "plugins/Morpheus/images/goal.png"
+ ? "plugins/Morpheus/images/goal.svg"
: null;
}