aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-calendar/service.css
diff options
context:
space:
mode:
authorLibravatar Edgars <Edgars+GitHub@gaitenis.id.lv>2020-11-10 10:32:33 +0200
committerLibravatar Edgars <Edgars+GitHub@gaitenis.id.lv>2020-11-10 10:32:33 +0200
commita62cb87a75dbe5065ef14f26463bb7b69bfc4972 (patch)
tree8665044acfab4b5b9756c8aa54d2c0503b9052d8 /recipes/nextcloud-calendar/service.css
parentMerge pull request #351 from tpapamichail/master (diff)
downloadferdium-recipes-a62cb87a75dbe5065ef14f26463bb7b69bfc4972.tar.gz
ferdium-recipes-a62cb87a75dbe5065ef14f26463bb7b69bfc4972.tar.zst
ferdium-recipes-a62cb87a75dbe5065ef14f26463bb7b69bfc4972.zip
Nextcloud Calendar: Display only calendar related notifications and their count
`service.css` was updated to hide notifications that are not related to Nextcloud Calendar. `webview.js` was updated to fix notifications count selector.
Diffstat (limited to 'recipes/nextcloud-calendar/service.css')
-rw-r--r--recipes/nextcloud-calendar/service.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes/nextcloud-calendar/service.css b/recipes/nextcloud-calendar/service.css
index 833d5a8..634a959 100644
--- a/recipes/nextcloud-calendar/service.css
+++ b/recipes/nextcloud-calendar/service.css
@@ -10,3 +10,8 @@ settings links and disable them */
10 10
11/* Hide "More" link in the top menu */ 11/* Hide "More" link in the top menu */
12#more-apps {display: none !important;} 12#more-apps {display: none !important;}
13
14/* Hide notifications that are not related to calendar */
15.notifications .notification-wrapper .notification:not([object_type="dav"]) {
16 display: none;
17}