aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-tasks/service.css
blob: 7f8495f66c2b6ea5344db08f0f4b8ae4e7805a0a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Hide all app links and contacts menu link in the top menu except for
Tasks */
#appmenu li:not([data-id="tasks"]),
#contactsmenu {
  display: none;
}

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

/* Hide all settings options, except the option to log out */
#settings #expanddiv li:not([data-id='logout']) {
  display: none;
}

/* Fix the margin of the dropdown */
#settings #expanddiv,
#settings #expanddiv > ul {
  min-height: 0;
}

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

/* Hide notifications that are not related to Tasks */
.notifications .notification-wrapper .notification:not([object_type="tasks"]) {
    display: none;
}

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