diff --git a/README.md b/README.md index e371bd1..6cc96cc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ BOOKFACE FOR FRIENDICA ====================== -Version 1.7.0 +Version 1.7.1 **Description:** A Friendica Theme Template/Scheme for the "Frio" theme that gives it a modern makeover. @@ -398,6 +398,8 @@ And then use it in your stylesheet like so: I figured out how the "Frio" theme worked by looking at the code. I may not be 100% correct about it since I did not create the theme. If someone knows more and I'm wrong about any of this please correct this document at https://gitlab.com/randompenguin/bookface ## CHANGELOG: +* Fixed transparent background on friends-in-common list on other people's profiles. + 1.7 (06 May 2025) * Fixed "New Message" button not being obvious [Issue #24] * Fixed Profile Pics and Cover Photos not working in old iOS browsers [Issue #26] diff --git a/bookface_auto.css b/bookface_auto.css index 2283ab7..566a0e9 100644 --- a/bookface_auto.css +++ b/bookface_auto.css @@ -1,8 +1,8 @@ /* Name : Bookface Auto Color Mode - Version : 1.7.0 + Version : 1.7.1 Licence : AGPL - Created on : 03 MAY 2025 + Created on : 15 MAY 2025 Author : Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml */ @@ -591,6 +591,9 @@ display: block; padding-right: 30px; } + #rfic-desc, #remote-friends-in-common { + background-color: var(--content-bg); + } #contact-edit-status-wrapper { margin: 15px 0px !important; border-radius: 10px; @@ -3519,6 +3522,9 @@ header #banner { display: block; padding-right: 30px; } + #rfic-desc, #remote-friends-in-common { + background-color: var(--content-bg); + } #contact-edit-status-wrapper { margin: 15px 0px !important; border-radius: 10px; diff --git a/bookface_auto.php b/bookface_auto.php index 71d9866..65ba5f9 100644 --- a/bookface_auto.php +++ b/bookface_auto.php @@ -10,7 +10,7 @@ * Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml * Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp * Accented: Yes - * Version: 1.6 + * Version: 1.7 */ // if there is no cookie create one use Friendica\DI; diff --git a/bookface_dark.css b/bookface_dark.css index 5d29e61..fb1dcdc 100644 --- a/bookface_dark.css +++ b/bookface_dark.css @@ -1,8 +1,8 @@ /* Name : Bookface Dark - Version : 1.7.0 + Version : 1.7.1 Licence : AGPL - Created on : 03 MAY 2025 + Created on : 15 MAY 2025 Author : Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml */ @@ -591,6 +591,9 @@ header #banner { display: block; padding-right: 30px; } + #rfic-desc, #remote-friends-in-common { + background-color: var(--content-bg); + } #contact-edit-status-wrapper { margin: 15px 0px !important; border-radius: 10px; diff --git a/bookface_dark.php b/bookface_dark.php index f68a4be..ff30541 100644 --- a/bookface_dark.php +++ b/bookface_dark.php @@ -10,7 +10,7 @@ * Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml * Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp * Accented: yes - * Version: 1.6 + * Version: 1.7 */ use Friendica\DI; require_once 'view/theme/frio/php/PHPColors/Color.php'; diff --git a/bookface_light.css b/bookface_light.css index 1a8c6db..aef7f4a 100644 --- a/bookface_light.css +++ b/bookface_light.css @@ -1,8 +1,8 @@ /* Name : Bookface Light - Version : 1.7.0 + Version : 1.7.1 Licence : AGPL - Created on : 03 MAY 2025 + Created on : 15 MAY 2025 Author : Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml */ @@ -591,6 +591,9 @@ ul.nav-tabs { display: block; padding-right: 30px; } + #rfic-desc, #remote-friends-in-common { + background-color: var(--content-bg); + } #contact-edit-status-wrapper { margin: 15px 0px !important; border-radius: 10px; diff --git a/bookface_light.php b/bookface_light.php index a09834d..47f71ae 100644 --- a/bookface_light.php +++ b/bookface_light.php @@ -10,7 +10,7 @@ * Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml * Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp * Accented: yes - * Version: 1.6 + * Version: 1.7 */ use Friendica\DI; require_once 'view/theme/frio/php/PHPColors/Color.php';