From 3ae8424aea9a1a11878d6ddc09ce0885e4e2b59b Mon Sep 17 00:00:00 2001 From: msquare Date: Sat, 12 Aug 2023 13:09:09 +0200 Subject: [PATCH] so much space... --- resources/assets/themes/theme16.scss | 3 ++- resources/assets/themes/theme4.scss | 3 ++- tests/Unit/Controllers/SettingsControllerTest.php | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/resources/assets/themes/theme16.scss b/resources/assets/themes/theme16.scss index c9f652c1..1f5b9b66 100644 --- a/resources/assets/themes/theme16.scss +++ b/resources/assets/themes/theme16.scss @@ -170,7 +170,8 @@ $pagination-disabled-border-color: $gray-dark; color: $gray-darker; } -.alert.alert-danger, .alert.alert-danger a { +.alert.alert-danger, +.alert.alert-danger a { color: $gray-lighter; } diff --git a/resources/assets/themes/theme4.scss b/resources/assets/themes/theme4.scss index 924bb928..3ea7f587 100644 --- a/resources/assets/themes/theme4.scss +++ b/resources/assets/themes/theme4.scss @@ -133,6 +133,7 @@ h6, color: #fff; } -.alert.alert-success a, .alert.alert-warning a { +.alert.alert-success a, +.alert.alert-warning a { color: #000; } diff --git a/tests/Unit/Controllers/SettingsControllerTest.php b/tests/Unit/Controllers/SettingsControllerTest.php index ca3bfcb8..67abe2a8 100644 --- a/tests/Unit/Controllers/SettingsControllerTest.php +++ b/tests/Unit/Controllers/SettingsControllerTest.php @@ -753,7 +753,7 @@ class SettingsControllerTest extends ControllerTest public function testSettingsMenuWithoutOAuth(): void { config(['oauth' => []]); - + $menu = $this->controller->settingsMenu(); $this->assertArrayNotHasKey('http://localhost/settings/oauth', $menu); } @@ -777,7 +777,7 @@ class SettingsControllerTest extends ControllerTest public function testSettingsMenuWithoutIfsg(): void { config(['ifsg_enabled' => false]); - + $menu = $this->controller->settingsMenu(); $this->assertArrayNotHasKey('http://localhost/settings/certificates', $menu); }