aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-talk/service.css
blob: f4f08bc3bd32ca16384250e6c2a24bd2398219bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Hide all app links in the top menu except for Talk */
#appmenu li:not([data-id="spreed"]) {
  display: none;
}

/* Change cursor to the default pointer for top menu Nextcloud home, Talk and
settings links and disable them */
#nextcloud, #appmenu li[data-id="spreed"] a, #settings {
  cursor: default;
  pointer-events: none;
}

/* Hide "More" link in the top menu */
#more-apps {
  display: none !important;
}

/* Hide notifications that are not related to calendar */
.notifications .notification-wrapper .notification {display: none;}
.notifications .notification-wrapper .notification[object_type="chat"],
.notifications .notification-wrapper .notification[object_type="room"]  {
  display: initial;
}

/* Hide "Dismiss all notifications" as this action will dismiss also hidden
notifications */
.notification-wrapper .dismiss-all {display: none;}