From 422c34dd0ccad7b62028ebbdc7ee60383494c2c0 Mon Sep 17 00:00:00 2001 From: nevfy Date: Tue, 23 Jan 2024 19:16:25 +0400 Subject: [PATCH 01/15] add missed parenthesis in markdown link --- content/en/docs/About us/motivation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/About us/motivation.md b/content/en/docs/About us/motivation.md index 2155861..5dfab28 100644 --- a/content/en/docs/About us/motivation.md +++ b/content/en/docs/About us/motivation.md @@ -21,6 +21,6 @@ We want digital independence and privacy for our data. ## What do we need it for? -Our [team]({{< ref "team.md" >}} consists of programmers and system administrators. We are from different countries and many of us have never met in person. Perhaps we are romantics. Don Quixotes of the free Internet. It is important for us not only to do the work, but to know the result - the contribution to a positive change in people's attitudes to privacy and independence. +Our [team]({{< ref "team.md" >}}) consists of programmers and system administrators. We are from different countries and many of us have never met in person. Perhaps we are romantics. Don Quixotes of the free Internet. It is important for us not only to do the work, but to know the result - the contribution to a positive change in people's attitudes to privacy and independence. We hope to find stable financial support in the form of free software development funds in the near future, so as not to burden the project founder's budget. \ No newline at end of file From 1317084d5217c76ad10b44345457b96ca00b2907 Mon Sep 17 00:00:00 2001 From: nevfy Date: Tue, 23 Jan 2024 20:03:06 +0400 Subject: [PATCH 02/15] remove old wiki link --- layouts/partials/footer.html | 1 - 1 file changed, 1 deletion(-) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index ef00a7e..b18f8d5 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -34,7 +34,6 @@

{{ T "footer_download_desktop" }}

{{ T "footer_download_desktop" }}

From 2cc1653fea17a5fb28baa783d627c60943461ce0 Mon Sep 17 00:00:00 2001 From: nevfy Date: Sun, 28 Jan 2024 19:29:51 +0400 Subject: [PATCH 10/15] fix: lang dropdown position --- assets/scss/_styles_project.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/scss/_styles_project.scss b/assets/scss/_styles_project.scss index 29239a1..d1330f0 100644 --- a/assets/scss/_styles_project.scss +++ b/assets/scss/_styles_project.scss @@ -9,8 +9,10 @@ } } - - +.dropdown-menu { + right: 0; + left: unset; +} @media (min-width: 768px) { .td-sidebar { From c4163bc09996a5884521478e4a694a14b9d623d7 Mon Sep 17 00:00:00 2001 From: nevfy Date: Sun, 28 Jan 2024 19:39:59 +0400 Subject: [PATCH 11/15] fix: remove dropdown white margin --- assets/scss/_styles_project.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assets/scss/_styles_project.scss b/assets/scss/_styles_project.scss index d1330f0..0a1385e 100644 --- a/assets/scss/_styles_project.scss +++ b/assets/scss/_styles_project.scss @@ -12,6 +12,12 @@ .dropdown-menu { right: 0; left: unset; + padding: 0px; +} + +.dropdown-item { + padding: 0.5rem 1.5rem; + border-radius: 0.25rem; } @media (min-width: 768px) { From 5471c290a4ed1cd991547d33d453dcd551b287f2 Mon Sep 17 00:00:00 2001 From: nevfy Date: Sun, 28 Jan 2024 19:44:46 +0400 Subject: [PATCH 12/15] fix: inherit shadow from service cards --- assets/scss/_styles_project.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/scss/_styles_project.scss b/assets/scss/_styles_project.scss index 0a1385e..b4a4e1e 100644 --- a/assets/scss/_styles_project.scss +++ b/assets/scss/_styles_project.scss @@ -13,6 +13,7 @@ right: 0; left: unset; padding: 0px; + box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25); } .dropdown-item { From e6d09a43fbd3038cf0614e621d6a29d0e8c2a96f Mon Sep 17 00:00:00 2001 From: nevfy Date: Mon, 29 Jan 2024 02:12:04 +0400 Subject: [PATCH 13/15] fix: remove cyrillic from folder name --- content/en/docs/{Сontributing => Contributing}/_index.md | 0 content/ru/docs/{Сontributing => Contributing}/_index.md | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename content/en/docs/{Сontributing => Contributing}/_index.md (100%) rename content/ru/docs/{Сontributing => Contributing}/_index.md (100%) diff --git a/content/en/docs/Сontributing/_index.md b/content/en/docs/Contributing/_index.md similarity index 100% rename from content/en/docs/Сontributing/_index.md rename to content/en/docs/Contributing/_index.md diff --git a/content/ru/docs/Сontributing/_index.md b/content/ru/docs/Contributing/_index.md similarity index 100% rename from content/ru/docs/Сontributing/_index.md rename to content/ru/docs/Contributing/_index.md From 4d3d5449c481615b49fd249295be1fb131cb45cd Mon Sep 17 00:00:00 2001 From: nevfy Date: Mon, 29 Jan 2024 02:54:14 +0400 Subject: [PATCH 14/15] fix: TOC links font weight --- assets/scss/_styles_project.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/assets/scss/_styles_project.scss b/assets/scss/_styles_project.scss index 29239a1..01cca98 100644 --- a/assets/scss/_styles_project.scss +++ b/assets/scss/_styles_project.scss @@ -9,8 +9,15 @@ } } +.td-sidebar-nav .td-sidebar-link__page, +ul.ul-2>.td-sidebar-nav__section-title a { + color: #616161 !important; + font-weight: 400; +} - +ul.ul-2>.td-sidebar-nav__section-title a:hover { + color: $blue; +} @media (min-width: 768px) { .td-sidebar { From 5bc756be98ae46b911962345dc763713869982fd Mon Sep 17 00:00:00 2001 From: Inex Code Date: Mon, 29 Jan 2024 17:07:06 +0400 Subject: [PATCH 15/15] fix(ru): Fix blog title --- content/ru/blog/_index.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/ru/blog/_index.md b/content/ru/blog/_index.md index a5e189b..c2fdd8a 100644 --- a/content/ru/blog/_index.md +++ b/content/ru/blog/_index.md @@ -1,6 +1,6 @@ --- -title: "SelfPrivacy Blog" -linkTitle: "Blog" +title: "Блог SelfPrivacy" +linkTitle: "Блог" menu: main: weight: 30 @@ -10,4 +10,3 @@ menu: This is the **blog** section. It has two categories: News and Releases. Files in these directories will be listed in reverse chronological order. -