From b2c89fafd8b457524449672290baff0af199719e Mon Sep 17 00:00:00 2001 From: Fabio Date: Thu, 10 Feb 2022 20:18:00 +0100 Subject: [PATCH 1/2] Update css for "Remove linked page arrows" tweak --- advanced/tweaks.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/advanced/tweaks.md b/advanced/tweaks.md index 7b8434f..ca3076a 100644 --- a/advanced/tweaks.md +++ b/advanced/tweaks.md @@ -221,14 +221,29 @@ repository. #### Remove Linked Page Arrows -> Last updated: 2021-12-23 +> Last updated: 2022-02-10 ![](https://user-images.githubusercontent.com/16874139/147217098-020034ab-a487-4456-bfea-f4df525cb9f5.png) ```css -.pageLinkIndicator { +/* To remove both linked page and linked database arrows */ +svg.pageLinkIndicator { display: none !important; } + +/* To remove only linked database arrows */ +.notion-collection_view-block svg.pageLinkIndicator { + display: none !important; +} + + +/* To remove only linked page arrows */ +svg.pageLinkIndicator { + display: none !important; +} +.notion-collection_view-block svg.pageLinkIndicator { + display: block !important; +} ``` #### Unrounded Page Icons From ae588def5f4ceb931796ccf16f68a4d7778b9253 Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 11 Feb 2022 08:40:26 +1100 Subject: [PATCH 2/2] adjust wording --- advanced/tweaks.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/advanced/tweaks.md b/advanced/tweaks.md index ca3076a..1974113 100644 --- a/advanced/tweaks.md +++ b/advanced/tweaks.md @@ -219,25 +219,24 @@ repository. } ``` -#### Remove Linked Page Arrows +#### Remove Link Arrows > Last updated: 2022-02-10 ![](https://user-images.githubusercontent.com/16874139/147217098-020034ab-a487-4456-bfea-f4df525cb9f5.png) ```css -/* To remove both linked page and linked database arrows */ +/* remove all link arrows */ svg.pageLinkIndicator { display: none !important; } -/* To remove only linked database arrows */ +/* remove linked database arrows only */ .notion-collection_view-block svg.pageLinkIndicator { display: none !important; } - -/* To remove only linked page arrows */ +/* remove linked page arrows only */ svg.pageLinkIndicator { display: none !important; }