- Fixes issue #21
- Bumps version to NC 27
pull/23/head v1.1.0
Paróczai Olivér 2023-08-21 13:13:38 +00:00 zatwierdzone przez GitHub
commit 2004597ad5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -8,7 +8,7 @@
# Unrounded Corners
A Nextcloud app that restores the corners of buttons and widgets to their original looks by unrounding them.
]]></description>
<version>1.0.9</version>
<version>1.1.0</version>
<licence>agpl</licence>
<author mail="me@oliverparoczai.org" homepage="https://oliverparoczai.dev">Oliver Paroczai</author>
<namespace>UnroundedCorners</namespace>
@ -17,6 +17,6 @@ A Nextcloud app that restores the corners of buttons and widgets to their origin
<bugs>https://github.com/OliverParoczai/nextcloud-unroundedcorners/issues</bugs>
<screenshot>https://raw.githubusercontent.com/OliverParoczai/nextcloud-unroundedcorners/master/differences.png</screenshot>
<dependencies>
<nextcloud min-version="25" max-version="29"/>
<nextcloud min-version="27" max-version="37"/>
</dependencies>
</info>

Wyświetl plik

@ -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 */
}