diff --git a/apps/encryption/css/settings-personal.css b/apps/encryption/css/settings-personal.css index 8eb5bedcb06c6..4bab1a8d46bcf 100644 --- a/apps/encryption/css/settings-personal.css +++ b/apps/encryption/css/settings-personal.css @@ -8,3 +8,8 @@ , #recoveryEnabledSuccess { display: none; } + +/* icons for sidebar */ +.nav-icon-basic-encryption-module { + background-image: url('../img/app.svg?v=1'); +} \ No newline at end of file diff --git a/apps/user_ldap/img/app-dark.svg b/apps/user_ldap/img/app-dark.svg new file mode 100644 index 0000000000000..54939fab4f23a --- /dev/null +++ b/apps/user_ldap/img/app-dark.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/user_ldap/lib/Settings/Section.php b/apps/user_ldap/lib/Settings/Section.php index a4106bacb9e47..86d293d38798b 100644 --- a/apps/user_ldap/lib/Settings/Section.php +++ b/apps/user_ldap/lib/Settings/Section.php @@ -77,6 +77,6 @@ public function getPriority() { * {@inheritdoc} */ public function getIcon() { - return $this->url->imagePath('user_ldap', 'app.svg'); + return $this->url->imagePath('user_ldap', 'app-dark.svg'); } } diff --git a/apps/user_ldap/tests/Settings/SectionTest.php b/apps/user_ldap/tests/Settings/SectionTest.php index ae780dd7665e5..5f565e8993360 100644 --- a/apps/user_ldap/tests/Settings/SectionTest.php +++ b/apps/user_ldap/tests/Settings/SectionTest.php @@ -68,7 +68,7 @@ public function testGetPriority() { public function testGetIcon() { $this->url->expects($this->once()) ->method('imagePath') - ->with('user_ldap', 'app.svg') + ->with('user_ldap', 'app-dark.svg') ->willReturn('icon'); $this->assertSame('icon', $this->section->getIcon());