From 43b42b3606812bae667353287257d68823deb829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Par=C3=B3czai=20Oliv=C3=A9r?= Date: Mon, 21 Aug 2023 13:09:49 +0000 Subject: [PATCH 1/2] Version v1.1.0 --- appinfo/info.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 3bbb2fa..b1a9626 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -8,7 +8,7 @@ # Unrounded Corners A Nextcloud app that restores the corners of buttons and widgets to their original looks by unrounding them. ]]> - 1.0.9 + 1.1.0 agpl Oliver Paroczai UnroundedCorners @@ -17,6 +17,6 @@ A Nextcloud app that restores the corners of buttons and widgets to their origin https://github.com/OliverParoczai/nextcloud-unroundedcorners/issues https://raw.githubusercontent.com/OliverParoczai/nextcloud-unroundedcorners/master/differences.png - + From 1fd963d86cfd5799e495e19c7bef0988600b7700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Par=C3=B3czai=20Oliv=C3=A9r?= Date: Mon, 21 Aug 2023 13:11:44 +0000 Subject: [PATCH 2/2] Fix dashboard page corners --- css/unround.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/unround.css b/css/unround.css index 22e1ef2..0d49e02 100644 --- a/css/unround.css +++ b/css/unround.css @@ -1,11 +1,13 @@ -:root { /* Body container settings */ +:root { /* Body container settings, mostly for removing the side margins */ --body-container-margin: 0px !important; --body-container-radius: 0px !important; --border-radius-large: 0px !important; +--border-radius-rounded: 0px !important; } [data-theme-default], [data-theme-light], [data-theme-dark], [data-theme-light-highcontrast], [data-theme-dark-highcontrast]{ /* For sitewide buttons, both themes */ --border-radius-large: 4px !important; /* Used on the dashboard */ + --border-radius-rounded: 4px !important; /* Used on the dashboard */ --border-radius-pill: 4px !important; /* Used everywhere else */ }