aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-news/service.css
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-12-03 13:16:42 +0100
committerLibravatar GitHub <noreply@github.com>2021-12-03 17:46:42 +0530
commit2efcbcac8d055cbf4630813761ee0cdde84645ea (patch)
tree8cee4844a21433d367fbc1286b0640d1b3c628ed /recipes/nextcloud-news/service.css
parentAdd recipe for Nextcloud News (#780) (diff)
downloadferdium-recipes-2efcbcac8d055cbf4630813761ee0cdde84645ea.tar.gz
ferdium-recipes-2efcbcac8d055cbf4630813761ee0cdde84645ea.tar.zst
ferdium-recipes-2efcbcac8d055cbf4630813761ee0cdde84645ea.zip
chore: upgrade dependencies to latest (#782)
* chore: upgrade dependencies to latest - upgrade all dependencies to latest - add --report-unused-disable-directives flag to lint script - remove unused files reported by unicorn/no-empty-file - minor cleanup of circuit recipe - remove webview.js check in package.js
Diffstat (limited to 'recipes/nextcloud-news/service.css')
-rw-r--r--recipes/nextcloud-news/service.css16
1 files changed, 12 insertions, 4 deletions
diff --git a/recipes/nextcloud-news/service.css b/recipes/nextcloud-news/service.css
index 4974300..ea90cc9 100644
--- a/recipes/nextcloud-news/service.css
+++ b/recipes/nextcloud-news/service.css
@@ -1,12 +1,20 @@
1/* Hide all app links and contacts menu link in the top menu except for 1/* Hide all app links and contacts menu link in the top menu except for
2News */ 2News */
3#appmenu li:not([data-id="news"]), #contactsmenu {display: none;} 3#appmenu li:not([data-id='news']),
4#contactsmenu {
5 display: none;
6}
4 7
5/* Change the cursor to the default for Nextcloud home, News and settings 8/* Change the cursor to the default for Nextcloud home, News and settings
6links in the top menu and disable them */ 9links in the top menu and disable them */
7#nextcloud, #appmenu li[data-id="news"] a, #settings { 10#nextcloud,
8 cursor: default; pointer-events: none; 11#appmenu li[data-id='news'] a,
12#settings {
13 cursor: default;
14 pointer-events: none;
9} 15}
10 16
11/* Hide "More" link in the top menu */ 17/* Hide "More" link in the top menu */
12#more-apps {display: none !important;} 18#more-apps {
19 display: none !important;
20}