From 6c4986d64abc104c35feba73b91d42532374d93f Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 31 Oct 2018 10:03:23 +0100 Subject: [PATCH] Use theming color as group and shared call colors instead of bland grey Signed-off-by: Jan-Christoph Borchardt --- css/style.scss | 2 +- js/views/participantview.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/style.scss b/css/style.scss index cfdd86cbb43..8d1e0fb0f1e 100644 --- a/css/style.scss +++ b/css/style.scss @@ -135,7 +135,7 @@ border-radius: 50%; width: 32px; height: 32px; - background-color: var(--color-background-darker); + background-color: var(--color-primary); } #app-navigation .favorite-mark { diff --git a/js/views/participantview.js b/js/views/participantview.js index 0b6a4c58e77..9ff5d7cd6b5 100644 --- a/js/views/participantview.js +++ b/js/views/participantview.js @@ -146,7 +146,7 @@ }, formatResult: function (element) { if (element.type === 'email') { - return '
' + escapeHTML(element.displayName) + '
'; + return '
' + escapeHTML(element.displayName) + '
'; } return '
' + escapeHTML(element.displayName) + '
';