so much space...
This commit is contained in:
parent
98d2316b08
commit
3ae8424aea
|
@ -170,7 +170,8 @@ $pagination-disabled-border-color: $gray-dark;
|
||||||
color: $gray-darker;
|
color: $gray-darker;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert.alert-danger, .alert.alert-danger a {
|
.alert.alert-danger,
|
||||||
|
.alert.alert-danger a {
|
||||||
color: $gray-lighter;
|
color: $gray-lighter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -133,6 +133,7 @@ h6,
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert.alert-success a, .alert.alert-warning a {
|
.alert.alert-success a,
|
||||||
|
.alert.alert-warning a {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
|
@ -753,7 +753,7 @@ class SettingsControllerTest extends ControllerTest
|
||||||
public function testSettingsMenuWithoutOAuth(): void
|
public function testSettingsMenuWithoutOAuth(): void
|
||||||
{
|
{
|
||||||
config(['oauth' => []]);
|
config(['oauth' => []]);
|
||||||
|
|
||||||
$menu = $this->controller->settingsMenu();
|
$menu = $this->controller->settingsMenu();
|
||||||
$this->assertArrayNotHasKey('http://localhost/settings/oauth', $menu);
|
$this->assertArrayNotHasKey('http://localhost/settings/oauth', $menu);
|
||||||
}
|
}
|
||||||
|
@ -777,7 +777,7 @@ class SettingsControllerTest extends ControllerTest
|
||||||
public function testSettingsMenuWithoutIfsg(): void
|
public function testSettingsMenuWithoutIfsg(): void
|
||||||
{
|
{
|
||||||
config(['ifsg_enabled' => false]);
|
config(['ifsg_enabled' => false]);
|
||||||
|
|
||||||
$menu = $this->controller->settingsMenu();
|
$menu = $this->controller->settingsMenu();
|
||||||
$this->assertArrayNotHasKey('http://localhost/settings/certificates', $menu);
|
$this->assertArrayNotHasKey('http://localhost/settings/certificates', $menu);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue