mirror of
https://gitlab.com/randompenguin/bookface.git
synced 2025-06-07 19:14:26 +02:00
Compare commits
7 commits
Author | SHA1 | Date | |
---|---|---|---|
|
85ac784984 | ||
|
d905c78987 | ||
|
f393644de7 | ||
|
b4a4c71081 | ||
|
1d3b333cc4 | ||
|
bf37887600 | ||
|
f74a279231 |
7 changed files with 24 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
BOOKFACE FOR FRIENDICA
|
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.
|
**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
|
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:
|
## CHANGELOG:
|
||||||
|
* Fixed transparent background on friends-in-common list on other people's profiles.
|
||||||
|
|
||||||
1.7 (06 May 2025)
|
1.7 (06 May 2025)
|
||||||
* Fixed "New Message" button not being obvious [Issue #24]
|
* Fixed "New Message" button not being obvious [Issue #24]
|
||||||
* Fixed Profile Pics and Cover Photos not working in old iOS browsers [Issue #26]
|
* Fixed Profile Pics and Cover Photos not working in old iOS browsers [Issue #26]
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*
|
/*
|
||||||
Name : Bookface Auto Color Mode
|
Name : Bookface Auto Color Mode
|
||||||
Version : 1.7.0
|
Version : 1.7.1
|
||||||
Licence : AGPL
|
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
|
Author : Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -591,6 +591,9 @@
|
||||||
display: block;
|
display: block;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
}
|
}
|
||||||
|
#rfic-desc, #remote-friends-in-common {
|
||||||
|
background-color: var(--content-bg);
|
||||||
|
}
|
||||||
#contact-edit-status-wrapper {
|
#contact-edit-status-wrapper {
|
||||||
margin: 15px 0px !important;
|
margin: 15px 0px !important;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -3519,6 +3522,9 @@ header #banner {
|
||||||
display: block;
|
display: block;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
}
|
}
|
||||||
|
#rfic-desc, #remote-friends-in-common {
|
||||||
|
background-color: var(--content-bg);
|
||||||
|
}
|
||||||
#contact-edit-status-wrapper {
|
#contact-edit-status-wrapper {
|
||||||
margin: 15px 0px !important;
|
margin: 15px 0px !important;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
* 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
|
* Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp
|
||||||
* Accented: Yes
|
* Accented: Yes
|
||||||
* Version: 1.6
|
* Version: 1.7
|
||||||
*/
|
*/
|
||||||
// if there is no cookie create one
|
// if there is no cookie create one
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*
|
/*
|
||||||
Name : Bookface Dark
|
Name : Bookface Dark
|
||||||
Version : 1.7.0
|
Version : 1.7.1
|
||||||
Licence : AGPL
|
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
|
Author : Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -591,6 +591,9 @@ header #banner {
|
||||||
display: block;
|
display: block;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
}
|
}
|
||||||
|
#rfic-desc, #remote-friends-in-common {
|
||||||
|
background-color: var(--content-bg);
|
||||||
|
}
|
||||||
#contact-edit-status-wrapper {
|
#contact-edit-status-wrapper {
|
||||||
margin: 15px 0px !important;
|
margin: 15px 0px !important;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
* 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
|
* Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp
|
||||||
* Accented: yes
|
* Accented: yes
|
||||||
* Version: 1.6
|
* Version: 1.7
|
||||||
*/
|
*/
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*
|
/*
|
||||||
Name : Bookface Light
|
Name : Bookface Light
|
||||||
Version : 1.7.0
|
Version : 1.7.1
|
||||||
Licence : AGPL
|
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
|
Author : Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -591,6 +591,9 @@ ul.nav-tabs {
|
||||||
display: block;
|
display: block;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
}
|
}
|
||||||
|
#rfic-desc, #remote-friends-in-common {
|
||||||
|
background-color: var(--content-bg);
|
||||||
|
}
|
||||||
#contact-edit-status-wrapper {
|
#contact-edit-status-wrapper {
|
||||||
margin: 15px 0px !important;
|
margin: 15px 0px !important;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
* 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
|
* Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp
|
||||||
* Accented: yes
|
* Accented: yes
|
||||||
* Version: 1.6
|
* Version: 1.7
|
||||||
*/
|
*/
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue