aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install/css/install.css4
-rw-r--r--views/installation/install/pages/requirements.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/install/css/install.css b/install/css/install.css
index 25a8c865c..b1a038d1b 100644
--- a/install/css/install.css
+++ b/install/css/install.css
@@ -209,6 +209,10 @@ select {
font-size: 90%;
}
+.elgg-require-database {
+ padding-bottom: 50px;
+}
+
.install-nav a {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
diff --git a/views/installation/install/pages/requirements.php b/views/installation/install/pages/requirements.php
index b6516840f..e3689e761 100644
--- a/views/installation/install/pages/requirements.php
+++ b/views/installation/install/pages/requirements.php
@@ -20,7 +20,7 @@ $report = $vars['report'];
foreach ($report as $category => $checks) {
$title = elgg_echo("install:require:$category");
echo "<h3>$title</h3>";
- echo "<ul>";
+ echo "<ul class=\"elgg-require-$category\">";
foreach ($checks as $check) {
echo "<li class=\"{$check['severity']}\">";
echo autop($check['message']);