From 41077cae64ce03d261461aa73c1bc30ef5cb4a3a Mon Sep 17 00:00:00 2001 From: Oliver Schramm Date: Sat, 9 Sep 2017 19:00:01 +0200 Subject: [PATCH 1/3] [ticket/14677] Add exclamation mark to outdated extensions PHPBB3-14677 --- phpBB/adm/style/acp_ext_list.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index af9e00a614..c4b1269bc4 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -52,6 +52,7 @@ style="color: #228822;"style="color: #BC2A4D;">{enabled.META_VERSION} + {enabled.META_VERSION} @@ -77,6 +78,7 @@ style="color: #228822;"style="color: #BC2A4D;">{disabled.META_VERSION} + {disabled.META_VERSION} From 38bf2e3771e5769fdc6cb1b3394f8897b5b4323a Mon Sep 17 00:00:00 2001 From: Oliver Schramm Date: Sun, 10 Sep 2017 12:19:13 +0200 Subject: [PATCH 2/3] [ticket/14677] Make the exclamation mark red PHPBB3-14677 --- phpBB/adm/style/acp_ext_list.html | 4 ++-- phpBB/adm/style/admin.css | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index c4b1269bc4..a09eb97abc 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -52,7 +52,7 @@ style="color: #228822;"style="color: #BC2A4D;">{enabled.META_VERSION} - + {enabled.META_VERSION} @@ -78,7 +78,7 @@ style="color: #228822;"style="color: #BC2A4D;">{disabled.META_VERSION} - + {disabled.META_VERSION} diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 2322b3da88..905259faec 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -2506,6 +2506,10 @@ fieldset.permissions .padding { /* Classes for additional tasks ---------------------------------------- */ +.outdated-ext-icon { + color: #BC2A4D; +} + .phpinfo { overflow: auto; width: 99%; From aea84322e97c05db23cd4004b2fc5759b3064493 Mon Sep 17 00:00:00 2001 From: Oliver Schramm Date: Wed, 20 Sep 2017 14:20:06 +0200 Subject: [PATCH 3/3] [ticket/14677] Use classes for colors in ext list PHPBB3-14677 --- phpBB/adm/style/acp_ext_list.html | 8 ++++---- phpBB/adm/style/admin.css | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index a09eb97abc..7ab2608e13 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -51,8 +51,8 @@ {enabled.META_DISPLAY_NAME} - style="color: #228822;"style="color: #BC2A4D;">{enabled.META_VERSION} - + {enabled.META_VERSION} + {enabled.META_VERSION} @@ -77,8 +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 905259faec..41d0ae8d42 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -2506,7 +2506,11 @@ fieldset.permissions .padding { /* Classes for additional tasks ---------------------------------------- */ -.outdated-ext-icon { +.current-ext { + color: #228822; +} + +.outdated-ext { color: #BC2A4D; }