From b6866b3471b3088731f27320e65b55626a908c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Benqu=C3=A9?= Date: Mon, 15 Feb 2021 14:10:31 +0000 Subject: [PATCH] Make notifications bell more readable --- customize.dist/src/less2/include/toolbar.less | 3 +++ www/common/toolbar.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/customize.dist/src/less2/include/toolbar.less b/customize.dist/src/less2/include/toolbar.less index 7b4e43d0d..3f19aa433 100644 --- a/customize.dist/src/less2/include/toolbar.less +++ b/customize.dist/src/less2/include/toolbar.less @@ -399,6 +399,9 @@ button { .toolbar_button; + &.cp-notifications-bell { + color: @cryptpad_text_col; + } } .cp-toolbar-limit { diff --git a/www/common/toolbar.js b/www/common/toolbar.js index 689843f50..7541cc1c6 100644 --- a/www/common/toolbar.js +++ b/www/common/toolbar.js @@ -1049,7 +1049,7 @@ MessengerUI, Messages) { var $newPadBlock = UIElements.createDropdown(dropdownConfig); var $button = $newPadBlock.find('button'); $button.attr('title', Messages.notificationsPage); - $button.addClass('fa fa-bell-o'); + $button.addClass('fa fa-bell-o cp-notifications-bell'); var $n = $button.find('.cp-dropdown-button-title').hide(); var $empty = $(div).find('.cp-notifications-empty');