aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-talk/service.css
diff options
context:
space:
mode:
authorLibravatar Carlos SolĂ­s <csolisr@gmail.com>2022-06-21 09:39:54 -0600
committerLibravatar GitHub <noreply@github.com>2022-06-21 15:39:54 +0000
commit08a7af9ef2bb0030fd1876674d53b719e91f13e2 (patch)
treeda71d5f5d17e90faaf0af07fd0e97936b8820aff /recipes/nextcloud-talk/service.css
parentdocs: add dqos as a contributor for code (#72) [skip ci] (diff)
downloadferdium-recipes-08a7af9ef2bb0030fd1876674d53b719e91f13e2.tar.gz
ferdium-recipes-08a7af9ef2bb0030fd1876674d53b719e91f13e2.tar.zst
ferdium-recipes-08a7af9ef2bb0030fd1876674d53b719e91f13e2.zip
Add fixes for Nextcloud-related webapps (#66)
Diffstat (limited to 'recipes/nextcloud-talk/service.css')
-rw-r--r--recipes/nextcloud-talk/service.css28
1 files changed, 22 insertions, 6 deletions
diff --git a/recipes/nextcloud-talk/service.css b/recipes/nextcloud-talk/service.css
index f4f08bc..ccdba58 100644
--- a/recipes/nextcloud-talk/service.css
+++ b/recipes/nextcloud-talk/service.css
@@ -3,20 +3,34 @@
3 display: none; 3 display: none;
4} 4}
5 5
6/* Change cursor to the default pointer for top menu Nextcloud home, Talk and 6/* Change cursor to the default pointer for top menu Nextcloud home and Talk
7settings links and disable them */ 7links and disable them */
8#nextcloud, #appmenu li[data-id="spreed"] a, #settings { 8#nextcloud,
9#appmenu li[data-id="spreed"] a {
9 cursor: default; 10 cursor: default;
10 pointer-events: none; 11 pointer-events: none;
11} 12}
12 13
14/* Hide all settings options, except the option to log out */
15#settings #expanddiv li:not([data-id='logout']) {
16 display: none;
17}
18
19/* Fix the margin of the dropdown */
20#settings #expanddiv,
21#settings #expanddiv > ul {
22 min-height: 0;
23}
24
13/* Hide "More" link in the top menu */ 25/* Hide "More" link in the top menu */
14#more-apps { 26#more-apps {
15 display: none !important; 27 display: none !important;
16} 28}
17 29
18/* Hide notifications that are not related to calendar */ 30/* Hide notifications that are not related to Talk */
19.notifications .notification-wrapper .notification {display: none;} 31.notifications .notification-wrapper .notification {
32 display: none;
33}
20.notifications .notification-wrapper .notification[object_type="chat"], 34.notifications .notification-wrapper .notification[object_type="chat"],
21.notifications .notification-wrapper .notification[object_type="room"] { 35.notifications .notification-wrapper .notification[object_type="room"] {
22 display: initial; 36 display: initial;
@@ -24,4 +38,6 @@ settings links and disable them */
24 38
25/* Hide "Dismiss all notifications" as this action will dismiss also hidden 39/* Hide "Dismiss all notifications" as this action will dismiss also hidden
26notifications */ 40notifications */
27.notification-wrapper .dismiss-all {display: none;} 41.notification-wrapper .dismiss-all {
42 display: none;
43}