From 732dbfd6f56510127405767ca86af240d3c85cf4 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 16 Mar 2024 15:50:58 +0000 Subject: maybe git can be removed again now after the streams lib got removed? (cherry picked from commit 5860abf46f862149bb67d17c7f4b66ac34b98389) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3273d383b..76dc41334 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ variables: before_script: # Install & enable Xdebug for code coverage reports - apt-get update - - apt-get install -yqq libicu-dev libjpeg-dev libpng-dev libpq-dev libyaml-dev libzip-dev mariadb-client postgresql-client unzip zip git + - apt-get install -yqq libicu-dev libjpeg-dev libpng-dev libpq-dev libyaml-dev libzip-dev mariadb-client postgresql-client unzip zip - pecl install xdebug yaml - docker-php-ext-enable xdebug yaml - docker-php-ext-install gd bcmath intl pdo_mysql pdo_pgsql zip -- cgit v1.2.3 From ac4aa6a9ea8a22bddfdc70bbac165a104b12471d Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 16 Mar 2024 16:22:39 +0000 Subject: css fixes --- view/theme/redbasic/css/style.css | 4 ++-- view/theme/redbasic/php/style.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 9b93e28ee..110137d70 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1141,8 +1141,8 @@ img.mail-conv-sender-photo { } .menu-img-2 { - height: 2.3rem; - width: 2.3rem; + height: 2.5rem; + width: 2.5rem; margin-right: .5rem; border-radius: var(--bs-border-radius); float: left; diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 056cea1cd..350f0c867 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -100,8 +100,8 @@ $background_image = $background_image ?: ''; $background_image_dark = $background_image_dark ?: ''; $font_size = $font_size ?: '0.875rem'; $converse_width = $converse_width ?: '52'; //unit: rem -$top_photo = $top_photo ?: '2.3rem'; -$reply_photo = $reply_photo ?: '2.3rem'; +$top_photo = $top_photo ?: '2.5rem'; +$reply_photo = $reply_photo ?: '2.5rem'; // Apply the settings if(file_exists('view/theme/redbasic/css/style.css')) { -- cgit v1.2.3