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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-05-29 22:53:55 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-05-29 22:53:55 +0300
commita7dab61892d6ffefc88a551da022b0f10be5be03 (patch)
treef55af0ff2cd74bded161646b1057a26ce598ebc8 /plugins/Installation
parentbbf05c1fce83a5ea0e5154635ab95ff6edbe6c24 (diff)
Following discussion in piwik/piwik#7895 the default table style is under the simple-table class name
Diffstat (limited to 'plugins/Installation')
-rwxr-xr-xplugins/Installation/templates/_systemCheckSection.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Installation/templates/_systemCheckSection.twig b/plugins/Installation/templates/_systemCheckSection.twig
index 6578313194..2e8aaac180 100755
--- a/plugins/Installation/templates/_systemCheckSection.twig
+++ b/plugins/Installation/templates/_systemCheckSection.twig
@@ -1,12 +1,12 @@
{% import _self as local %}
-<table class="table system-check" id="systemCheckRequired">
+<table class="simple-table system-check" id="systemCheckRequired">
{{ local.diagnosticTable(diagnosticReport.getMandatoryDiagnosticResults()) }}
</table>
<h3>{{ 'Installation_Optional'|translate }}</h3>
-<table class="table system-check" id="systemCheckOptional">
+<table class="simple-table system-check" id="systemCheckOptional">
{{ local.diagnosticTable(diagnosticReport.getOptionalDiagnosticResults()) }}
</table>