Compare commits

...
Sign in to create a new pull request.

14 commits

Author SHA1 Message Date
580fa1b284 Merge branch 'refs/heads/upgrade' 2025-02-20 07:45:33 +01:00
6a2df62429 * Hide horizontal rules for a cleaner look
* Minor style fixes for .panel-body and .help-block
* Removed box-shadow from .wall-item-comment-wrapper
* Added `$contentbg_transp` back as "Frio" default stylesheet slipstream needs it.
* Fixed Settings > Channels panel padding and Submit button alignment
* Redesigned Calculator Add-On [Issue #8]
* Fixed Compose text formatting rollover effect [Issue #9]
2025-02-20 07:44:03 +01:00
5857d4c7cf Merge branch 'refs/heads/upgrade' 2025-02-18 08:49:34 +01:00
c95e4ee78f sekretaerbaer.de Anpassungen 2025-02-18 08:46:48 +01:00
8b791826cf update von https://gitlab.com/randompenguin/bookface 20250218 2025-02-18 08:44:26 +01:00
a8bbb32a83 Merge branch 'refs/heads/upgrade' 2025-02-16 07:00:39 +01:00
47e3125bbe update 20250216 2025-02-16 07:00:20 +01:00
c7bb639d10 Merge branch 'refs/heads/upgrade' 2025-02-16 06:53:25 +01:00
e964a6aece new Post 2025-02-12 04:25:07 +01:00
b452b20a29 upgrade to V 1.3 2025-02-12 04:21:50 +01:00
2d0d5dcb7b Merge branch 'refs/heads/develop' 2025-01-29 15:09:49 +01:00
475bf6d9bb Merge branch 'refs/heads/develop' 2025-01-29 14:07:50 +01:00
30f040505c Merge branch 'refs/heads/develop' 2025-01-29 14:04:47 +01:00
11c7c7e54a Merge branch 'refs/heads/develop' 2025-01-28 14:30:15 +01:00
6 changed files with 7428 additions and 396 deletions

4557
bookface_auto.css Normal file

File diff suppressed because it is too large Load diff

35
bookface_auto.php Normal file
View file

@ -0,0 +1,35 @@
<?php
/*
* Copyright (C) 2010-2025, the Friendica project
* SPDX-FileCopyrightText: 2010-2025 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*
* Name: Bookface Auto Color Mode
* Licence: AGPL
* 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.4
*/
// if there is no cookie create one
use Friendica\DI;
require_once 'view/theme/frio/php/PHPColors/Color.php';
$accentColor = new Color($scheme_accent);
$customColor = DI::pConfig()->get($uid, 'frio', 'link_color') ?: '';
if ($customColor){
$customColor = new Color(''.$customColor.'');
}
$menu_background_hover_color = 'rgba(128,128,128,.1)';
$nav_bg = '#ffffff';
$background_color = '#f2f4f7';
$link_color = ($customColor) ? '#'.$customColor->getHex() : '#'.$accentColor->getHex();
// override ugly blue accent color and prevent setting accent to nav or bg color
if ( $link_color == "#1e87c2" || $link_color == $nav_bg || $link_color == $background_color ){
$link_color = "#0066ff";
}
$nav_icon_color = '#65686C';
$font_color = '#313131';
$font_color_darker = '#333';
$contentbg_transp = '0';

File diff suppressed because it is too large Load diff

View file

@ -7,27 +7,31 @@
*
* Name: Bookface Dark
* Licence: AGPL
* Author: Kristi H. @kmh@friendica.world feb @feb@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
* Accented: Yes
* Version: 1.0
* Accented: yes
* Version: 1.4
*/
use Friendica\DI;
require_once 'view/theme/frio/php/PHPColors/Color.php';
$accentColor = new Color($scheme_accent);
$customColor = DI::pConfig()->get($uid, 'frio', 'link_color') ?: '';
if ($customColor){
$customColor = new Color(''.$customColor.'');
}
//$customColor = ($customColor) ?: new Color(''.$customColor.'');
$menu_background_hover_color = '#' . $accentColor->darken(20);
$menu_background_hover_color = ($customColor) ? '#'.$customColor->darken(20) : '#'.$accentColor->darken(20);
$nav_bg = '#252728';
$link_color = '#' . $accentColor->lighten(10);
// override ugly blue accent color
if ( $link_color == "#33a2e0" ){
$background_color = '#1C1C1D';
$link_color = ($customColor) ? '#'.$customColor->getHex() : '#'.$accentColor->lighten(10);
// override ugly blue accent color and prevent setting accent to nav or bg color
if ( $link_color == "#33a2e0" || $link_color == $nav_bg || $link_color == $background_color ){
$link_color = "#0066ff";
}
$nav_icon_color = '#B0B3B8';
$background_color = '#1C1C1D';
$contentbg_transp = '0';
$font_color = '#cccccc';
$font_color_darker = '#acacac';
$font_color_lighter = '#444444';
$background_image = '';
$contentbg_transp = '0';

File diff suppressed because it is too large Load diff

View file

@ -7,26 +7,29 @@
*
* Name: Bookface Light
* Licence: AGPL
* Author: Kristi H. @kmh@friendica.world feb @feb@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
* Accented: Yes
* Version: 1.0
* Accented: yes
* Version: 1.4
*/
use Friendica\DI;
require_once 'view/theme/frio/php/PHPColors/Color.php';
$accentColor = new Color($scheme_accent);
$customColor = DI::pConfig()->get($uid, 'frio', 'link_color') ?: '';
if ($customColor){
$customColor = new Color(''.$customColor.'');
}
$menu_background_hover_color = ($customColor) ? '#'.$customColor->lighten(45) : '#'.$accentColor->lighten(45);
$nav_bg = '#ffffff';
$nav_icon_color = '#606637';
$link_color = '#' . $accentColor->lighten(10);
// override ugly blue accent color
if ( $link_color == "#33a2e0" ){
$background_color = '#f2f4f7';
$link_color = ($customColor) ? '#'.$customColor->getHex() : '#'.$accentColor->lighten(10);
// override ugly blue accent color and prevent setting accent to nav or bg color
if ( $link_color == "#33a2e0" || $link_color == $nav_bg || $link_color == $background_color ){
$link_color = "#0066ff";
}
$background_color = '#f2f4f7';
$background_image = '';
$contentbg_transp = 100;
$menu_background_hover_color = '#' . $accentColor->lighten(45);
$nav_icon_color = '#65686C';
$font_color = '#313131';
$font_color_darker = '#333';
$contentbg_transp = 100;