diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html
index af9e00a614..7ab2608e13 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 2322b3da88..41d0ae8d42 100644
--- a/phpBB/adm/style/admin.css
+++ b/phpBB/adm/style/admin.css
@@ -2506,6 +2506,14 @@ fieldset.permissions .padding {
/* Classes for additional tasks
---------------------------------------- */
+.current-ext {
+ color: #228822;
+}
+
+.outdated-ext {
+ color: #BC2A4D;
+}
+
.phpinfo {
overflow: auto;
width: 99%;
|