diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html
index 797cdc09bd..5375342a5e 100644
--- a/phpBB/adm/style/acp_ext_list.html
+++ b/phpBB/adm/style/acp_ext_list.html
@@ -51,7 +51,8 @@
{enabled.META_DISPLAY_NAME} |
- style="color: #228822;"style="color: #BC2A4D;">{enabled.META_VERSION}
+ {enabled.META_VERSION}
+
{enabled.META_VERSION}
@@ -76,7 +77,8 @@
| {disabled.META_DISPLAY_NAME} |
- style="color: #228822;"style="color: #BC2A4D;">{disabled.META_VERSION}
+ {disabled.META_VERSION}
+
{disabled.META_VERSION}
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css
index b93318e7eb..34ee4184bf 100644
--- a/phpBB/adm/style/admin.css
+++ b/phpBB/adm/style/admin.css
@@ -2757,6 +2757,14 @@ fieldset.permissions .permissions-switch {
/* Classes for additional tasks
---------------------------------------- */
+.current-ext {
+ color: #228822;
+}
+
+.outdated-ext {
+ color: #BC2A4D;
+}
+
.phpinfo {
overflow: auto;
width: 99%;
|