aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-news
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
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')
-rw-r--r--recipes/nextcloud-news/service.css16
-rw-r--r--recipes/nextcloud-news/webview.js6
2 files changed, 16 insertions, 6 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}
diff --git a/recipes/nextcloud-news/webview.js b/recipes/nextcloud-news/webview.js
index 048ac7d..7c1c65c 100644
--- a/recipes/nextcloud-news/webview.js
+++ b/recipes/nextcloud-news/webview.js
@@ -1,13 +1,15 @@
1const _path = _interopRequireDefault(require('path')); 1const _path = _interopRequireDefault(require('path'));
2 2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
4 6
5module.exports = Ferdi => { 7module.exports = Ferdi => {
6 const getMessages = () => { 8 const getMessages = () => {
7 const selector = document.querySelector( 9 const selector = document.querySelector(
8 '.subscriptions-feed .app-navigation-entry-utils-counter', 10 '.subscriptions-feed .app-navigation-entry-utils-counter',
9 ); 11 );
10 const direct = selector ? Ferdi.safeParseInt(selector.innerText) : 0; 12 const direct = selector ? Ferdi.safeParseInt(selector.textContent) : 0;
11 13
12 Ferdi.setBadge(direct); 14 Ferdi.setBadge(direct);
13 }; 15 };