aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-talk/service.css
diff options
context:
space:
mode:
authorLibravatar Edgars <Edgars+GitHub@gaitenis.id.lv>2020-11-10 12:50:46 +0200
committerLibravatar Edgars <Edgars+GitHub@gaitenis.id.lv>2020-11-10 12:50:46 +0200
commita363b98e38b7b3091cb2ba11cebed0cc53bedc6b (patch)
tree13a55fcc31da0fcd1f62f9b83ceffc6955110009 /recipes/nextcloud-talk/service.css
parentMerge pull request #351 from tpapamichail/master (diff)
downloadferdium-recipes-a363b98e38b7b3091cb2ba11cebed0cc53bedc6b.tar.gz
ferdium-recipes-a363b98e38b7b3091cb2ba11cebed0cc53bedc6b.tar.zst
ferdium-recipes-a363b98e38b7b3091cb2ba11cebed0cc53bedc6b.zip
Nextcloud Talk: Hide unrelated notifications and fix notifications count
`service.css` was updated to: - unhide contacts menu; - hide notifications that are not related to Nextcloud Talk; - hide "Dismiss all notifications" as this action would also dismiss hidden notifications. `webview.js` was updated to fix notifications (both direct and indirect) count retrieval. `README.md` was added.
Diffstat (limited to 'recipes/nextcloud-talk/service.css')
-rw-r--r--recipes/nextcloud-talk/service.css12
1 files changed, 9 insertions, 3 deletions
diff --git a/recipes/nextcloud-talk/service.css b/recipes/nextcloud-talk/service.css
index 82dde75..f4f08bc 100644
--- a/recipes/nextcloud-talk/service.css
+++ b/recipes/nextcloud-talk/service.css
@@ -15,7 +15,13 @@ settings links and disable them */
15 display: none !important; 15 display: none !important;
16} 16}
17 17
18/* Hide contacts in the top menu */ 18/* Hide notifications that are not related to calendar */
19#contactsmenu { 19.notifications .notification-wrapper .notification {display: none;}
20 display: none; 20.notifications .notification-wrapper .notification[object_type="chat"],
21.notifications .notification-wrapper .notification[object_type="room"] {
22 display: initial;
21} 23}
24
25/* Hide "Dismiss all notifications" as this action will dismiss also hidden
26notifications */
27.notification-wrapper .dismiss-all {display: none;}