From c6c564ede1d8ff8a8aa0dddc19cf70790f976b06 Mon Sep 17 00:00:00 2001 From: Matthias Blum Date: Fri, 22 Jul 2022 15:48:29 +0100 Subject: [PATCH 1/4] Fix typo --- src/pages/Home/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Home/index.js b/src/pages/Home/index.js index 4df4a9b3c..1fbe79f83 100644 --- a/src/pages/Home/index.js +++ b/src/pages/Home/index.js @@ -185,7 +185,7 @@ const Announcement = () => ( className={f('small', 'icon', 'icon-common', 'icon-announcement')} />{' '}

- The Pfam website will be decomissioned on October 5th 2022. All Pfam + The Pfam website will be decommissioned on October 5th 2022. All Pfam data for this, and future versions, will be available here on the InterPro website. You can read more about it in our{' '} From 65f074dc8f76126071d36e6f5a3635278f943d3c Mon Sep 17 00:00:00 2001 From: Matthias Blum Date: Fri, 22 Jul 2022 15:55:00 +0100 Subject: [PATCH 2/4] Update info message and add link to blog post --- src/pages/Home/index.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/pages/Home/index.js b/src/pages/Home/index.js index 1fbe79f83..5f561146c 100644 --- a/src/pages/Home/index.js +++ b/src/pages/Home/index.js @@ -185,12 +185,14 @@ const Announcement = () => ( className={f('small', 'icon', 'icon-common', 'icon-announcement')} />{' '}

- The Pfam website will be decommissioned on October 5th 2022. All Pfam - data for this, and future versions, will be available here on the - InterPro website. You can read more about it in our{' '} - + The Pfam website will be decommissioned on October 5th 2022. Data for + the current and future Pfam releases will be made available on the + Interpro website. You can read more about the Pfam website + decommission in our{' '} + blog post + .

From ee2cc9d2b625eafa1c7205f38d4017d658ebf508 Mon Sep 17 00:00:00 2001 From: Matthias Blum Date: Mon, 1 Aug 2022 10:30:36 +0100 Subject: [PATCH 3/4] Update text --- src/pages/Home/index.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/pages/Home/index.js b/src/pages/Home/index.js index 5f561146c..6ee471487 100644 --- a/src/pages/Home/index.js +++ b/src/pages/Home/index.js @@ -185,11 +185,16 @@ const Announcement = () => ( className={f('small', 'icon', 'icon-common', 'icon-announcement')} />{' '}

- The Pfam website will be decommissioned on October 5th 2022. Data for - the current and future Pfam releases will be made available on the - Interpro website. You can read more about the Pfam website - decommission in our{' '} - + Powering down the Pfam website +
+ On October 5th, we will start redirecting the traffic from Pfam ( +
pfam.xfam.org) to InterPro ( + www.ebi.ac.uk/interpro). The + Pfam website will be available at{' '} + legacy.pfam.xfam.org until + January 2023, when it will be decommissioned. You can read more about + the sunset period in our{' '} + blog post . From 7704ba002063a5cceda31c7c76435ec09091d6f3 Mon Sep 17 00:00:00 2001 From: "Gustavo A. Salazar" Date: Tue, 2 Aug 2022 10:52:46 +0100 Subject: [PATCH 4/4] Using external links in pfam announcement --- src/pages/Home/index.js | 31 +++++++++++++++++++++++-------- src/pages/Home/style.css | 9 +++++++++ 2 files changed, 32 insertions(+), 8 deletions(-) diff --git a/src/pages/Home/index.js b/src/pages/Home/index.js index 6ee471487..33893f8bc 100644 --- a/src/pages/Home/index.js +++ b/src/pages/Home/index.js @@ -188,15 +188,30 @@ const Announcement = () => ( Powering down the Pfam website
On October 5th, we will start redirecting the traffic from Pfam ( - pfam.xfam.org) to InterPro ( - www.ebi.ac.uk/interpro). The - Pfam website will be available at{' '} - legacy.pfam.xfam.org until - January 2023, when it will be decommissioned. You can read more about - the sunset period in our{' '} - + + pfam.xfam.org + + ) to InterPro ( + + www.ebi.ac.uk/interpro + + ). The Pfam website will be available at{' '} + + legacy.pfam.xfam.org + {' '} + until January 2023, when it will be decommissioned. You can read more + about the sunset period in our{' '} + blog post - + .

diff --git a/src/pages/Home/style.css b/src/pages/Home/style.css index 91eee22c5..ff52d7bc9 100644 --- a/src/pages/Home/style.css +++ b/src/pages/Home/style.css @@ -16,3 +16,12 @@ cursor: pointer; } } + +span.link { + color: var(--colors-submain); + &.disabled { + cursor: not-allowed; + opacity: 0.7; + text-decoration: none; + } +}