Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/encryption/css/settings-personal.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@
, #recoveryEnabledSuccess {
display: none;
}

/* icons for sidebar */
.nav-icon-basic-encryption-module {
background-image: url('../img/app.svg?v=1');
}
4 changes: 4 additions & 0 deletions apps/user_ldap/img/app-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/user_ldap/lib/Settings/Section.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}
2 changes: 1 addition & 1 deletion apps/user_ldap/tests/Settings/SectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down